Bring in contact and forms
authorSteve Sutton <steve@gaslightmedia.com>
Fri, 14 Feb 2014 17:19:04 +0000 (17:19 +0000)
committerSteve Sutton <steve@gaslightmedia.com>
Fri, 14 Feb 2014 17:19:04 +0000 (17:19 +0000)
update for their contact db to work in php 5.3
bring in maps
all static pages

69 files changed:
.htaccess
Toolkit/CKImages/Database/data/ckeditor_folders.sql [new file with mode: 0644]
Toolkit/CKImages/Database/data/ckeditor_images.sql [new file with mode: 0644]
Toolkit/CKImages/Database/dbDump.sh [new file with mode: 0755]
Toolkit/CKImages/Database/loadData.sql [new file with mode: 0644]
Toolkit/Contacts/ContactUs.php
Toolkit/Contacts/Database/data/contact.sql [new file with mode: 0644]
Toolkit/Contacts/Database/data/contact_inq.sql [new file with mode: 0644]
Toolkit/Contacts/Database/data/news_response.sql [new file with mode: 0644]
Toolkit/Contacts/Database/data/query_db.sql [new file with mode: 0644]
Toolkit/Contacts/Database/dbDump.sh [new file with mode: 0755]
Toolkit/Contacts/Database/loadData.sql [new file with mode: 0644]
Toolkit/Contacts/ENews.php [new file with mode: 0755]
Toolkit/Contacts/GolfPackageForm.php [new file with mode: 0755]
Toolkit/Contacts/PdfForm.php [new file with mode: 0755]
Toolkit/Contacts/SaveTripPlanner.php
Toolkit/Contacts/SendTripPlanner.php
Toolkit/Contacts/StreamSend.php
Toolkit/Contacts/TellAFriend.php [new file with mode: 0755]
Toolkit/FormBuilder.php
Toolkit/Maps/Map.php [new file with mode: 0644]
Toolkit/Maps/UpdateLatLon.php [new file with mode: 0644]
Toolkit/Maps/activities.ini [new file with mode: 0644]
Toolkit/Maps/config.ini [new file with mode: 0644]
Toolkit/Maps/googleMap.php [new file with mode: 0644]
Toolkit/Maps/googleMapActivities.php [new file with mode: 0644]
Toolkit/Maps/js/gMap-activities.js [new file with mode: 0644]
Toolkit/Maps/js/google-map.js [new file with mode: 0644]
admin/Contact/class_html.phtml [new file with mode: 0755]
admin/Contact/contact_inquiry.phtml [changed mode: 0755->0644]
admin/Contact/contact_setup.inc
admin/Contact/convert-inq.php [new file with mode: 0644]
admin/Contact/createImportComm.php [new file with mode: 0644]
admin/Contact/del_query.phtml
admin/Contact/download.phtml
admin/Contact/edit_autoresponse.phtml
admin/Contact/edit_contact.php
admin/Contact/edit_contact.phtml [new file with mode: 0755]
admin/Contact/edit_group.php
admin/Contact/edit_inquiry.phtml [changed mode: 0755->0644]
admin/Contact/emails.php
admin/Contact/index.phtml
admin/Contact/list_contact.phtml
admin/Contact/list_groups.php
admin/Contact/list_query.phtml
admin/Contact/mailout.phtml [changed mode: 0644->0755]
admin/Contact/newsletter_template.html
admin/Contact/notes/contact.sql
admin/Contact/preview.phtml
admin/Contact/query_contact.phtml
admin/Contact/query_db.phtml
admin/Contact/query_save.phtml
admin/Contact/report.csv [new file with mode: 0644]
admin/Contact/spam/TROUTEivQb5.body [new file with mode: 0644]
admin/Contact/spam/TROUTEivQb5.head [new file with mode: 0644]
admin/Contact/spam/TROUTEivQb5.ready [new file with mode: 0644]
admin/Contact/spam/TROUTEivQb5.to [new file with mode: 0644]
admin/Contact/update_autoresponse.phtml
admin/Contact/update_contact.phtml
admin/Contact/update_inquiry.phtml [changed mode: 0755->0644]
admin/Contact/view_newsletter.phtml
static/170.phtml [new file with mode: 0644]
static/304.phtml [new file with mode: 0644]
static/32.phtml [new file with mode: 0755]
static/4.phtml [new file with mode: 0755]
static/405.phtml [new file with mode: 0755]
static/406.phtml [new file with mode: 0644]
static/414.phtml [new file with mode: 0644]
templates/template.html

index 607c9be..f866945 100644 (file)
--- a/.htaccess
+++ b/.htaccess
@@ -10,7 +10,7 @@ Deny from all
 Order allow,deny
 Deny from all
 </Files>
-ErrorDocument 404 /404.html
+#ErrorDocument 404 /404.html
 RewriteEngine On
 AddDefaultCharset utf-8
 
@@ -35,6 +35,10 @@ RewriteRule ^v/[0-9\.]+/(.*) $1 [L]
 #RewriteCond %{HTTPS} !=on
 #RewriteRule ^css/(.*\.css) combine.php?type=css&files=$1
 
+# Ajax call for google map
+RewriteRule google-map/$ Toolkit/Maps/googleMap.php [QSA,L]
+RewriteRule google-map-activities/$ Toolkit/Maps/googleMapActivities.php [QSA,L]
+
 ############
 ## Events ##
 ############
diff --git a/Toolkit/CKImages/Database/data/ckeditor_folders.sql b/Toolkit/CKImages/Database/data/ckeditor_folders.sql
new file mode 100644 (file)
index 0000000..c1cd12c
--- /dev/null
@@ -0,0 +1,111 @@
+--
+-- PostgreSQL database dump
+--
+
+SET statement_timeout = 0;
+SET client_encoding = 'UTF8';
+SET standard_conforming_strings = off;
+SET check_function_bodies = false;
+SET client_min_messages = warning;
+SET escape_string_warning = off;
+
+SET search_path = public, pg_catalog;
+
+SET default_tablespace = '';
+
+SET default_with_oids = false;
+
+--
+-- Name: ckeditor_folders; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
+--
+
+CREATE TABLE ckeditor_folders (
+    id integer NOT NULL,
+    name text NOT NULL,
+    parent integer DEFAULT 1 NOT NULL
+);
+
+
+ALTER TABLE public.ckeditor_folders OWNER TO postgres;
+
+--
+-- Name: ckeditor_folders_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
+--
+
+CREATE SEQUENCE ckeditor_folders_id_seq
+    INCREMENT BY 1
+    NO MINVALUE
+    NO MAXVALUE
+    CACHE 1;
+
+
+ALTER TABLE public.ckeditor_folders_id_seq OWNER TO postgres;
+
+--
+-- Name: ckeditor_folders_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
+--
+
+ALTER SEQUENCE ckeditor_folders_id_seq OWNED BY ckeditor_folders.id;
+
+
+--
+-- Name: id; Type: DEFAULT; Schema: public; Owner: postgres
+--
+
+ALTER TABLE ONLY ckeditor_folders ALTER COLUMN id SET DEFAULT nextval('ckeditor_folders_id_seq'::regclass);
+
+
+--
+-- Data for Name: ckeditor_folders; Type: TABLE DATA; Schema: public; Owner: postgres
+--
+
+INSERT INTO ckeditor_folders (id, name, parent) VALUES (1, 'root', 0);
+INSERT INTO ckeditor_folders (id, name, parent) VALUES (2, 'Resort_Map', 1);
+INSERT INTO ckeditor_folders (id, name, parent) VALUES (5, 'summer pics', 1);
+INSERT INTO ckeditor_folders (id, name, parent) VALUES (6, 'Friends of TC', 1);
+INSERT INTO ckeditor_folders (id, name, parent) VALUES (7, 'condo pics', 1);
+INSERT INTO ckeditor_folders (id, name, parent) VALUES (8, '3 bdrm lofts', 7);
+INSERT INTO ckeditor_folders (id, name, parent) VALUES (9, '2 bdrm lofts', 7);
+INSERT INTO ckeditor_folders (id, name, parent) VALUES (10, '1 bdrm', 7);
+INSERT INTO ckeditor_folders (id, name, parent) VALUES (11, 'Social Icons', 1);
+
+
+--
+-- Name: ckeditor_folders_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
+--
+
+SELECT pg_catalog.setval('ckeditor_folders_id_seq', 11, true);
+
+
+--
+-- Name: ckeditor_folders_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
+--
+
+ALTER TABLE ONLY ckeditor_folders
+    ADD CONSTRAINT ckeditor_folders_pkey PRIMARY KEY (id);
+
+
+--
+-- Name: ckeditor_folders; Type: ACL; Schema: public; Owner: postgres
+--
+
+REVOKE ALL ON TABLE ckeditor_folders FROM PUBLIC;
+REVOKE ALL ON TABLE ckeditor_folders FROM postgres;
+GRANT ALL ON TABLE ckeditor_folders TO postgres;
+GRANT ALL ON TABLE ckeditor_folders TO nobody;
+
+
+--
+-- Name: ckeditor_folders_id_seq; Type: ACL; Schema: public; Owner: postgres
+--
+
+REVOKE ALL ON SEQUENCE ckeditor_folders_id_seq FROM PUBLIC;
+REVOKE ALL ON SEQUENCE ckeditor_folders_id_seq FROM postgres;
+GRANT ALL ON SEQUENCE ckeditor_folders_id_seq TO postgres;
+GRANT ALL ON SEQUENCE ckeditor_folders_id_seq TO nobody;
+
+
+--
+-- PostgreSQL database dump complete
+--
+
diff --git a/Toolkit/CKImages/Database/data/ckeditor_images.sql b/Toolkit/CKImages/Database/data/ckeditor_images.sql
new file mode 100644 (file)
index 0000000..b724747
--- /dev/null
@@ -0,0 +1,336 @@
+--
+-- PostgreSQL database dump
+--
+
+SET statement_timeout = 0;
+SET client_encoding = 'UTF8';
+SET standard_conforming_strings = off;
+SET check_function_bodies = false;
+SET client_min_messages = warning;
+SET escape_string_warning = off;
+
+SET search_path = public, pg_catalog;
+
+SET default_tablespace = '';
+
+SET default_with_oids = false;
+
+--
+-- Name: ckeditor_images; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
+--
+
+CREATE TABLE ckeditor_images (
+    id integer NOT NULL,
+    create_date date DEFAULT ('now'::text)::date,
+    file_name text NOT NULL,
+    name_on_disk text NOT NULL,
+    original_width text NOT NULL,
+    original_height text NOT NULL,
+    folder integer DEFAULT 1,
+    original_image text
+);
+
+
+ALTER TABLE public.ckeditor_images OWNER TO postgres;
+
+--
+-- Name: ckeditor_images_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
+--
+
+CREATE SEQUENCE ckeditor_images_id_seq
+    INCREMENT BY 1
+    NO MINVALUE
+    NO MAXVALUE
+    CACHE 1;
+
+
+ALTER TABLE public.ckeditor_images_id_seq OWNER TO postgres;
+
+--
+-- Name: ckeditor_images_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
+--
+
+ALTER SEQUENCE ckeditor_images_id_seq OWNED BY ckeditor_images.id;
+
+
+--
+-- Name: id; Type: DEFAULT; Schema: public; Owner: postgres
+--
+
+ALTER TABLE ONLY ckeditor_images ALTER COLUMN id SET DEFAULT nextval('ckeditor_images_id_seq'::regclass);
+
+
+--
+-- Data for Name: ckeditor_images; Type: TABLE DATA; Schema: public; Owner: postgres
+--
+
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (117, '2011-04-12', '119 Living Room.jpg', 'is15-1302632718-80547.jpeg', '545', '363', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (119, '2011-04-12', 'Condo 100 LR.jpg', 'is72-1302642043-96758.jpeg', '545', '363', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (82, '2010-08-04', 'photo (2).jpg', 'is57-1280952050-11546.jpeg', '800', '600', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (80, '2010-07-30', 'photo.jpg', 'is30-1280518472-41485.jpeg', '800', '600', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (17, '2010-02-05', 'trail_map_image_resized.jpg', 'is93-1265404401-81602.jpeg', '500', '540', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (18, '2010-02-05', 'resort_map_feb_08_resized.jpg', 'is81-1265404402-11459.jpeg', '550', '425', 2, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (81, '2010-07-30', 'photo.jpg', 'is08-1280518680-16313.jpeg', '800', '600', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (83, '2010-08-04', 'photo 4.jpg', 'is26-1280952101-48541.jpeg', '800', '600', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (84, '2010-08-04', 'photo 6.jpg', 'is64-1280952126-52980.jpeg', '800', '600', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (85, '2010-12-30', 'Living Rm 1.jpg', 'is23-1293734722-99360.jpeg', '545', '363', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (121, '2011-04-12', 'Condo 9 LR.jpg', 'is29-1302642360-08424.jpeg', '545', '363', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (86, '2010-12-30', 'Living Room A1.jpg', 'is76-1293735176-03719.jpeg', '545', '363', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (123, '2011-04-12', 'Condo 57 LR.jpg', 'is46-1302642584-97532.jpeg', '545', '363', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (69, '2010-05-18', 'S R P  Business Card (2010).jpg', 'is29-1274209414-21589.jpeg', '1029', '579', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (125, '2011-04-12', 'Condo 82 LR1 new.jpg', 'is06-1302642726-75631.jpeg', '545', '363', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (28, '2010-04-01', 'reservation.jpg', 'is46-1270140107-89762.jpeg', '175', '80', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (29, '2010-04-17', 'bahnhof logo black.jpg', 'is52-1271515397-32569.jpeg', '1770', '871', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (30, '2010-04-18', 'B.C. Pizza HS.jpg', 'is46-1271600267-51326.jpeg', '300', '300', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (31, '2010-04-18', 'Bahnhof Sport.jpg', 'is01-1271600298-54407.jpeg', '300', '300', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (32, '2010-04-18', 'Big Apple Bagels.jpg', 'is94-1271600313-32461.jpeg', '300', '300', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (33, '2010-04-18', 'Big Bear Adventures.jpg', 'is37-1271600326-99616.jpeg', '300', '300', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (127, '2011-04-12', 'Condo 130 LR1.jpg', 'is05-1302642993-80202.jpeg', '545', '363', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (35, '2010-04-18', 'Douglas Lake Bar.jpg', 'is44-1271600363-15498.jpeg', '300', '300', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (36, '2010-04-18', 'Latitude 45.jpg', 'is46-1271600385-36177.jpeg', '300', '300', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (37, '2010-04-18', 'Northern Lights Recreation.jpg', 'is19-1271600400-61104.jpeg', '300', '300', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (38, '2010-04-18', 'Ride 45.jpg', 'is68-1271600416-84965.jpeg', '300', '300', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (39, '2010-04-18', 'Staffords Pier.jpg', 'is55-1271600476-42708.jpeg', '300', '300', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (40, '2010-04-18', 'Sun Kissed Salon & Spa.jpg', 'is10-1271600494-54996.jpeg', '300', '300', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (41, '2010-04-18', 'Teddy Griffins.jpg', 'is82-1271600513-67795.jpeg', '300', '300', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (113, '2011-03-31', 'boating.jpg', 'is58-1301587583-14817.jpeg', '500', '375', 5, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (43, '2010-04-18', 'Turkeys.jpg', 'is59-1271600544-68929.jpeg', '300', '300', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (44, '2010-04-18', 'B.C. Pizza HS.jpg', 'is75-1271601106-46925.jpeg', '150', '150', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (45, '2010-04-18', 'Bahnhof Sport.jpg', 'is09-1271601122-30768.jpeg', '150', '150', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (46, '2010-04-18', 'Big Apple Bagels.jpg', 'is65-1271601134-53272.jpeg', '150', '150', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (47, '2010-04-18', 'Big Bear Adventures.jpg', 'is03-1271601147-15182.jpeg', '150', '150', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (129, '2011-04-14', 'Condo 65 LR.jpg', 'is52-1302807664-71845.jpeg', '545', '363', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (49, '2010-04-18', 'Douglas Lake Bar.jpg', 'is48-1271601192-81613.jpeg', '150', '150', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (50, '2010-04-18', 'Latitude 45.jpg', 'is55-1271601212-72407.jpeg', '150', '150', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (51, '2010-04-18', 'Northern Lights Recreation.jpg', 'is10-1271601232-37789.jpeg', '150', '150', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (52, '2010-04-18', 'Ride 45.jpg', 'is79-1271601246-06051.jpeg', '150', '150', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (53, '2010-04-18', 'Staffords Pier.jpg', 'is25-1271601261-55027.jpeg', '150', '150', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (54, '2010-04-18', 'Sun Kissed Salon & Spa.jpg', 'is22-1271601275-46820.jpeg', '150', '150', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (55, '2010-04-18', 'Teddy Griffins.jpg', 'is02-1271601288-90906.jpeg', '150', '150', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (56, '2010-04-18', 'The Bob In Again.jpg', 'is07-1271601322-50849.jpeg', '150', '150', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (57, '2010-04-18', 'Turkeys.jpg', 'is63-1271601333-77406.jpeg', '150', '150', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (131, '2011-04-14', 'Condo 42 LR.jpg', 'is10-1302807972-18316.jpeg', '545', '363', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (115, '2011-03-31', 'betsey and drew swings (reduced).jpg', 'is49-1301591735-22500.jpeg', '545', '262', 5, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (133, '2011-04-14', 'Condo 10 LR2 2011.jpg', 'is90-1302808258-80850.jpeg', '545', '363', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (135, '2011-04-14', 'Condo 16 LR2.jpg', 'is21-1302808431-42170.jpeg', '545', '363', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (137, '2011-04-14', 'Hiking TC sm.jpg', 'is95-1302817860-03473.jpeg', '565', '377', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (139, '2011-04-14', 'Mountain Biking @ Preserve (2).jpg', 'is34-1302818092-69779.jpeg', '545', '263', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (141, '2011-04-18', 'Living Rm 2.jpg', 'is42-1303154679-89194.jpeg', '545', '363', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (87, '2011-02-21', 'Living Rm 1.jpg', 'is77-1298309476-92978.jpeg', '545', '363', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (88, '2011-02-21', 'Living Rm 1.jpg', 'is36-1298309623-39821.jpeg', '545', '363', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (143, '2011-04-21', 'Grill Pool 3.jpg', 'is74-1303399775-76469.jpeg', '545', '345', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (146, '2011-05-05', 'Couple By Lake 2.jpg', 'is54-1304630605-63224.jpeg', '545', '332', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (177, '2011-10-28', 'DSC06355.JPG', 'is37-1319812541-37970.jpeg', '700', '466', 7, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (179, '2011-10-28', 'unit 12 lr dr window.jpg', 'is06-1319815872-81179.jpeg', '666', '500', 7, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (181, '2011-10-28', '060.JPG', 'is32-1319820173-14825.jpeg', '666', '500', 7, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (73, '2010-06-03', 'biking.jpg', 'is71-1275571805-13319.jpeg', '845', '568', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (75, '2010-06-24', 'LTT run 1.jpg', 'is05-1277407925-65382.jpeg', '3872', '2592', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (183, '2011-10-28', 'unit 58 lr dr.jpg', 'is07-1319825363-17629.jpeg', '666', '500', 8, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (89, '2011-02-21', 'Living Rm 2 (2).jpg', 'is70-1298309765-06916.jpeg', '545', '363', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (90, '2011-02-23', 'Living Rm 3.jpg', 'is53-1298496346-51524.jpeg', '545', '363', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (91, '2011-03-01', 'Kilwins HS.jpg', 'is29-1298990499-21815.jpeg', '150', '150', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (92, '2011-03-01', 'Kurts - Windjammer.jpg', 'is79-1298990560-65700.jpeg', '150', '150', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (93, '2011-03-01', 'Side Door Saloon.jpg', 'is98-1298990594-84459.jpeg', '150', '150', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (94, '2011-03-01', 'Ski Iris.jpg', 'is69-1298990615-07188.jpeg', '150', '150', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (95, '2011-03-01', 'Whitecaps.jpg', 'is07-1298990638-95040.jpeg', '150', '150', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (96, '2011-03-01', 'Polish Kitchen.jpg', 'is15-1298990702-93956.jpeg', '150', '150', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (97, '2011-03-01', 'Mim\\''s.jpg', 'is90-1298990722-91617.jpeg', '150', '150', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (98, '2011-03-01', 'Wooly Bugger.jpg', 'is73-1298991572-43514.jpeg', '150', '150', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (99, '2011-03-23', 'Clock Tower 2.jpg', 'is05-1300909413-70748.jpeg', '545', '299', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (100, '2011-03-24', 'Main Pool 2.jpg', 'is03-1301001779-02171.jpeg', '545', '336', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (101, '2011-03-25', 'True North 12.jpg', 'is82-1301079696-78640.jpeg', '800', '493', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (112, '2011-03-31', 'Angled Boats (Reduced).jpg', 'is21-1301587415-12524.jpeg', '545', '277', 5, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (103, '2011-03-25', 'remi fishing (reduced).jpg', 'is82-1301081401-96753.jpeg', '545', '366', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (105, '2011-03-25', 'heather lift.jpg', 'is56-1301087128-44857.jpeg', '545', '363', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (106, '2011-03-25', 'bethany skating wsp.jpg', 'is07-1301087518-55161.jpeg', '545', '363', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (107, '2011-03-25', 'GRG_6438.JPG', 'is03-1301088590-33319.jpeg', '2896', '1944', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (108, '2011-03-25', 'Nubs Chairlift for glm.jpg', 'is26-1301088795-72932.jpeg', '250', '188', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (114, '2011-03-31', 'Scottie Rock.jpeg', 'is37-1301588382-95317.jpeg', '346', '123', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (116, '2011-04-08', 'Condo 142 LR1.jpg', 'is19-1302295359-82221.jpeg', '545', '363', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (111, '2011-03-25', 'tubing and toe rope.jpg', 'is64-1301089186-61651.jpeg', '545', '363', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (118, '2011-04-12', 'Condo 88 LR.jpg', 'is57-1302641939-16533.jpeg', '545', '363', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (120, '2011-04-12', 'Condo 142 LR1 sm.jpg', 'is67-1302642222-93464.jpeg', '545', '363', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (122, '2011-04-12', 'Condo 13 LR.jpg', 'is60-1302642474-41926.jpeg', '545', '363', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (124, '2011-04-12', 'Condo 82 LR1 new.jpg', 'is60-1302642704-34448.jpeg', '545', '363', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (126, '2011-04-12', 'Condo 107 LR.jpg', 'is76-1302642864-73584.jpeg', '545', '363', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (128, '2011-04-12', 'Condo 131 LR2.jpg', 'is47-1302643221-09812.jpeg', '545', '363', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (130, '2011-04-14', 'Condo 32 LR2.jpg', 'is31-1302807804-48494.jpeg', '545', '363', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (132, '2011-04-14', 'Condo 53 LR.jpg', 'is24-1302808050-26010.jpeg', '545', '363', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (134, '2011-04-14', 'Condo 16 LR2.jpg', 'is29-1302808385-64933.jpeg', '545', '363', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (136, '2011-04-14', '14 Living Room 2.jpg', 'is67-1302808539-14940.jpeg', '545', '363', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (138, '2011-04-14', 'Hiking TC cropped.jpg', 'is52-1302818004-97609.jpeg', '554', '284', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (140, '2011-04-14', 'TC Winter Sign (Cropped).jpg', 'is51-1302818240-86717.jpeg', '545', '279', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (142, '2011-04-21', 'Clock Tower (2).jpg', 'is07-1303399694-51605.jpeg', '545', '258', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (149, '2011-06-23', 'image011.jpg', 'is37-1308842925-59898.jpeg', '700', '466', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (144, '2011-05-05', 'spring 034.jpg', 'is46-1304608733-61068.jpeg', '666', '421', 1, 'is57-1304608678-98337.jpeg');
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (150, '2011-08-02', 'Clock Tower.jpg', 'is78-1312331170-60607.jpeg', '545', '346', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (145, '2011-05-05', 'spring 039.jpg', 'is91-1304608885-07048.jpeg', '666', '372', 1, 'is73-1304608851-63738.jpeg');
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (148, '2011-06-14', 'soccer field 2 edit.jpg', 'is97-1308081013-08672.jpeg', '700', '471', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (151, '2011-08-18', '2011 Ford Focus Crybaby Classic logo.jpg', 'is58-1313685474-28823.jpeg', '249', '100', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (152, '2011-08-18', 'The Outfitter Logo.jpg', 'is21-1313685620-65021.jpeg', '200', '85', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (153, '2011-10-27', 'unit 15 lr july 08.jpg', 'is19-1319743829-80548.jpeg', '666', '500', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (154, '2011-10-27', 'unit 17 nov 08 lr.jpg', 'is61-1319744083-27932.jpeg', '666', '500', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (155, '2011-10-27', 'unit 25 lr fp aug 08.jpg', 'is24-1319744301-55510.jpeg', '666', '500', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (156, '2011-10-27', '31_3.jpg', 'is72-1319744427-44433.jpeg', '475', '317', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (157, '2011-10-27', 'DSCN3809.JPG', 'is54-1319744981-46703.jpeg', '666', '500', 7, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (158, '2011-10-27', 'DSCN3809.JPG', 'is86-1319745767-51764.jpeg', '666', '500', 7, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (159, '2011-10-27', 'unit 61 lr good.jpg', 'is28-1319745991-04995.jpeg', '666', '500', 7, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (160, '2011-10-27', 'lr oct 08.jpg', 'is82-1319746323-73231.jpeg', '666', '500', 7, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (161, '2011-10-27', 'unit 19 new lr jan 08.jpg', 'is18-1319746491-13847.jpeg', '666', '500', 7, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (162, '2011-10-27', 'DSCI0420.JPG', 'is42-1319746629-43508.jpeg', '666', '500', 7, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (163, '2011-10-27', 'DSCN3740.JPG', 'is99-1319746735-10156.jpeg', '666', '500', 7, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (164, '2011-10-27', 'unit 43 lr fpl.jpg', 'is96-1319746881-31633.jpeg', '666', '500', 7, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (165, '2011-10-27', 'unit 49 new lr dr window.jpg', 'is64-1319746979-80074.jpeg', '666', '500', 7, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (166, '2011-10-27', 'unit 59 lr fpl 2.jpg', 'is96-1319747645-08163.jpeg', '666', '500', 7, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (167, '2011-10-27', 'DSCN4141.JPG', 'is57-1319747766-01196.jpeg', '666', '500', 7, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (168, '2011-10-27', 'unit 70 lr july 08.jpg', 'is61-1319747903-94613.jpeg', '666', '500', 7, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (169, '2011-10-27', 'DSCN4463.JPG', 'is60-1319747987-57506.jpeg', '666', '500', 7, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (170, '2011-10-27', 'DSCN4402.JPG', 'is28-1319748179-17299.jpeg', '666', '500', 7, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (171, '2011-10-27', 'unit 89 lr.jpg', 'is17-1319748304-68978.jpeg', '666', '500', 7, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (172, '2011-10-27', 'unit 114 new lr fpl nov 07.jpg', 'is21-1319748544-31643.jpeg', '666', '500', 7, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (173, '2011-10-27', 'DSCN4611.JPG', 'is97-1319748646-65909.jpeg', '666', '500', 7, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (174, '2011-10-27', 'unit 145 new lr fpl.jpg', 'is88-1319748880-36760.jpeg', '666', '500', 7, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (175, '2011-10-27', 'unit 147 lr fpl new.jpg', 'is69-1319748988-07279.jpeg', '666', '500', 7, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (176, '2011-10-27', 'unit 112 new lr lamps.jpg', 'is14-1319749139-78275.jpeg', '666', '500', 7, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (178, '2011-10-28', 'unit 06 new lr dr aug 08.jpg', 'is17-1319815286-99031.jpeg', '666', '500', 7, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (180, '2011-10-28', 'unit 20 new couches..jpg', 'is39-1319819671-55092.jpeg', '666', '500', 7, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (182, '2011-10-28', 'unit 36 lr slider.jpg', 'is14-1319824440-60357.jpeg', '666', '500', 8, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (185, '2011-10-28', 'unit 80 lr july 08.jpg', 'is92-1319825735-91921.jpeg', '666', '500', 8, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (186, '2011-10-28', 'unit 87 jan 07 010.jpg', 'is89-1319825951-66503.jpeg', '700', '465', 8, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (187, '2011-10-28', 'unit 109 lr summer aug 08 test.jpg', 'is64-1319826494-81719.jpeg', '666', '500', 8, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (188, '2011-10-28', 'IMG0028.jpg', 'is75-1319826867-27302.jpeg', '666', '500', 8, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (189, '2011-10-28', 'unit 123 lrnew.jpg', 'is90-1319830268-96785.jpeg', '666', '500', 8, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (190, '2011-10-28', 'unit 150 lr dr slider summer.jpg', 'is47-1319831187-07103.jpeg', '666', '500', 8, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (191, '2011-10-28', 'unit 18 new lr 08.jpg', 'is81-1319836359-44010.jpeg', '666', '500', 9, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (192, '2011-10-28', 'unit 24 lr couches july 08.jpg', 'is49-1319836581-43008.jpeg', '666', '500', 9, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (193, '2011-10-28', 'unit 26 lr couches window.jpg', 'is23-1319836832-94970.jpeg', '666', '500', 9, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (194, '2011-10-28', 'DSCN4271.JPG', 'is40-1319837081-93134.jpeg', '666', '500', 9, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (195, '2011-10-28', 'unit 62 sofa nov 2007.jpg', 'is31-1319837658-07858.jpeg', '666', '500', 9, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (196, '2011-10-28', 'unit 76 lr fpl new.jpg', 'is77-1319838189-55193.jpeg', '666', '500', 9, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (197, '2011-10-28', 'IMG_20110327_144633.jpg', 'is13-1319838889-61365.jpeg', '670', '500', 9, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (198, '2011-10-28', 'unit 90 new lr apples lighter.jpg', 'is90-1319839081-75798.jpeg', '666', '500', 9, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (199, '2011-10-28', 'unit 97 lr nov 07.jpg', 'is80-1319839339-95315.jpeg', '666', '500', 9, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (200, '2011-10-29', 'unit 104lr.jpg', 'is73-1319891241-34071.jpeg', '666', '500', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (201, '2011-10-29', 'DSCN4034.JPG', 'is61-1319891450-18763.jpeg', '666', '500', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (202, '2011-10-29', 'unit 111 lr dr kitchen.jpg', 'is87-1319891626-42148.jpeg', '666', '500', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (203, '2011-10-29', 'unit 118 lr new nov 07.jpg', 'is50-1319892191-56044.jpeg', '666', '500', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (209, '2011-11-10', 'P9161107.JPG', 'is13-1320940170-18781.jpeg', '666', '500', 10, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (205, '2011-10-29', 'new lr apr 2010.jpg', 'is94-1319893903-52614.jpeg', '600', '450', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (206, '2011-10-29', 'unit 139 couchs.jpg', 'is27-1319894169-73841.jpeg', '666', '500', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (207, '2011-10-29', 'DSCI0571.JPG', 'is86-1319894274-37425.jpeg', '666', '500', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (208, '2011-10-29', 'unit 148 couch kit.jpg', 'is27-1319894885-10690.jpeg', '666', '500', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (210, '2011-11-10', 'Unit 144 Fireplace.JPG', 'is06-1320961659-32231.jpeg', '640', '480', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (211, '2011-11-14', 'Camera Pics 129.jpg', 'is75-1321308554-95162.jpeg', '666', '500', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (212, '2011-11-23', 'IMG_2000.jpg', 'is32-1322084750-96723.jpeg', '700', '466', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (231, '2012-01-02', 'photo lr overview.JPG', 'is88-1325523815-73782.jpeg', '666', '500', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (215, '2011-12-14', 'facebook.png', 'is90-1323885377-96409.png', '30', '30', 11, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (216, '2011-12-14', 'youtube.png', 'is73-1323885386-76354.png', '30', '30', 11, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (217, '2011-12-14', 'blogger.png', 'is64-1323885394-62815.png', '30', '30', 11, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (236, '2012-04-12', 'Petoskey Pier & Fishing.jpg', 'is32-1334257861-68671.jpeg', '545', '363', 5, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (234, '2012-03-26', 'Sandune Sunset.jpg', 'is38-1332791093-11026.jpeg', '454', '303', 1, 'is08-1332791031-79270.jpeg');
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (219, '2011-12-14', 'youtube_logo_standard.jpg', 'is25-1323886170-05702.jpeg', '175', '64', 11, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (232, '2012-01-31', 'DSCI0016.JPG', 'is58-1328038167-57199.jpeg', '537', '303', 1, 'is74-1328037745-70558.jpeg');
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (104, '2011-03-25', 'morels.jpg', 'is85-1328039630-29562.jpeg', '465', '313', 1, 'is84-1301083767-74973.jpeg');
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (235, '2012-03-26', 'Sandune Sunset.jpg', 'is77-1332791164-54107.jpeg', '700', '466', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (233, '2012-01-31', 'unit 79 july 10 018.jpg', 'is20-1328048648-64503.jpeg', '538', '311', 1, 'is94-1328048491-66006.jpeg');
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (240, '2012-07-11', 'Kilwins (Drew & Remi).JPG', 'is65-1342023345-58039.jpeg', '700', '466', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (237, '2012-04-12', 'andyboat2.jpg', 'is83-1334260996-43173.jpeg', '545', '363', 1, 'is23-1334260883-71060.jpeg');
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (238, '2012-04-12', 'andyboat.jpg', 'is59-1334261213-78156.jpeg', '700', '466', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (239, '2012-04-12', 'andyboat sm.jpg', 'is29-1334262906-45408.jpeg', '700', '395', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (241, '2012-07-19', '22 new fireplace sm.JPG', 'is47-1342713419-91567.jpeg', '282', '212', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (242, '2012-10-24', 'unit 80 lr kit july 08.jpg', 'is13-1351108563-55149.jpeg', '700', '525', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (243, '2012-10-24', 'DSCN4493.JPG', 'is13-1351108672-04446.jpeg', '700', '525', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (244, '2012-11-26', 'reservation button.jpg', 'is30-1353965407-66987.jpeg', '175', '80', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (245, '2012-12-13', 'Gourmet Pizza Square Logo.png', 'is60-1355411182-72843.png', '700', '691', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (246, '2012-12-13', 'Gourmet Pizza Square Logo.png', 'is80-1355411187-22315.png', '700', '691', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (247, '2012-12-13', 'Gourmet Pizza Square Logo.png', 'is74-1355411224-70874.png', '700', '691', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (248, '2012-12-13', 'Gourmet Pizza Square Logo.png', 'is59-1355412313-05214.png', '700', '691', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (249, '2012-12-13', 'bahnhof logo black.jpg', 'is56-1355414432-53293.jpeg', '700', '344', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (250, '2012-12-13', 'Big-Apple-Bagels-logo.jpg', 'is58-1355414487-96541.jpeg', '226', '176', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (251, '2012-12-13', 'Big Apple Logo.gif', 'is07-1355414517-91155.gif', '95', '74', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (252, '2012-12-13', 'Big-Apple-Bagels-logo.jpg', 'is54-1355414756-00622.jpeg', '226', '176', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (253, '2012-12-13', 'Big Bear Adventures.bmp', 'is38-1355414927-34945.bmp', '431', '333', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (254, '2012-12-13', 'tree.bmp', 'is38-1355415538-01813.bmp', '300', '366', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (255, '2012-12-13', 'Presentation1.jpg', 'is53-1355415580-12475.jpeg', '700', '525', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (256, '2012-12-13', 'Douglas Lake Bar.jpg', 'is74-1355415773-04581.jpeg', '289', '405', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (258, '2012-12-13', 'Fustinis logo 12-13-2012.jpg', 'is67-1355417373-84679.jpeg', '700', '546', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (259, '2012-12-13', 'Logo Burgundy.jpg', 'is23-1355417545-95518.jpeg', '700', '323', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (260, '2012-12-21', 'american spoon.jpg', 'is08-1356126085-70313.jpeg', '700', '697', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (261, '2012-12-21', 'logo for shirts.jpg', 'is76-1356126151-19899.jpeg', '700', '466', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (262, '2012-12-21', 'ride 45.jpg', 'is24-1356126260-18470.jpeg', '700', '417', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (263, '2012-12-21', 'tomsmomslogo.jpg', 'is05-1356128234-68973.jpeg', '200', '238', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (264, '2012-12-21', 'Windjammer Marina.jpg', 'is02-1356130113-81098.jpeg', '528', '506', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (265, '2013-01-16', 'LR FPL July 2011.JPG', 'is23-1358352778-98309.jpeg', '700', '525', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (266, '2013-02-21', 'reservation button.jpg', 'is33-1361467217-99039.jpeg', '175', '80', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (267, '2013-02-21', 'reservation button.jpg', 'is98-1361471873-89577.jpeg', '175', '80', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (268, '2013-02-21', 'reservation button.jpg', 'is67-1361472164-01905.jpeg', '175', '80', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (269, '2013-02-21', 'reservation button.jpg', 'is25-1361472873-78251.jpeg', '175', '80', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (270, '2013-02-21', 'reservation button.jpg', 'is60-1361473157-42160.jpeg', '175', '80', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (271, '2013-02-21', 'reservation button.jpg', 'is44-1361473182-36718.jpeg', '175', '80', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (272, '2013-02-21', 'reservation button.jpg', 'is99-1361473780-54393.jpeg', '175', '80', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (273, '2013-03-26', 'big bear adv 2013 (2).jpg', 'is73-1364319761-53468.jpeg', '613', '398', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (274, '2013-04-19', 'HS Bluff 1 (Cropped) hi res.jpg', 'is95-1366394423-96033.jpeg', '700', '343', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (275, '2013-04-24', 'Parasail Boyne City 1.jpg', 'is35-1366833664-81452.jpeg', '700', '473', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (276, '2013-04-25', 'winery 2.JPG', 'is30-1366904977-63726.jpeg', '700', '466', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (277, '2013-05-06', 'lr 2013.jpg', 'is91-1367872294-90910.jpeg', '320', '240', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (278, '2013-06-06', 'Updated Front Desk Map.jpg', 'is37-1370543268-96433.jpeg', '700', '541', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (279, '2013-06-06', 'Updated Trail Map.jpg', 'is65-1370543541-05656.jpeg', '700', '905', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (280, '2013-08-12', 'DSC_0396.JPG', 'is06-1376340960-84481.jpeg', '700', '468', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (281, '2013-08-12', 'DSC_0396.JPG', 'is58-1376341152-08883.jpeg', '700', '468', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (282, '2013-09-25', 'Fall Window Shopping 5.jpg', 'is75-1380142531-12374.jpeg', '700', '466', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (283, '2013-11-27', 'photo.JPG', 'is75-1385576625-44422.jpeg', '640', '480', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (284, '2013-12-16', 'Petoskey Logo Clear.jpg', 'is28-1387232332-04961.jpeg', '452', '443', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (285, '2014-01-28', '06 - Living Room - IMG_0213.JPG', 'is57-1390936828-32226.jpeg', '700', '466', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (286, '2014-01-28', 'reservation button.jpg', 'is07-1390938485-96751.jpeg', '175', '80', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (287, '2014-01-28', 'DSCN5091.JPG', 'is79-1390938962-21380.jpeg', '700', '525', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (288, '2014-01-28', 'unit 15 lr july 08.jpg', 'is92-1390939356-82120.jpeg', '700', '525', 1, NULL);
+INSERT INTO ckeditor_images (id, create_date, file_name, name_on_disk, original_width, original_height, folder, original_image) VALUES (289, '2014-01-31', 'image (14).jpeg', 'is47-1391227691-66527.jpeg', '640', '480', 1, NULL);
+
+
+--
+-- Name: ckeditor_images_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
+--
+
+SELECT pg_catalog.setval('ckeditor_images_id_seq', 289, true);
+
+
+--
+-- Name: ckeditor_images_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
+--
+
+ALTER TABLE ONLY ckeditor_images
+    ADD CONSTRAINT ckeditor_images_pkey PRIMARY KEY (id);
+
+
+--
+-- Name: ckeditor_images_folder_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
+--
+
+ALTER TABLE ONLY ckeditor_images
+    ADD CONSTRAINT ckeditor_images_folder_fkey FOREIGN KEY (folder) REFERENCES ckeditor_folders(id) ON DELETE SET DEFAULT;
+
+
+--
+-- Name: ckeditor_images; Type: ACL; Schema: public; Owner: postgres
+--
+
+REVOKE ALL ON TABLE ckeditor_images FROM PUBLIC;
+REVOKE ALL ON TABLE ckeditor_images FROM postgres;
+GRANT ALL ON TABLE ckeditor_images TO postgres;
+GRANT ALL ON TABLE ckeditor_images TO nobody;
+
+
+--
+-- Name: ckeditor_images_id_seq; Type: ACL; Schema: public; Owner: postgres
+--
+
+REVOKE ALL ON SEQUENCE ckeditor_images_id_seq FROM PUBLIC;
+REVOKE ALL ON SEQUENCE ckeditor_images_id_seq FROM postgres;
+GRANT ALL ON SEQUENCE ckeditor_images_id_seq TO postgres;
+GRANT ALL ON SEQUENCE ckeditor_images_id_seq TO nobody;
+
+
+--
+-- PostgreSQL database dump complete
+--
+
diff --git a/Toolkit/CKImages/Database/dbDump.sh b/Toolkit/CKImages/Database/dbDump.sh
new file mode 100755 (executable)
index 0000000..49ae293
--- /dev/null
@@ -0,0 +1,13 @@
+#! /bin/bash
+
+pgDump='/usr/bin/pg_dump -U postgres --column-inserts'
+dbHost='ds3'
+dbName='troutcreek'
+
+tables[0]=ckeditor_folders
+tables[1]=ckeditor_images
+
+for i in ${tables[@]}; do
+    $pgDump -h $dbHost $dbName -t ${i} -f ./data/${i}.sql
+    echo ${i}
+done
diff --git a/Toolkit/CKImages/Database/loadData.sql b/Toolkit/CKImages/Database/loadData.sql
new file mode 100644 (file)
index 0000000..b8867cd
--- /dev/null
@@ -0,0 +1,6 @@
+--
+-- Data
+--
+\i ./data/ckeditor_folders.sql
+\i ./data/ckeditor_images.sql
+
index 835feab..6e55b11 100755 (executable)
@@ -167,10 +167,10 @@ class Toolkit_Contacts_ContactUs
     protected $successMsg = '
         <style type="text/css">
         #category {display:none;}
-        .listing {display:none;}
+        .listings {display:none;}
         </style>
         <div id="form-success-top">
-            Thank you for your questions or comments!
+            Thank you for the reservation request!
         </div>';
 
     /**
@@ -310,7 +310,7 @@ class Toolkit_Contacts_ContactUs
             $this->siteName = SITENAME;
         }
         if (empty($this->subject)) {
-            $this->subject = 'Contact Request from website ' . SITENAME;
+            $this->subject = 'You have received a reservation request';
         }
 
         /**
@@ -406,6 +406,10 @@ class Toolkit_Contacts_ContactUs
             $this->setInterestFields();
             //    Grouped Elements are defined here.
             $this->interestsGroups =& $this->getInterestFields();
+            // referred by
+            $this->setReferredBy();
+            // unit sizes
+            $this->setUnitSize();
         }
 
         //    All Elements are created here.  This includes group element definitions.
@@ -426,7 +430,7 @@ class Toolkit_Contacts_ContactUs
         );
         $e[] = array(
             'type'    => 'text',
-            'req'     => false,
+            'req'     => true,
             'name'    => 'fname',
             'display' => 'First Name'
         );
@@ -444,17 +448,29 @@ class Toolkit_Contacts_ContactUs
             $add2 = 'address2';
         }
         $e[] = array(
-            'type'    => 'text',
-            'req'     => false,
-            'name'    => $add1,
-            'display' => 'Address 1'
+            'type'    => 'email',
+            'req'     => true,
+            'name'    => 'email',
+            'display' => 'Email'
+        );
+        $e[] = array(
+            'type'    => 'email',
+            'req'     => true,
+            'name'    => 'email_rmv',
+            'display' => 'Verify Email'
         );
         $e[] = array(
             'type'    => 'text',
             'req'     => false,
-            'name'    => $add2,
-            'display' => 'Address 2'
+            'name'    => $add1,
+            'display' => 'Address'
         );
+        //$e[] = array(
+            //'type'    => 'text',
+            //'req'     => false,
+            //'name'    => $add2,
+            //'display' => 'Address 2'
+        //);
         $e[] = array(
             'type'    => 'text',
             'req'     => false,
@@ -474,43 +490,93 @@ class Toolkit_Contacts_ContactUs
             'name'    => 'zip',
             'display' => 'ZIP/Postal Code'
         );
+
         $e[] = array(
-            'type'    => 'email',
-            'req'     => true,
-            'name'    => 'email',
-            'display' => 'Email'
+            'type'    => 'tel',
+            'req'     => false,
+            'name'    => 'phone',
+            'display' => 'Phone'
         );
+        //$e[] = array(
+            //'type'    => 'tel',
+            //'req'     => false,
+            //'name'    => 'fax',
+            //'display' => 'Fax'
+        //);
         $e[] = array(
-            'type'    => 'email',
-            'req'     => true,
-            'name'    => 'email_rmv',
-            'display' => 'Verify Email'
+            'type'    => 'date',
+            'req'     => false,
+            'name'    => 'arrive_date',
+            'display' => 'Date Requested From:',
+            'opts'    => array(
+                    'language'       => 'en',
+                    'format'         => 'mdY',
+                    'minYear'        => date('Y'),
+                    'maxYear'        => date('Y') + 3,
+                    'addEmptyOption' => true
+                )
         );
         $e[] = array(
-            'type'    => 'tel',
+            'type'    => 'date',
             'req'     => false,
-            'name'    => 'phone',
-            'display' => 'Phone'
+            'name'    => 'depart_date',
+            'display' => 'Date Requested To:',
+            'opts'    => array(
+                    'language'       => 'en',
+                    'format'         => 'mdY',
+                    'minYear'        => date('Y'),
+                    'maxYear'        => date('Y') + 3,
+                    'addEmptyOption' => true
+                )
+        );
+$e[] = array(
+            'type'    => 'select',
+            'req'     => false,
+            'name'    => 'unit_size',
+            'display' => 'Unit Size:',
+            'opts'    => $this->unit_size
         );
         $e[] = array(
-            'type'    => 'tel',
+            'type'    => 'select',
+            'req'     => true,
+            'name'    => 'referred_by',
+            'display' => 'How did you hear about Trout Creek?',
+            'opts'    => $this->referred_by
+        );
+        $e[] = array(
+            'type'    => 'textarea',
             'req'     => false,
-            'name'    => 'fax',
-            'display' => 'Fax'
+            'name'    => 'other',
+            'display' => 'If other, please specify:'
         );
+
+        if (is_array($this->interestsGroups)) {
+            foreach ($this->interestsGroups as $group => $gData) {
+                $this->myGroups[] = $gData;
+                $e[] = array(
+                    'type'       => 'group',
+                    'req'        => false,
+                    'name'       => 'interest['.$group.']',
+                    'group'         => $gData,
+                    'label'      => $group,
+                    'seperator'  => ' ',
+                    'appendName' => true
+                );
+            }
+        }
         $e[] = array(
             'type'    => 'textarea',
             'req'     => false,
-            'name'    => 'comments',
-            'display' => 'Comments'
+            'name'    => 'questions',
+            'display' => 'Additional Questions:'
         );
         if ($this->hasContactDB) {
             $e[] = array(
                 'type'    => 'advcheckbox',
                 'req'     => false,
                 'name'    => 'mail_ok',
-                'display' => '',
-                'opts'    => 'Yes, I would like to receive Email Newsletters',
+                'display' => 'Please notify me of specials and offers.',
+                'opts'    => 'Yes',
                 'val'     => array(0, 1)
             );
             if (defined("MEMBERS_DB") && MEMBERS_DB) {
@@ -524,20 +590,7 @@ class Toolkit_Contacts_ContactUs
                 );
             }
         }
-        if (is_array($this->interestsGroups)) {
-            foreach ($this->interestsGroups as $group => $gData) {
-                $this->myGroups[] = $gData;
-                $e[] = array(
-                    'type'       => 'group',
-                    'req'        => false,
-                    'name'       => 'interest['.$group.']',
-                    'group'         => $gData,
-                    'label'      => $group,
-                    'seperator'  => ' ',
-                    'appendName' => true
-                );
-            }
-        }
+
         $e[] = array(
             'type'    => 'CAPTCHA_Image',
             'req'     => false,
@@ -919,6 +972,50 @@ class Toolkit_Contacts_ContactUs
         return $interests;
     }
 
+    //  }}}
+
+    //  {{{ insertData()
+
+    /**
+     * Inserts contact data into the contact db
+     *
+     * @param array $values submitted values
+     *
+     * @return object result of db insert query
+     * @access protected
+     */
+    protected function insertData($values)
+    {
+        unset($values['comments']);
+        $values['contact_type'] = ":{$this->contactType}:";
+        if (is_array($values['interest']) && !empty($values['interest'])) {
+            foreach ($values['interest'] as $iGroup => $interests) {
+                $newInterest[] = implode(':', array_keys($interests));
+            }
+            if (is_array($newInterest)) {
+                $values['interest'] = ':' . implode(':', $newInterest) . ':';
+            }
+        }
+        try {
+            $sql = Toolkit_Common::createSQLInsert(
+                $this->tableName,
+                array_keys($values)
+            );
+
+            return Toolkit_Common::processQuery(
+                $this->dbh,
+                $this->tableName,
+                $sql,
+                $values
+            );
+        } catch (PDOException $e) {
+            return Toolkit_Common::handleError($e);
+        }
+    }
+
+    //  }}}
+
+    //  {{{ processData()
     /**
      * Handles how to process the form when submitted
      *
@@ -949,66 +1046,88 @@ class Toolkit_Contacts_ContactUs
         //  aren't going to be used when inserting/updating the db.
         $values = Toolkit_Common::cleanArray($values);
 
-        //  Check if we are updating an existing contact or not
-        //  question: is this the best approach?  what if someone else
-        //  sends a form through w/ different data but the same emil addy
-        //  the old users data can be completely wiped out.
-        $existingContact = $this->contactExists($values['email']);
-        // setup newInterest aray with the interest values
-        // because their grouped can't be found with getElement('interest')
-        $this->newInterest = $values['interest'];
-        // update create_date for this contact
-        $values['create_date'] = date('m/d/Y');
-
-        // set up interest field values
-        if (is_array($values['interest']) && !empty($values['interest'])) {
-            foreach ($values['interest'] as $iGroup => $interests) {
-                $newInterest[] = implode(':', array_keys($interests));
+        //  Send data off to StreamSend
+        if (   defined('STREAMSEND_FORMS_API')
+            && STREAMSEND_FORMS_API
+            && $values['mail_ok']
+        ) {
+            //echo '<pre>'.print_r($values, true).'</pre>';
+
+            // Insert the record into the streamsend server
+            $ssData                = $values;
+            $ssData['referred_by'] = ($ssData['referred_by'] != '') ? $this->referred_by[$ssData['referred_by']]: null;
+            $ssData['unit_size']   = ($ssData['unit_size'] != '') ? $this->unit_size[$ssData['unit_size']]: null;
+            if (!empty($ssData['interest'])) {
+                foreach ($ssData['interest']['Let us know what you are interested in'] as $intId => $intTrue) {
+                    $interest[] = $this->inquiries['Let us know what you are interested in'][$intId];
             }
-            if (is_array($newInterest)) {
-                $values['interest'] = ':' . implode(':', $newInterest) . ':';
+                if (!empty($interest)) {
+                    $ssData['interest'] = implode("|", $interest);
             }
         }
-        if ($existingContact) {
-            $contactId = $this->getContactIdByEmail($values['email']);
-            $cType = $this->_getExistingContactTypes($contactId);
-            $idFieldName
-                = ($this->tableName == 'contact')
-                ? 'id'
-                : 'cust_id';
-            $values[$idFieldName] = $contactId;
-            $existingTypes
-                = (is_array($cType))
-                ? explode(':', $cType)
-                : array();
-            if (!in_array($this->contactType, $existingTypes)) {
-                $values['contact_type'] = "$cType{$this->contactType}:";
-            } else {
-                $values['contact_type'] = ":".implode(':', array_filter($existingTypes)).":";
+            $cType = array(
+                ''=>'',
+                1 => 'Reservation Request',
+                2 => 'E-News',
+                3 => 'Golf Package'
+            );
+            if ($this->contactType) {
+                $ssData['contact_type'] = $cType[$this->contactType];
             }
-        } else {
-            $values['contact_type'] = ":{$this->contactType}:";
+            $ssData['arrive_date'] = ($ssData['arrive_date']['m']) ? implode("/", $ssData['arrive_date']): null;
+            $ssData['depart_date'] = ($ssData['depart_date']['m']) ? implode("/", $ssData['depart_date']): null;
+
+            //echo '<pre>'.print_r($ssData, true).'</pre>';exit;
+
+            $streamSend = new Toolkit_Contacts_StreamSend();
+            $streamSend->addContact($ssData);
         }
-        // build a contact or customer class object with the values from
-        // the Contact form
-        if ($this->tableName == 'contact') {
-            $contact = Toolkit_LeadManager_Contact::createByValues($values);
+        $values['unit_size'] = (!$values['unit_size']) ? null: $values['unit_size'];
+        // prep the dates
+        if ($values['arrive_date']) {
+            if (
+                $values['arrive_date']['m'] &&
+                $values['arrive_date']['d'] &&
+                $values['arrive_date']['Y']
+            ) {
+                $values['arrive_date'] =
+                    $values['arrive_date']['m'] . '/'
+                    . $values['arrive_date']['d'] . '/'
+                    . $values['arrive_date']['Y'];
         } else {
-            $contact = Toolkit_LeadManager_Customer::createByValues($values);
+                $values['arrive_date'] = null;
         }
-        if ($contact->getMailOk()) {
-            if (   defined('STREAMSEND_FORMS_API')
-                && STREAMSEND_FORMS_API) {
-                $contact->attach(new Toolkit_LeadManager_StreamSend());
             }
-            if (    defined('CONSTANT_CONTACT')
-                && CONSTANT_CONTACT) {
-                $contact->attach(new Toolkit_LeadManager_ConstantContact());
+        if ($values['depart_date']) {
+            if (
+                $values['depart_date']['m'] &&
+                $values['depart_date']['d'] &&
+                $values['depart_date']['Y']
+            ) {
+                $values['depart_date'] =
+                    $values['depart_date']['m'] . '/'
+                    . $values['depart_date']['d'] . '/'
+                    . $values['depart_date']['Y'];
+            } else {
+                $values['depart_date'] = null;
             }
         }
-        $contact->save($this->dbh, false);
-        return true;
+        //  Check if we are updating an existing contact or not
+        //  question: is this the best approach?  what if someone else
+        //  sends a form through w/ different data but the same emil addy
+        //  the old users data can be completely wiped out.
+        $existingContact = $this->contactExists($values['email']);
+
+        if ($existingContact) {
+            return $this->updateData($values);
+        } else {
+            return $this->insertData($values);
     }
+    }
+
+    //  }}}
+
+    //  {{{ setInterestFields()
 
     /**
      * Contact DB interests
@@ -1019,17 +1138,14 @@ class Toolkit_Contacts_ContactUs
     protected function setInterestFields()
     {
         try {
-            $groupWhere
-                = (!empty($this->contactInqGroups))
-                ? "WHERE contact_inq.groupid IN (".implode(',',$this->contactInqGroups).")"
-                : "";
             $sql = "
                 SELECT contact_inq.*, inq_group.name
+                  FROM contact_inq LEFT OUTER JOIN inq_group ON (contact_inq.groupid = inq_group.id)
+                 ORDER BY groupid, pos";
+            $sql = "
+              SELECT contact_inq.*,'Let us know what you are interested in' as name
                   FROM contact_inq
-                    LEFT OUTER JOIN inq_group
-                    ON (contact_inq.groupid = inq_group.id)
-                    $groupWhere
-                 ORDER BY inq_group.name, contact_inq.pos";
+            ORDER BY pos";
 
             $i = array();
             foreach ($this->dbh->query($sql) as $row) {
@@ -1041,7 +1157,39 @@ class Toolkit_Contacts_ContactUs
             Toolkit_Common::handleError($e);
         }
     }
-
+    //  }}}
+    // {{{ setReferredBy()
+    function setReferredBy()
+    {
+        $referred_by[''] = "-- Select --";
+        //$referred_by[0] = "AAA";
+        $referred_by[1] = "Big Fore";
+        $referred_by[2] = "Chamber/Visitors Bureau";
+        //$referred_by[3] = "Detroit Free Press";
+        $referred_by[4] = "Friends/Relatives";
+        //$referred_by[5] = "Great Rentals Web Site";
+        $referred_by[6] = "Internet Search";
+        $referred_by[7] = "Nubs Nob";
+        $referred_by[8] = "Other";
+        $referred_by[9] = "Past Guest";
+        $this->referred_by = $referred_by;
+    }
+    // }}}
+    // {{{ setUnitSize()
+    function setUnitSize()
+    {
+        $unit_size[''] = "-- Select --";
+        $unit_size[6] = "5 bedroom &amp; loft, 3.5 bathroom (sleeps 12)";
+        $unit_size[0] = "3 bedroom &amp; loft, 2 bathroom (sleeps 8-10)";
+        $unit_size[1] = "2 bedroom &amp; loft, 2 bathroom (sleeps 6-8)";
+        $unit_size[2] = "2 bedroom, 2 bathroom + (sleeps 4-6)";
+        $unit_size[3] = "2 bedroom, 2 bathroom (sleeps 4-6)";
+        $unit_size[4] = "2 bedroom, 1 bathroom (sleeps 4-6)";
+        $unit_size[5] = "1 bedroom, 1 bathroom (sleeps 2-4)";
+        $this->unit_size = $unit_size;
+    }
+    // }}}
+    //  {{{ setupRenderers()
     //  @codeCoverageIgnoreStart
 
     /**
@@ -1069,6 +1217,8 @@ class Toolkit_Contacts_ContactUs
     }
 
     //  @codeCoverageIgnoreEnd
+    //  }}}
+    //  {{{ toHtml()
 
     /**
      * Handles how to display the current step the user is at in the form
@@ -1105,7 +1255,65 @@ class Toolkit_Contacts_ContactUs
         }
         return $output;
     }
+    //  {{{ updateData()
+
+    /**
+     * Updates the contact in the contact db
+     *
+     * @param array $values Form submitted values
+     *
+     * @return object    Result of the update query
+     * @access protected
+     */
+    protected function updateData($values)
+    {
+        unset($values['comments']);
+        if (is_array($values['interest']) && !empty($values['interest'])) {
+            foreach ($values['interest'] as $iGroup => $interests) {
+                $newInterest[] = implode(':', array_keys($interests));
+            }
+            if (is_array($newInterest)) {
+                $values['interest'] = ':' . implode(':', $newInterest) . ':';
+            }
+        }
+
+        try {
+            //  Get all the existing contact type data
+            $sql = "
+                SELECT contact_type
+                  FROM {$this->tableName}
+                 WHERE email = :email";
+
+            $stmt = $this->dbh->prepare($sql);
+            $stmt->bindParam(':email', $values['email'], PDO::PARAM_STR);
+            $stmt->execute();
+            $stmt->bindColumn('contact_type', $cType);
+            $stmt->fetch();
+
+            $existingTypes = explode(':', $cType);
+            if (!in_array($this->contactType, $existingTypes)) {
+                $values['contact_type'] = "$cType{$this->contactType}:";
+            }
+
+            $sql = Toolkit_Common::createSQLUpdate(
+                $this->tableName,
+                array_keys($values),
+                array('email = :email')
+            );
+
+            return Toolkit_Common::processQuery(
+                $this->dbh,
+                $this->tableName,
+                $sql,
+                $values
+            );
+        } catch (PDOException $e) {
+            return Toolkit_Common::handleError($e);
+        }
+
+    }
 
+    //  }}}
     /**
      * Return the existing contact/customer contact_type
      *
diff --git a/Toolkit/Contacts/Database/data/contact.sql b/Toolkit/Contacts/Database/data/contact.sql
new file mode 100644 (file)
index 0000000..2a64424
--- /dev/null
@@ -0,0 +1,7192 @@
+--
+-- PostgreSQL database dump
+--
+
+SET statement_timeout = 0;
+SET client_encoding = 'UTF8';
+SET standard_conforming_strings = off;
+SET check_function_bodies = false;
+SET client_min_messages = warning;
+SET escape_string_warning = off;
+
+SET search_path = public, pg_catalog;
+
+SET default_tablespace = '';
+
+SET default_with_oids = true;
+
+--
+-- Name: contact; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
+--
+
+CREATE TABLE contact (
+    id integer DEFAULT nextval(('"contact_id_seq"'::text)::regclass) NOT NULL,
+    create_date date DEFAULT now(),
+    fname text,
+    lname text,
+    address text,
+    city text,
+    state text,
+    zip text,
+    country text,
+    phone text,
+    fax text,
+    email text,
+    user_agent text,
+    remote_addr text,
+    mail_ok boolean,
+    referred_by integer,
+    unit_size integer,
+    questions text,
+    arrive_date date,
+    depart_date date,
+    other text,
+    interest text,
+    contestant boolean,
+    contact_type text,
+    number_of_golfers text,
+    number_of_non_golfers text,
+    number_of_couples text,
+    number_of_singles text,
+    number_of_golfers_2 text,
+    tee_time text,
+    phone2 text,
+    courses text
+);
+
+
+ALTER TABLE public.contact OWNER TO postgres;
+
+--
+-- Data for Name: contact; Type: TABLE DATA; Schema: public; Owner: postgres
+--
+
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (30, '2003-08-06', 'Mark', 'Simon', '204 Lake St.', 'Evanston', 'IL', '60201', NULL, '312-902-5301', NULL, 'mark.simon@kmzr.com', NULL, NULL, false, 9, 5, '', '2003-08-17', '2003-08-19', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (54, '2003-08-08', 'Tereesa', 'Bailey', '', 'Pleasant Ridge', 'MI', '48069', NULL, '', NULL, 'tbailey@comcast.net', NULL, NULL, true, NULL, NULL, '', '2003-08-08', '2003-08-08', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (41, '2003-08-07', 'Kellie', 'Albright', '', 'Oxford', 'MI', '48371', NULL, '', NULL, 'tigger77@sprintmail.com', NULL, NULL, true, 9, NULL, '', '2003-08-07', '2003-08-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (43, '2003-08-07', 'Ed and Diane', 'Alef', '', 'Troy', 'MI', '48085', NULL, '', NULL, 'eddan68@comcast.net', NULL, NULL, true, 9, NULL, '', '2003-08-07', '2003-08-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (45, '2003-08-07', 'Elizabeth', 'Amato', '', 'Grand Blanc', 'MI', '48439', NULL, '', NULL, 'eaamato@yahoo.com', NULL, NULL, true, 4, NULL, '', '2003-08-07', '2003-08-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (49, '2003-08-07', 'Marvin', 'Asnus', '', 'Macomb', 'MI', '48042', NULL, '', NULL, 'barb.w@netzero.net', NULL, NULL, true, 4, NULL, '', '2003-08-07', '2003-08-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (58, '2003-08-08', 'Prasath', 'Balakrishnan', '', 'Novi', 'MI', '48375', NULL, '', NULL, 'balakrp@ntcna.nissan-usa.com', NULL, NULL, true, NULL, NULL, '', '2003-08-08', '2003-08-08', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (59, '2003-08-08', 'Brian', 'Ball', '', 'Royal Oak', 'MI', '48067', NULL, '', NULL, 'just4kx@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2003-08-08', '2003-08-08', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9314, '2010-01-20', '', '', '', '', '', '', NULL, '', NULL, 'morlows2@wowway.com', NULL, NULL, true, NULL, NULL, '', '2010-01-20', '2010-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (66, '2003-08-08', 'Stuart', 'Beckwith', '', 'West Bloomfield', 'MI', '48322', NULL, '', NULL, 'imgcptreps@aol.com', NULL, NULL, true, NULL, NULL, '', '2003-08-08', '2003-08-08', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (69, '2003-08-08', 'Tim', 'Belanger', '', 'South Lyon', 'MI', '48178', NULL, '', NULL, 'supib@aol.com', NULL, NULL, true, NULL, NULL, '', '2003-08-08', '2003-08-08', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (70, '2003-08-08', 'Frances', 'Bell', '', 'Orchard Lake', 'MI', '48324', NULL, '', NULL, 'jfarbell@aol.com', NULL, NULL, true, NULL, NULL, '', '2003-08-08', '2003-08-08', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (71, '2003-08-08', 'Robert and Christie', 'Benson', '', 'Flint', 'MI', '48532', NULL, '', NULL, 'chrisheide@aol.com', NULL, NULL, true, NULL, NULL, '', '2003-08-08', '2003-08-08', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9289, '2009-11-23', 'Topher', 'DePoy', '', '', '', '', NULL, '', NULL, 'depoych@hotmail.com', NULL, NULL, true, 9, NULL, '', NULL, NULL, '$1,050 for 3 nights in a 2 bed/1bath?  Are you kidding?  My wife and I were regular guests every year until approx. 5 years ago and the same stay would have been $450.00.  Love the surroundings, but can''t validate that cost with 2 kids at private colleges.', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7862, '2009-02-07', 'Charles', 'Gerwin', '', '', '', '', NULL, '', NULL, 'cmgerwin@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-02-07', '2009-02-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (82, '2003-08-10', 'Adam', 'Boushie', '', 'Royal Oak', 'MI', '48067', NULL, '', NULL, 'boushieadam@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2003-08-10', '2003-08-10', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (85, '2003-08-10', 'Laura', 'Boyle', '', 'Troy', 'MI', '48098', NULL, '', NULL, 'coffeewithlaura@aol.com', NULL, NULL, true, NULL, NULL, '', '2003-08-10', '2003-08-10', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (96, '2003-08-10', 'Nancy', 'Burch', '', 'St. Joseph', 'MI', '49085', NULL, '', NULL, 'nancy_burch@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2003-08-10', '2003-08-10', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (97, '2003-08-10', 'Laurie', 'Burgoyne', '', 'Grosse Pte. Park', 'MI', '48230', NULL, '', NULL, 'burgoyne@comcast.net', NULL, NULL, true, NULL, NULL, '', '2003-08-10', '2003-08-10', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (134, '2003-08-13', 'Sharon', 'Cox', '', 'Pinckney', 'MI', '48169', NULL, '', NULL, 'coxfam@chartermi.net', NULL, NULL, true, 9, NULL, '', '2003-08-13', '2003-08-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (112, '2003-08-13', 'Craig', 'Cabble', '', 'Auburn Hills', 'MI', '48326', NULL, '', NULL, 'craigcabble@comcast.net', NULL, NULL, true, NULL, NULL, '', '2003-08-13', '2003-08-13', 'Zoo-de-Mack', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (114, '2003-08-13', 'Liz', 'Careathers', '', 'Detroit', 'MI', '48223', NULL, '', NULL, 'elizabeth.careathers@detroitdiesel.com', NULL, NULL, true, 9, NULL, '', '2003-08-13', '2003-08-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (117, '2003-08-13', 'Janet', 'Carpenter', '', 'Brighton', 'MI', '48114', NULL, '', NULL, 'rajcarpenter@msn.com', NULL, NULL, true, 9, NULL, '', '2003-08-13', '2003-08-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (120, '2003-08-13', 'Kim', 'Chaney', '', 'Bryan', 'OH', '43506', NULL, '', NULL, 'cchaney@cityofbryan.net', NULL, NULL, true, 9, NULL, '', '2003-08-13', '2003-08-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (127, '2003-08-13', 'Jamie', 'Close', '', 'Marquette', 'MI', '49855', NULL, '', NULL, 'jclose8@hotmail.com', NULL, NULL, true, 9, NULL, '', '2003-08-13', '2003-08-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (128, '2003-08-13', 'Julie', 'Cohout', '', 'Napoleon', 'OH', '43545', NULL, '', NULL, 'jak2@bright.net', NULL, NULL, true, 9, NULL, '', '2003-08-13', '2003-08-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (129, '2003-08-13', 'Joanne', 'Cole', '', 'New Boston', 'MI', '48164', NULL, '', NULL, 'larry45@chartermi.net', NULL, NULL, true, 9, NULL, '', '2003-08-13', '2003-08-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (130, '2003-08-13', 'Thomas', 'Constand', '', 'Troy', 'MI', '48098', NULL, '', NULL, 'tconstand@comcast.net', NULL, NULL, true, 9, NULL, '', '2003-08-13', '2003-08-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (131, '2003-08-13', 'Gerry', 'Couglin', '', 'Windsor', 'Ontario', 'N9E 1W7', NULL, '', NULL, 'coggs@sympatico.ca', NULL, NULL, true, 9, NULL, '', '2003-08-13', '2003-08-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7992, '2009-04-24', 'Jane', 'Steele', '', '', '', '', NULL, '', NULL, 'jesteele1@charter.net', NULL, NULL, true, NULL, NULL, '', '2009-04-24', '2009-04-24', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (105, '2003-08-12', 'Karen', 'de Loys', '345 Dickens Street', 'Northfield', 'IL', '60093', NULL, '847-441-5433', NULL, 'kdeloys@comcast.net', NULL, NULL, true, 7, 0, '', '2003-12-26', '2003-12-30', '', ':2:10:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7159, '2008-09-22', 'Deborah', 'Otenbaker', '', '', '', '', NULL, '', NULL, '5oats@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (136, '2003-08-13', 'Thomas ', 'Creek', '', 'Clinton Township', 'MI', '48038', NULL, '', NULL, 'moosaman@comcast.net', NULL, NULL, true, 2, NULL, '', '2003-08-13', '2003-08-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (149, '2003-08-13', 'Nancy', 'Depaolo', '', 'Riverside', 'IL', '60546', NULL, '', NULL, 'depaolo@uhc.edu', NULL, NULL, false, 6, NULL, '', '2003-08-13', '2003-08-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (141, '2003-08-13', 'Robert', 'Damon', '', 'Lagrange', 'OH', '44050', NULL, '', NULL, 'rjdamon1967@yahoo.com', NULL, NULL, true, 6, NULL, '', '2003-08-13', '2003-08-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (144, '2003-08-13', 'Debbie', 'Deaton', '', 'Rochester Hills', 'MI', '48307', NULL, '', NULL, 'debbiedeaton@wideopenwest.com', NULL, NULL, true, 9, NULL, '', '2003-08-13', '2003-08-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7772, '2009-02-03', 'Scott', 'Martyniak', '', '', '', '', NULL, '', NULL, 'martyniak@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-02-03', '2009-02-03', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (148, '2003-08-13', 'Micheal', 'Dekoning', '', 'Libertyville', 'IL', '60048', NULL, '', NULL, 'mike.dekoning@kingstreetrading.com', NULL, NULL, true, 9, NULL, '', '2003-08-13', '2003-08-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (151, '2003-08-13', 'Daniel', 'Dewindt', '', 'Rhode Island', 'MI', '02842', NULL, '', NULL, 'danieldewindt@ussailing.org', NULL, NULL, true, 4, NULL, '', '2003-08-13', '2003-08-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (152, '2003-08-13', 'Laura', 'Dickerson', '', 'Bloomfield Hills', 'MI', '48302', NULL, '', NULL, 'ldickerson@comcast.net', NULL, NULL, true, 7, NULL, '', '2003-08-13', '2003-08-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (155, '2003-08-13', 'Diane', 'Doran', '', 'Ferndale', 'MI', '48220', NULL, '', NULL, 'dianemdoran@hotmail.com', NULL, NULL, true, 4, NULL, '', '2003-08-13', '2003-08-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7943, '2009-02-25', 'Pam', 'Landes', '', '', '', '', NULL, '', NULL, 'think_again@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-02-25', '2009-02-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (160, '2003-08-13', 'Marcel', 'Durot', '', 'Lincolnshire', 'IL', '60069', NULL, '', NULL, 'marcel@prodigy.net', NULL, NULL, true, 4, NULL, '', '2003-08-13', '2003-08-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (161, '2003-08-13', 'Pam', 'Duvall', '', 'Southfield', 'MI', '48034', NULL, '', NULL, 'pamduvallgifts@aol.com', NULL, NULL, true, NULL, NULL, '', '2003-08-13', '2003-08-13', 'Zoo-de-Mack', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7167, '2008-09-22', 'Barbara', 'Daly', '', '', '', '', NULL, '', NULL, 'barbara.daly@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8066, '2009-05-22', '', '', '', '', '', '', NULL, '', NULL, 'dfthompson3@msn.com', NULL, NULL, true, NULL, NULL, '', '2009-05-22', '2009-05-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (164, '2003-08-13', 'Douglas A.', 'Hasler', '', '', '', '', NULL, '', NULL, 'DKHasler@aol.com', NULL, NULL, false, 6, 5, 'I am interested in knowing if you have vacancies for the dates indicated, as well as the applicable rate.', '2003-10-16', '2003-10-18', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (166, '2003-08-14', 'Micheal', 'Edwartowski', '', 'Rochester', 'MI', '48306', NULL, '', NULL, 'mjeguitar@ameritech.net', NULL, NULL, true, 9, NULL, '', '2003-08-14', '2003-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (170, '2003-08-14', 'Walter', 'Elliot', '', 'Beverly Hills', 'MI', '48025', NULL, '', NULL, 'yordan2@aol.com', NULL, NULL, true, 9, NULL, '', '2003-08-14', '2003-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (173, '2003-08-14', 'Gail', 'Esker', '', 'Commerce Twp.', 'MI', '48382', NULL, '', NULL, 'geesker@hotmail.com', NULL, NULL, true, 9, NULL, '', '2003-08-14', '2003-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (178, '2003-08-14', 'Maura', 'Feaheny', '', 'Chicago', 'IL', '60646', NULL, '', NULL, 'mmfeahen@earthlink.net', NULL, NULL, true, 2, NULL, '', '2003-08-14', '2003-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8158, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'dmthom@kalcounty.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7863, '2009-02-07', 'Colleen', 'Stertz', '', '', '', '', NULL, '', NULL, 'colleen6236@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-02-07', '2009-02-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (185, '2003-08-16', 'Donald', 'Ford', '', 'Kalamazoo', 'MI', '49048', NULL, '', NULL, 'centralc@earthlink.net', NULL, NULL, true, 7, NULL, '', '2003-08-16', '2003-08-16', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8894, '2009-10-26', 'Nancy ', 'Partridge', '', '', '', '', NULL, '', NULL, 'nancylpartridge@aol.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-26', '2009-10-26', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7993, '2009-04-24', 'Lynne', 'Lesky ', '', '', '', '', NULL, '', NULL, 'l.c.k.lesky@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-04-24', '2009-04-24', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7944, '2009-02-25', 'Elizabeth', 'Vasher', '', '', '', '', NULL, '', NULL, 'lizvasher@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-02-25', '2009-02-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (205, '2003-08-17', 'Carol', 'Gibbon', '', 'Bay City', 'MI', '48706', NULL, '', NULL, 'thisgirls@chartermi.net', NULL, NULL, true, 0, NULL, '', '2003-08-17', '2003-08-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (206, '2003-08-17', 'Richard', 'Gibbs', '', 'Warren', 'MI', '48089', NULL, '', NULL, 'sales@gibbsmachinery.com', NULL, NULL, true, 7, NULL, '', '2003-08-17', '2003-08-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (218, '2003-08-17', 'Scott', 'Goss', '', 'Clarkston', 'MI', '48346', NULL, '', NULL, 'sgoss@judge.com', NULL, NULL, true, 9, NULL, '', '2003-08-17', '2003-08-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (219, '2003-08-17', 'Dean', 'Gould', '', 'Farmington Hills', 'MI', '48331', NULL, '', NULL, 'dean219@aol.com', NULL, NULL, true, 9, NULL, '', '2003-08-17', '2003-08-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (221, '2003-08-17', 'Phil', 'Grammatico', '', 'Livonia', 'MI', '48154', NULL, '', NULL, 'pgrammatico@earthlink.net', NULL, NULL, true, 8, NULL, '', '2003-08-17', '2003-08-17', 'Trout Creek Sign', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (222, '2003-08-17', 'Mary', 'Granger', '', 'Washington ', 'DC', '20003', NULL, '', NULL, 'granger@gwu.edu', NULL, NULL, true, 6, NULL, '', '2003-08-17', '2003-08-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (223, '2003-08-17', 'Kathleen', 'Greenleaf', '', 'Chelsea', 'MI', '48118', NULL, '', NULL, 'kgree0429@aol.com', NULL, NULL, true, 8, NULL, '', '2003-08-17', '2003-08-17', 'Boyne', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (225, '2003-08-17', 'Sally', 'Grumbine', '', 'St. Joseph', 'MI', '49085', NULL, '', NULL, 'grumbine@sbcglobal.net', NULL, NULL, true, 9, NULL, '', '2003-08-17', '2003-08-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (227, '2003-08-17', 'Roger', 'Gumz', '', 'Rochester Hills', 'MI', '48309', NULL, '', NULL, 'rgwgo@comcast.net', NULL, NULL, true, 8, NULL, '', '2003-08-17', '2003-08-17', 'Trout Creek Sign', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (228, '2003-08-17', 'Aimee', 'Guthat', '', 'Grosse Pte. Farms', 'MI', '48236', NULL, '', NULL, 'aguthat@fragomen.com', NULL, NULL, true, 4, NULL, '', '2003-08-17', '2003-08-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (229, '2003-08-17', 'Jennifer', 'Hamlin', '', 'Holland', 'MI', '49423', NULL, '', NULL, 'jhamlin@zeeland.k12.mi.us', NULL, NULL, true, 8, NULL, '', '2003-08-17', '2003-08-17', 'Zoo-de-Mack', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8067, '2009-05-22', 'M', 'Sherbow', '', '', '', '', NULL, '', NULL, 'sherbowm@co.oakland.mi.us', NULL, NULL, true, NULL, NULL, '', '2009-05-22', '2009-05-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8366, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'pfurrugia@twmi.rr.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8418, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'shaaron.hogan@sorin-na.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (239, '2003-08-17', 'Micheal', 'Henk', '', 'Fenton', 'MI', '48430', NULL, '', NULL, 'henksailor@aol.com', NULL, NULL, true, 9, NULL, '', '2003-08-17', '2003-08-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (240, '2003-08-17', 'Larry ', 'Henney', '', 'Livonia', 'MI', '48154', NULL, '', NULL, 'lhenney@twmi.rr.com', NULL, NULL, true, 9, NULL, '', '2003-08-17', '2003-08-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (261, '2003-08-18', 'Paul', 'Jacques', '', 'Rochester', 'MI', '48306', NULL, '', NULL, 'pjpj15@aol.com', NULL, NULL, true, 4, NULL, '', '2003-08-18', '2003-08-18', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (242, '2003-08-17', 'Tony', 'Herman', '', 'Topton', 'IN', '46702', NULL, '', NULL, 'tony.herman@pioneer.com', NULL, NULL, true, 9, NULL, '', '2003-08-17', '2003-08-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (246, '2003-08-17', 'Leslie', 'Hill', '', 'Fraser', 'MI', '48026', NULL, '', NULL, 'rlhill@wideopenwest.com', NULL, NULL, true, 6, NULL, '', '2003-08-17', '2003-08-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (249, '2003-08-17', 'Thomas', 'Hitch', '', 'East Lansing', 'MI', '48823', NULL, '', NULL, 'tmhitch@aol.com', NULL, NULL, true, 9, NULL, '', '2003-08-17', '2003-08-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (251, '2003-08-17', 'Thomas', 'Hollander', '', 'Ann Arbor', 'MI', '48104', NULL, '', NULL, 'hollanders@earthlink.net', NULL, NULL, true, 5, NULL, '', '2003-08-17', '2003-08-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (253, '2003-08-17', 'Matthew', 'Hopkins', '', 'Chesterfield', 'MI', '48047', NULL, '', NULL, 'hopkinsf16@aol.com', NULL, NULL, true, 6, NULL, '', '2003-08-17', '2003-08-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (254, '2003-08-17', 'Robert ', 'Horner', '', 'Dexter', 'MI', '48130', NULL, '', NULL, 'bob.horner@softhome.net', NULL, NULL, true, 4, NULL, '', '2003-08-17', '2003-08-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8461, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'thechallas@mac.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (264, '2003-08-18', 'Michelle', 'Jefferson', '', 'Dewitt', 'MI', '48820', NULL, '', NULL, 'mrjusa@aol.com', NULL, NULL, true, 4, NULL, '', '2003-08-18', '2003-08-18', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (265, '2003-08-18', 'Micheal and Karen', 'Jones', '', 'Farmington Hills', 'MI', '48331', NULL, '', NULL, 'karenmikejones@aol.com', NULL, NULL, true, 9, NULL, '', '2003-08-18', '2003-08-18', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (268, '2003-08-18', 'Andrea', 'Kahn', '', 'Bloomfield Hills', 'MI', '48301', NULL, '', NULL, 'lillykahn@aol.com', NULL, NULL, true, 9, NULL, '', '2003-08-18', '2003-08-18', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (271, '2003-08-18', 'Dennis', 'Kavanagh', '', 'Bloomfield Hills', 'MI', '48304', NULL, '', NULL, 'thekavanaghs@yahoo.com', NULL, NULL, true, 4, NULL, '', '2003-08-18', '2003-08-18', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8496, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'wkushler@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (273, '2003-08-18', 'Jim', 'Kelly', '', 'Auburn Hills', 'MI', '48326', NULL, '', NULL, 'james.a.kelly@gm.com', NULL, NULL, true, 9, NULL, '', '2003-08-18', '2003-08-18', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (274, '2003-08-18', 'Janet', 'Kemink', '', 'Ann Arbor', 'MI', '48105', NULL, '', NULL, 'jamk114@aol.com', NULL, NULL, true, 4, NULL, '', '2003-08-18', '2003-08-18', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (278, '2003-08-18', 'Debbie', 'Kinney', '', 'Ada', 'MI', '49301', NULL, '', NULL, 'Ddawnkin@aol.com', NULL, NULL, true, 4, NULL, '', '2003-08-18', '2003-08-18', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (283, '2003-08-18', 'David and Ann', 'Knooihuizen', '', 'East Grand Rapids', 'MI', '49506', NULL, '', NULL, 'dknooihuizen@finsvcs.com', NULL, NULL, true, 4, NULL, '', '2003-08-18', '2003-08-18', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5853, '2007-07-09', 'St. Johns Group', '', '', '', '', '', NULL, '', NULL, 'w.dowling@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', ':11:15:23:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8605, '2009-07-17', 'Adam', 'Walsh', '', '', '', '', NULL, '', NULL, 'acwalsh1@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (334, '2003-08-19', 'Suzanne', 'Mantey', '', 'Ann Arbor', 'MI', '48108', NULL, '', NULL, 'smantey@ford.com', NULL, NULL, false, 4, NULL, '', '2003-08-19', '2003-08-19', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (285, '2003-08-18', 'Craig', 'Koch', '', 'Shelby Twp.', 'MI', '48315', NULL, '', NULL, 'KochCraigMI@aol.com', NULL, NULL, true, 9, NULL, '', '2003-08-18', '2003-08-18', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (290, '2003-08-18', 'Melissa', 'Kovaleski', '', 'Royal Oak', 'MI', '48067', NULL, '', NULL, 'mkavaleski@meemic.com', NULL, NULL, true, 6, NULL, '', '2003-08-18', '2003-08-18', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (295, '2003-08-18', 'Mark', 'Kuhn', '', 'West Bloomfield', 'MI', '48323', NULL, '', NULL, 'mark911@aol.com', NULL, NULL, true, 9, NULL, '', '2003-08-18', '2003-08-18', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (301, '2003-08-19', 'Eric and Kristen', 'Lajoie', '', 'Sandusky', 'MI', '48471', NULL, '', NULL, 'snuggy1967@yahoo.com', NULL, NULL, true, 6, NULL, '', '2003-08-19', '2003-08-19', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (302, '2003-08-19', 'Ray', 'LaMarche', '', 'Escanaba', 'MI', '49829', NULL, '', NULL, 'rlcpa@hotmail.com', NULL, NULL, true, 4, NULL, '', '2003-08-19', '2003-08-19', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (306, '2003-08-19', 'Donna', 'Larson', '', 'Laporte', 'IN', '46350', NULL, '', NULL, 'tdlarson@comcast.net', NULL, NULL, true, 4, NULL, '', '2003-08-19', '2003-08-19', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (307, '2003-08-19', 'Dorothy', 'Latchana', '', 'Linden', 'MI', '48451', NULL, '', NULL, 'dorothylatchana@yahoo.com', NULL, NULL, true, 6, NULL, '', '2003-08-19', '2003-08-19', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (318, '2003-08-19', 'Robert', 'Line', '', 'Clarkston', 'MI', '48348', NULL, '', NULL, 'robbarb@aol.com', NULL, NULL, true, 9, NULL, '', '2003-08-19', '2003-08-19', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (321, '2003-08-19', 'Mary', 'Long', '', 'Shelby Twp.', 'MI', '48316', NULL, '', NULL, 'mldl@wideopenwest.com', NULL, NULL, true, 8, NULL, '', '2003-08-19', '2003-08-19', 'Michigan Vacation Guide', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (323, '2003-08-19', 'Nick', 'Love', '', 'Traverse City', 'MI', '49686', NULL, '', NULL, 'loveshawb@netscape.net', NULL, NULL, true, 9, NULL, '', '2003-08-19', '2003-08-19', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (326, '2003-08-19', 'Arden ', 'Lundin', '', 'Bellmont', 'MI', '49306', NULL, '', NULL, 'ardie_lundin@spartanstores.com', NULL, NULL, true, 6, NULL, '', '2003-08-19', '2003-08-19', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (384, '2003-08-19', 'Jenny', 'Ogline', '', 'Walled Lake', 'MI', '48390', NULL, '', NULL, 'fojo63@att.net', NULL, NULL, true, 6, NULL, '', '2003-08-19', '2003-08-19', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (333, '2003-08-19', 'Lee', 'Manduzzi', '', 'Troy', 'MI', '48098', NULL, '', NULL, 'drw919@comcast.net', NULL, NULL, true, 9, NULL, '', '2003-08-19', '2003-08-19', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (335, '2003-08-19', 'Elaine', 'Margolis', '', 'Ypsilanti', 'MI', '48918', NULL, '', NULL, 'midler2@aol.com', NULL, NULL, true, 9, NULL, '', '2003-08-19', '2003-08-19', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (336, '2003-08-19', 'Anne', 'Markkula', '', 'Sault Ste. Marie ', 'Ontario', 'P6A 4L7', NULL, '', NULL, 'amarkkula@sault.ymca.ca', NULL, NULL, true, 4, NULL, '', '2003-08-19', '2003-08-19', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (339, '2003-08-19', 'Robert', 'Massey', '', 'Chicago', 'IL', '60620', NULL, '', NULL, 'snowmassey@aol.com', NULL, NULL, true, 4, NULL, '', '2003-08-19', '2003-08-19', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (349, '2003-08-19', 'James', 'Mclellan', '', 'Clarkston', 'MI', '48348', NULL, '', NULL, 'jwmclellan@comcast.net', NULL, NULL, true, 4, NULL, '', '2003-08-19', '2003-08-19', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (355, '2003-08-19', 'Gary ', 'Miller', '', 'Jenison', 'MI', '49428', NULL, '', NULL, 'millmed@iserv.net', NULL, NULL, true, 6, NULL, '', '2003-08-19', '2003-08-19', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (356, '2003-08-19', 'Natalia', 'Milz', '', 'Brighton', 'MI', '48116', NULL, '', NULL, 'nnsmirnova@yahoo.com', NULL, NULL, true, 4, NULL, '', '2003-08-19', '2003-08-19', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (358, '2003-08-19', 'Donald', 'Mitzel', '', 'Northville', 'MI', '48167', NULL, '', NULL, 'don@graphicolor.com', NULL, NULL, true, 9, NULL, '', '2003-08-19', '2003-08-19', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (359, '2003-08-19', 'Erich', 'Molitor', '', 'Midland', 'MI', '48640', NULL, '', NULL, 'erichmolitor@yahoo.com', NULL, NULL, true, 6, NULL, '', '2003-08-19', '2003-08-19', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (378, '2003-08-19', 'Beth ', 'Nowak', '', 'Ferndale', 'MI', '48220', NULL, '', NULL, 'beth.nowak@bbdodetroit.com', NULL, NULL, true, 9, NULL, '', '2003-08-19', '2003-08-19', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (369, '2003-08-19', 'Ernie', 'Neumayr', '', 'Macomb', 'MI', '48044', NULL, '', NULL, 'ernie.g.neumayr@us.abb.com', NULL, NULL, true, 9, NULL, '', '2003-08-19', '2003-08-19', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (370, '2003-08-19', 'James', 'Newberry', '', 'Edwardsburg', 'MI', '49112', NULL, '', NULL, 'jnewb2148@aol.com', NULL, NULL, true, 6, NULL, '', '2003-08-19', '2003-08-19', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7774, '2009-02-03', 'Matthew ', 'Holt', '', '', '', '', NULL, '', NULL, 'mattholt1980@yahoo.com ', NULL, NULL, true, NULL, NULL, '', '2009-02-03', '2009-02-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (376, '2003-08-19', 'Tim', 'Noble', '', 'Ida', 'MI', '48140', NULL, '', NULL, 'catcn40@aol.com', NULL, NULL, true, 4, NULL, '', '2003-08-19', '2003-08-19', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (377, '2003-08-19', 'Kathy', 'Norris', '', 'Pinkney', 'MI', '48169', NULL, '', NULL, 'cnorris@intra-corp.net', NULL, NULL, true, 4, NULL, '', '2003-08-19', '2003-08-19', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (383, '2003-08-19', 'Tom and Margie', 'Ogden', '', 'Grosse Pte. Farm', 'MI', '48236', NULL, '', NULL, 'tdogden@comerica.com', NULL, NULL, true, 4, NULL, '', '2003-08-19', '2003-08-19', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (405, '2003-08-20', 'Gerald', 'Pickett', '', 'Detroit', 'MI', '48223', NULL, '', NULL, 'gpicket1@ford.com', NULL, NULL, false, 4, NULL, '', '2003-08-20', '2003-08-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (388, '2003-08-19', 'Mitch', 'Oncea', '', 'Windsor', 'Ontario', 'N8S 3M2', NULL, '', NULL, 'moncea@cogeco.ca', NULL, NULL, true, 4, NULL, '', '2003-08-19', '2003-08-19', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (396, '2003-08-20', 'Alicia', 'Pearlman', '', 'West Bloomfield', 'MI', '48324', NULL, '', NULL, 'bpearl8411@aol.com', NULL, NULL, true, 9, NULL, '', '2003-08-20', '2003-08-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (397, '2003-08-20', 'Christina', 'Perros', '', 'Ann Arbor', 'MI', '48103', NULL, '', NULL, 'cperros@comcast.net', NULL, NULL, true, 4, NULL, '', '2003-08-20', '2003-08-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (400, '2003-08-20', 'Nancy', 'Peters', '', 'Sault Ste Marie', 'Ontario', 'P6A 6A5', NULL, '', NULL, 'nancybert@shaw.ca', NULL, NULL, true, 9, NULL, '', '2003-08-20', '2003-08-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (402, '2003-08-20', 'Nina', 'Picco', '', 'Sault Ste. Marie', 'Ontario', 'P6B 5N3', NULL, '', NULL, 'ninapicco@hotmail.com', NULL, NULL, true, 9, NULL, '', '2003-08-20', '2003-08-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (403, '2003-08-20', 'Angela', 'Pickens', '', 'Bloomfield Hills', 'MI', '48304', NULL, '', NULL, 'apickens@comcast.net', NULL, NULL, true, 4, NULL, '', '2003-08-20', '2003-08-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (413, '2003-08-20', 'Lori', 'Price', '', 'Carmel', 'IN', '46033', NULL, '', NULL, 'pricel@firestoneindustrial.com', NULL, NULL, true, 9, NULL, '', '2003-08-20', '2003-08-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (415, '2003-08-20', 'Rudy', 'Pulido', '', 'Holt', 'MI', '48842', NULL, '', NULL, 'jpulido@mimillers.com', NULL, NULL, true, 4, NULL, '', '2003-08-20', '2003-08-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (426, '2003-08-20', 'Kevin', 'Rice', '', 'Fraser', 'MI', '48026', NULL, '', NULL, 'kevin_a_rice@msn.com', NULL, NULL, true, 4, NULL, '', '2003-08-20', '2003-08-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (427, '2003-08-20', 'Dave', 'Rich', '', 'Grand Rapids', 'MI', '49504', NULL, '', NULL, 'spank_79@hotmail.com', NULL, NULL, true, 4, NULL, '', '2003-08-20', '2003-08-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (430, '2003-08-20', 'Cherie and Thomas', 'Ritter', '', 'Bloomfield Hills', 'MI', '48302', NULL, '', NULL, 'tcritter@msn.com', NULL, NULL, true, 9, NULL, '', '2003-08-20', '2003-08-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (431, '2003-08-20', 'Shelly', 'Robertson', '', 'Bloomfield Hills', 'MI', '48301', NULL, '', NULL, 'robertsonedshell@aol.com', NULL, NULL, true, 9, NULL, '', '2003-08-20', '2003-08-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (433, '2003-08-20', 'Carrie', 'Roeder', '', 'Ferndale', 'MI', '48220', NULL, '', NULL, 'carrieroeder@yahoo.com', NULL, NULL, true, 9, NULL, '', '2003-08-20', '2003-08-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (434, '2003-08-20', 'Jennifer', 'Rose', '', 'Redford', 'MI', '48239', NULL, '', NULL, 'jennrose85@hotmail.com', NULL, NULL, true, 4, NULL, '', '2003-08-20', '2003-08-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8305, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'lesky.lk.t@petoskeyschools.org', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (435, '2003-08-20', 'Douglas', 'Roselle', '', 'Chattanooga', 'TN', '37411', NULL, '', NULL, 'roselld@mindspring.com', NULL, NULL, true, 9, NULL, '', '2003-08-20', '2003-08-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (436, '2003-08-20', 'Sheryl', 'Roth', '', 'Grand Blanc', 'MI', '48439', NULL, '', NULL, 'rarssr@aol.com', NULL, NULL, true, 4, NULL, '', '2003-08-20', '2003-08-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (441, '2003-08-20', 'Louise', 'Salciccioli', '', 'Commerce Twp.', 'MI', '48382', NULL, '', NULL, 'dsalcicc@ford.com', NULL, NULL, false, 9, NULL, '', '2003-08-20', '2003-08-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (438, '2003-08-20', 'Dr. Robert', 'Rubin', '', 'Bloomfield Hills', 'MI', '48301', NULL, '', NULL, 'lrubin1217@aol.com', NULL, NULL, true, 9, NULL, '', '2003-08-20', '2003-08-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (456, '2003-08-21', 'Michelle', 'Short', '', 'Sterling Heights', 'MI', '48312', NULL, '', NULL, 'mshort34@comcast.net', NULL, NULL, true, 9, NULL, '', '2003-08-21', '2003-08-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (457, '2003-08-21', 'William', 'Shroeger', '', 'Northville', 'MI', '48167', NULL, '', NULL, 'wshroeger@aol.com', NULL, NULL, true, 6, NULL, '', '2003-08-21', '2003-08-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (458, '2003-08-21', 'Dave', 'Sias', '', 'South Lyon', 'MI', '48178', NULL, '', NULL, 'davesias@aol.com', NULL, NULL, true, 9, NULL, '', '2003-08-21', '2003-08-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (460, '2003-08-21', 'Maryanne and Ted', 'Simon', '', 'Bloomfield Hills', 'MI', '48302', NULL, '', NULL, 'tjsgoblue@aol.com', NULL, NULL, true, 0, NULL, '', '2003-08-21', '2003-08-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (452, '2003-08-21', 'Cynthia', 'Schoenfeldt', '', 'Grand Rapids', 'MI', '49546', NULL, '', NULL, 'schoen14@comcast.net', NULL, NULL, true, 6, NULL, '', '2003-08-21', '2003-08-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8159, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'donna@raylfamily.net', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (465, '2003-08-21', 'Leon', 'Smit', '', 'Battle Creek', 'MI', '49017', NULL, '', NULL, 'leon@oribisystems.com', NULL, NULL, true, 4, NULL, '', '2003-08-21', '2003-08-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (470, '2003-08-21', 'Jasen', 'Snelling', '', 'Cincinnati', 'OH', '45255', NULL, '', NULL, 'ctyfnd1@fuse.net', NULL, NULL, true, 9, NULL, '', '2003-08-21', '2003-08-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (472, '2003-08-21', 'Karen', 'Soderholm', '', 'Glen Arbor', 'MI', '49636', NULL, '', NULL, 'karen@lindylazar.com', NULL, NULL, true, 7, NULL, '', '2003-08-21', '2003-08-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (478, '2003-08-21', 'Sheri', 'Stav', '', 'West Bloomfield', 'MI', '48323', NULL, '', NULL, 'stav5@aol.com', NULL, NULL, true, 4, NULL, '', '2003-08-21', '2003-08-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8733, '2009-09-11', 'tom', '', '', '', '', '', NULL, '', NULL, 'twilcor@gmail.com', NULL, NULL, true, 7, NULL, 'looking at purchase opportunities, but do not see that section on the web site.', NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (481, '2003-08-21', 'Brenda', 'Stewart', '', 'Detroit', 'MI', '48203', NULL, '', NULL, 'iambookie@aol.com', NULL, NULL, true, 6, NULL, '', '2003-08-21', '2003-08-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (484, '2003-08-21', 'Joy', 'Strawser', '', 'Ypsilanti', 'MI', '48198', NULL, '', NULL, 'joystrawser@hotmail.com', NULL, NULL, true, 6, NULL, '', '2003-08-21', '2003-08-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (486, '2003-08-21', 'Ron and Nellie', 'Stronks', '', 'Chatham', 'Ontario', 'N7M 5J3', NULL, '', NULL, 'stronks@ciaccess.com', NULL, NULL, true, 4, NULL, '', '2003-08-21', '2003-08-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (555, '2003-08-21', 'John', 'Hendershot', '', 'Howell', 'MI', '48855', NULL, '', NULL, 'johender@ameritech.net', NULL, NULL, true, 7, NULL, '', '2003-08-21', '2003-08-21', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (492, '2003-08-21', 'Alez', 'Swaneck', '', 'Royal Oak', 'MI', '48073', NULL, '', NULL, 'aswaneck@yahoo.com', NULL, NULL, true, 9, NULL, '', '2003-08-21', '2003-08-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (496, '2003-08-21', 'Sue', 'Taomino', '', 'Clarkston', 'MI', '48348', NULL, '', NULL, 'susantaormino@aol.com', NULL, NULL, true, 2, NULL, '', '2003-08-21', '2003-08-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (499, '2003-08-21', 'Marguerite', 'Thomas', '', 'Albuquerque', 'NM', '87122', NULL, '', NULL, 'margueritejt@hotmail.com', NULL, NULL, true, 6, NULL, '', '2003-08-21', '2003-08-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7775, '2009-02-03', 'Maura', 'Topper', '', '', '', '', NULL, '', NULL, 'mauratoppe@wowway.com', NULL, NULL, true, NULL, NULL, '', '2009-02-03', '2009-02-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7864, '2009-02-07', 'Collette', 'Spring', '', '', '', '', NULL, '', NULL, 'cr_spring@msn.com', NULL, NULL, true, NULL, NULL, '', '2009-02-07', '2009-02-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (506, '2003-08-21', 'Pam', 'Vanderlip', '', 'Davison', 'MI', '48423', NULL, '', NULL, 'pamvlip@msn.com', NULL, NULL, true, 7, NULL, '', '2003-08-21', '2003-08-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (509, '2003-08-21', 'Nancy', 'VanNoord', '', 'Lowell', 'MI', '49331', NULL, '', NULL, 'nancy@vannoord.net', NULL, NULL, true, 9, NULL, '', '2003-08-21', '2003-08-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (510, '2003-08-21', 'Rebecca', 'Vanwalleghem', '', 'Grosse Pte. Farms', 'MI', '48236', NULL, '', NULL, 'rebvan100@aol.com', NULL, NULL, true, 9, NULL, '', '2003-08-21', '2003-08-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (512, '2003-08-21', 'Mary Anne', 'Veneri', '', 'Grosse Pte. Woods', 'MI', '48236', NULL, '', NULL, 'mveneri@comcast.net', NULL, NULL, true, 9, NULL, '', '2003-08-21', '2003-08-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8245, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'jjp59691@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (516, '2003-08-21', 'Anne', 'Villani', '', 'Grosse Pte. Woods', 'MI', '48236', NULL, '', NULL, 'annevillani@aol.com', NULL, NULL, true, 9, NULL, '', '2003-08-21', '2003-08-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (553, '2003-08-21', 'Dudley', 'Bush', '', 'Wetherby', '', '', NULL, '', NULL, 'dudleybush@mac.com', NULL, NULL, true, 9, NULL, '', '2003-08-21', '2003-08-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7945, '2009-02-25', 'Bernard', 'Vrijburg', '', '', '', '', NULL, '', NULL, 'berrox@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-02-25', '2009-02-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (521, '2003-08-21', 'Tom', 'Waun', '', 'Grand Blanc', 'MI', '48439', NULL, '', NULL, 'teewaun@aol.com', NULL, NULL, true, 9, NULL, '', '2003-08-21', '2003-08-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (522, '2003-08-21', 'Doug', 'Weber', '', 'Canton', 'MI', '48187', NULL, '', NULL, 'dougweber@wideopenwest.com', NULL, NULL, true, 4, NULL, '', '2003-08-21', '2003-08-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (525, '2003-08-21', 'Philippa', 'Wheeler', '', 'Rochester Hills', 'MI', '48309', NULL, '', NULL, 'd_wheeler_2000@yahoo.com', NULL, NULL, true, 4, NULL, '', '2003-08-21', '2003-08-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (528, '2003-08-21', 'Sheri', 'White', '', 'Dryden', 'MI', '48428', NULL, '', NULL, 'slewis6842@aol.com', NULL, NULL, true, 6, NULL, '', '2003-08-21', '2003-08-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (533, '2003-08-21', 'Richard', 'Williams', '', 'Winchester', 'IN', '47394', NULL, '', NULL, 'marpaw10@aol.com', NULL, NULL, true, 4, NULL, '', '2003-08-21', '2003-08-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (540, '2003-08-21', 'Kent', 'Wise', '', 'Temperance', 'MI', '48182', NULL, '', NULL, 'kent.wise@sun.com', NULL, NULL, true, 6, NULL, '', '2003-08-21', '2003-08-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (542, '2003-08-21', 'Lorrie', 'Wolowich', '', 'Sault Ste. Marie', 'Ontario', 'P64 645', NULL, '', NULL, 'lwolowich@shaw.ca', NULL, NULL, true, 2, NULL, '', '2003-08-21', '2003-08-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7994, '2009-04-24', 'Andrea ', 'McNamara', '', '', '', '', NULL, '', NULL, 'andrearae2006@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-04-24', '2009-04-24', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (546, '2003-08-21', 'Lynette', 'Wurstner', '', 'Waterford', 'MI', '48328', NULL, '', NULL, 'lwurstner@brownrigg.com', NULL, NULL, true, 4, NULL, '', '2003-08-21', '2003-08-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (548, '2003-08-21', 'Louis', 'Zasuwa', '', 'New Hudson', 'MI', '48165', NULL, '', NULL, 'lzasuwa@comcast.net', NULL, NULL, true, 9, NULL, '', '2003-08-21', '2003-08-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8306, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'leslie_stoner@kellyservices.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (556, '2003-08-21', 'Judy', 'Kohn', '', 'Adrian', 'MI', '49221', NULL, '', NULL, 'jkohn@tc3net.com', NULL, NULL, true, 9, NULL, '', '2003-08-21', '2003-08-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (559, '2003-08-21', 'Tim', 'Missler', '', 'Elida', 'OH', '45807', NULL, '', NULL, 'timmissler@yahoo.com', NULL, NULL, true, 8, NULL, '', '2003-08-21', '2003-08-21', 'Guest of Owner', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8367, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'pnprpket@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8419, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'shanemac_444@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8462, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'the-deters@excite.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8497, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'wmaryelle@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (561, '2003-08-21', 'Eric', 'Rood', '', 'Charlotte', 'NC', '28209', NULL, '', NULL, 'rooderic@hotmail.com', NULL, NULL, true, 4, NULL, '', '2003-08-21', '2003-08-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (562, '2003-08-21', 'Lynn and Ronald ', 'Rycus', '', 'East Lansing', 'MI', '48823', NULL, '', NULL, 'lkr9647@aol.com', NULL, NULL, true, 4, NULL, '', '2003-08-21', '2003-08-21', 'f', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (468, '2003-08-21', 'Walter', 'Smith', '', 'Northville', 'MI', '48167', NULL, '', NULL, 'jolinewalt@comcast.net', NULL, NULL, true, 9, NULL, '', '2003-08-21', '2003-08-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (591, '2003-09-19', 'juan', 'zapata', '28811 w. king william dr', 'farmington hills', 'mi', '48331', NULL, '248-489-1293', NULL, 'zapataj@michigan.gov', NULL, NULL, true, 6, 4, '', '2003-10-17', '2003-10-18', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (595, '2003-09-21', 'Marilyn', 'MacKool', '5269 Navajo Tr', 'Pinckney', 'Mi', '48169', NULL, '810-231-3089', NULL, 'm_mackool@yahoo.com', NULL, NULL, true, 6, 0, '', '2003-10-10', '2003-10-12', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (601, '2003-09-22', 'Wendy', 'Kilwabi', '', '', '', '', NULL, '', NULL, 'cilver33@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2003-09-22', '2003-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (153, '2003-08-13', 'Paul', 'Doherty', 'Grosse Pointe', 'MI', '48230', '', NULL, '', NULL, 'pdoherty@morris-dohertypc.com', NULL, NULL, true, 9, NULL, '', '2003-08-13', '2003-08-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (618, '2003-09-25', 'Brian', 'Barker', '', '', '', '', NULL, '', NULL, 'brian@flexlite.net', NULL, NULL, true, NULL, NULL, '', '2003-09-25', '2003-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (631, '2003-09-25', 'Elizabeth', 'Enders', '', 'Gross Point', 'MI', '48230', NULL, '3138819474', NULL, 'betsyenders@comcast.net', NULL, NULL, true, NULL, NULL, '', '2003-09-25', '2003-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (646, '2003-09-26', 'Brad', 'Griffin', '', '', '', '', NULL, '', NULL, 'bgriffin@griffinrealtygroup.com', NULL, NULL, true, 9, 3, '', NULL, NULL, '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (637, '2003-09-25', 'Linda', 'Fleming', '', 'Sellersville', 'PA', '18960', NULL, '2152577603', NULL, 'linda_fleming51@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2003-09-25', '2003-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (644, '2003-09-25', 'Micheal', 'Graham', '', 'Bloomifield Hills', 'MI', '48301', NULL, '2486260632', NULL, 'kimmiegraham@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2003-09-25', '2003-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (649, '2003-09-26', 'James', 'Hart', '', 'Farmington Hills', 'MI', '48331', NULL, '', NULL, 'hart3808@sbcglobal.net', NULL, NULL, true, 4, NULL, '', '2003-09-26', '2003-09-26', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (660, '2003-09-26', 'Karen', 'Lemanske', '', 'Grosse Pointe Woods', 'MI', '48236', NULL, '', NULL, 'kaml214@aol.com', NULL, NULL, true, 4, NULL, '', '2003-09-26', '2003-09-26', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (662, '2003-09-26', 'George', 'Liddell', '', 'San Diego', 'CA', '92109', NULL, '', NULL, 'jliddell@san.rr.com', NULL, NULL, true, 4, NULL, '', '2003-09-26', '2003-09-26', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (668, '2003-09-26', 'Lisa and Chris', 'Montague', '', 'Grand Rapids', 'MI', '49845', NULL, '', NULL, 'montaguegr@aol.com', NULL, NULL, true, 9, NULL, '', '2003-09-26', '2003-09-26', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (673, '2003-09-26', 'Jeff', 'Nyquist', '', 'East Lansing', 'MI', '48826', NULL, '', NULL, 'jnyquist@messa.org', NULL, NULL, true, 9, NULL, '', '2003-09-26', '2003-09-26', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (674, '2003-09-26', 'Norman', 'Orr', '', 'Royal Oak', 'MI', '48067', NULL, '', NULL, 'norman.orr@kkue.com', NULL, NULL, true, 4, NULL, '', '2003-09-26', '2003-09-26', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (676, '2003-09-26', 'James', 'Potter', '', 'Caledonia', 'MI', '49316', NULL, '', NULL, 'lpotter@egrps.org', NULL, NULL, true, 9, NULL, '', '2003-09-26', '2003-09-26', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (681, '2003-09-26', 'Jason', 'Schnelker', '', 'Grand Rapids', 'MI', '49503', NULL, '', NULL, 'jasonandwindy@comcast.net', NULL, NULL, true, 9, NULL, '', '2003-09-26', '2003-09-26', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (682, '2003-09-26', 'Alan', 'Schram', '', 'West Bloomfield', 'MI', '48322', NULL, '', NULL, 'footdoc@comcast.net', NULL, NULL, true, 9, NULL, '', '2003-09-26', '2003-09-26', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (687, '2003-09-26', 'Susan', 'Steffe', '', 'East Lansing', 'MI', '48823', NULL, '', NULL, 'ssteffe@yahoo.com', NULL, NULL, true, 9, NULL, '', '2003-09-26', '2003-09-26', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8160, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'downriversmiles@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (759, '2003-10-15', 'Jill & Mike ', 'Rowley', '', 'Washington', 'MI', '48095', NULL, '', NULL, 'mjrowley10@comcast.net', NULL, NULL, true, 4, NULL, '', '2003-10-15', '2003-10-15', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (700, '2003-09-26', 'Sharon', 'Wolak', '', 'Sterling Heights', 'MI', '48312', NULL, '', NULL, 'dsjwolak@wideopenwest.com', NULL, NULL, true, 4, NULL, '', '2003-09-26', '2003-09-26', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (725, '2003-10-14', 'Elena', 'Marin', '', '', '', '', NULL, '', NULL, 'emmarin00@yahoo.com', NULL, NULL, false, 6, 0, 'I am looking to accomodate 8 person (4 couples).', '2003-12-29', '2004-01-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (728, '2003-10-15', 'Colin', 'Bartos', '', '', 'Chesterfield', 'MI', NULL, '48047', NULL, 'cbartos@comcast.net', NULL, NULL, true, 4, NULL, '', '2003-10-15', '2003-10-15', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (758, '2003-10-15', 'Mary', 'Robinson', '', 'South Lyon', 'MI', '48178', NULL, '', NULL, 'mrobinson@dia.org', NULL, NULL, false, 6, NULL, '', '2003-10-15', '2003-10-15', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (733, '2003-10-15', 'Margret', 'Bryant', '', 'Allendale', 'MI', '49401', NULL, '', NULL, 'danbryant2@aol.com', NULL, NULL, true, 9, NULL, '', '2003-10-15', '2003-10-15', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (735, '2003-10-15', 'Jeraldine', 'Dorris', '', 'Marco Island', 'MI', '34145', NULL, '', NULL, 'geridorris@comcast.net', NULL, NULL, true, 9, NULL, '', '2003-10-15', '2003-10-15', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (744, '2003-10-15', 'Karon', 'Jackson', '', 'Bloomfield', 'MI', '48301', NULL, '', NULL, 'karonjack16@comcast.net', NULL, NULL, true, 4, NULL, '', '2003-10-15', '2003-10-15', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (745, '2003-10-15', 'John', 'Klemke', '', 'Glenview', 'IL', '60025', NULL, '', NULL, 'klemke@att.net', NULL, NULL, true, 9, NULL, '', '2003-10-15', '2003-10-15', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (746, '2003-10-15', 'Robert', 'Knust', '', 'Farmington Hills', 'MI', '48331', NULL, '', NULL, 'RJ31L48@aol.com', NULL, NULL, true, 6, NULL, '', '2003-10-15', '2003-10-15', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (747, '2003-10-15', 'Judy', 'Kosick', '', 'St. Joseph', 'MI', '49085', NULL, '', NULL, 'kosick123@msn.com', NULL, NULL, true, 9, NULL, '', '2003-10-15', '2003-10-15', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (748, '2003-10-15', 'Kenneth', 'Kron', '', 'West Bloomfield', 'MI', '48323', NULL, '', NULL, 'skron@comcast.net', NULL, NULL, true, 9, NULL, '', '2003-10-15', '2003-10-15', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (753, '2003-10-15', 'Becky', 'Murray', '', 'Westerville', 'OH', '43082', NULL, '', NULL, 'rbm1006@aol.com', NULL, NULL, true, 9, NULL, '', '2003-10-15', '2003-10-15', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (757, '2003-10-15', 'Ben and Karen', 'Robinson', '', 'Grosse Pte. Farms', 'MI', '48236', NULL, '', NULL, 'kar0312@aol.com', NULL, NULL, true, 9, NULL, '', '2003-10-15', '2003-10-15', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7865, '2009-02-07', 'Daniel', 'Martin', '', '', '', '', NULL, '', NULL, 'craiglush@charter.net', NULL, NULL, true, NULL, NULL, '', '2009-02-07', '2009-02-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (761, '2003-10-15', 'Judy', 'Simcina', '', 'Huntington Woods', 'MI', '48070', NULL, '', NULL, 'jsimcina@aol.com', NULL, NULL, true, 9, NULL, '', '2003-10-15', '2003-10-15', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (763, '2003-10-15', 'Daniel', 'Tosch', '', 'Bloomfield Hills', 'MI', '48302', NULL, '', NULL, 'pai@progressiveassociates.com', NULL, NULL, true, 9, NULL, '', '2003-10-15', '2003-10-15', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (764, '2003-10-15', 'Todd', 'White', '', 'Bloomfield', 'MI', '48301', NULL, '', NULL, 'twhite243115MI@comcast.net', NULL, NULL, true, 9, NULL, '', '2003-10-15', '2003-10-15', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (766, '2003-10-15', 'Paul', 'Wright', '', 'Taylor', 'MI', '48180', NULL, '', NULL, 'wrightm@oakwood.org', NULL, NULL, true, 9, NULL, '', '2003-10-15', '2003-10-15', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (771, '2003-10-16', 'John and Nan', 'Strickler', '', '', '', '', NULL, '', NULL, 'johnandnanstrick@aol.com', NULL, NULL, true, NULL, NULL, '', '2003-10-16', '2003-10-16', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (772, '2003-10-16', 'Jane', 'Sowell', '1110 South Brys Drive', 'Grosse Pointe Woods', 'MI', '48236', NULL, '313-882-7659', NULL, 'jsowell@bsdd.com', NULL, NULL, true, 9, 4, 'As a frequent visitor, can I get a discount?', '2003-12-19', '2003-12-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (774, '2003-10-17', 'Karen', 'Nagher', '', '', '', '', NULL, '', NULL, 'karenanne626@aol.com', NULL, NULL, true, NULL, NULL, '', '2003-10-17', '2003-10-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (776, '2003-10-17', 'Cathy', 'Nagy', '', '', '', '', NULL, '', NULL, 'nagyc@atlastechnologies.com', NULL, NULL, true, NULL, NULL, '', '2003-10-17', '2003-10-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (785, '2003-10-21', 'Shannon', 'Cunningham', '', '', '', '', NULL, '', NULL, 'zmcsmc1@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2003-10-21', '2003-10-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (926, '2003-11-29', 'Linda', 'Duane', '', '', '', '', NULL, '', NULL, 'mlduane@wideopenwest.com', NULL, NULL, true, NULL, NULL, '', '2003-11-29', '2003-11-29', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (793, '2003-10-21', 'Janice', 'Horne', '', '', '', '', NULL, '', NULL, 'jhornemsu@comcast.net', NULL, NULL, true, NULL, NULL, '', '2003-10-21', '2003-10-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (795, '2003-10-21', '', 'Garling', '', '', '', '', NULL, '', NULL, 'telcen@wowway.com', NULL, NULL, true, NULL, NULL, '', '2003-10-21', '2003-10-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (796, '2003-10-21', 'Henry', 'Mistele', '', '', '', '', NULL, '', NULL, 'hmistele@comlawone.com', NULL, NULL, true, NULL, NULL, '', '2003-10-21', '2003-10-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (799, '2003-10-21', 'Angela', 'Carson', '', '', '', '', NULL, '', NULL, 'acarsonpho@aol.com', NULL, NULL, true, NULL, NULL, '', '2003-10-21', '2003-10-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (803, '2003-10-21', 'L.F.', 'Einheuser', '', '', '', '', NULL, '', NULL, 'larryeinheuser@aol.com', NULL, NULL, true, NULL, NULL, '', '2003-10-21', '2003-10-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (804, '2003-10-21', 'Robert', 'Rubin', '', '', '', '', NULL, '', NULL, 'rrubin8045@aol.com', NULL, NULL, true, NULL, NULL, '', '2003-10-21', '2003-10-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (807, '2003-10-21', 'Carl', 'Naghtin', '', '', '', '', NULL, '', NULL, 'mkeeyn@aol.com', NULL, NULL, true, NULL, NULL, '', '2003-10-21', '2003-10-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (808, '2003-10-21', 'Henry ', 'Nickol', '', '', '', '', NULL, '', NULL, 'hanickol@aol.com', NULL, NULL, true, NULL, NULL, '', '2003-10-21', '2003-10-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (809, '2003-10-21', 'Todd', 'Kofler', '', '', '', '', NULL, '', NULL, 'thk30@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2003-10-21', '2003-10-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (813, '2003-10-22', 'Diana Sharer', 'Diana Sharer', '2840 Amberly Rd.b', 'Bloomfield Hills', 'Michigan', '48301', NULL, '248.646.5027', NULL, 'djsharer@comcast.net', NULL, NULL, true, 9, 3, '', '2003-12-26', '2003-12-30', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (817, '2003-10-24', 'Allyn', 'Adrian', '112 North Maple', 'Onsted', 'MI', '49265', NULL, '5174672991', NULL, 'AJJSAdrian@aol.com', NULL, NULL, false, 9, 5, '', '2003-11-28', '2003-11-30', 'Hardwood Solutions/Jeff Hardcastle owns a unit - that''s where we stay at,  as part owners.', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (845, '2003-11-05', 'Paul', 'Joiner', '', '', '', '', NULL, '', NULL, 'pjoiner@ruf.org', NULL, NULL, true, 6, 4, '', '2003-11-24', '2003-11-26', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (873, '2003-11-16', 'Steve', 'Flechsig', '5344 Washakie Tr.', 'Brighton', 'MI', '48116', NULL, '810 227 7984', NULL, 'mackinawad@aol.com', NULL, NULL, true, 9, 0, 'We are interested on what is on the market to buy', NULL, NULL, 'LOOKING TO BUY', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (874, '2003-11-17', 'Frank and Kris ', 'Earley', '', '', '', '', NULL, '', NULL, 'frankandkris@aol.com', NULL, NULL, true, NULL, NULL, '', '2003-11-17', '2003-11-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (877, '2003-11-17', 'Lesleigh', 'Milanowski', '1112 Marion', 'Grand Haven', 'Michigan', '49417', NULL, '616-847-3970', NULL, 'lesleighmilanowski@hotmail.com', NULL, NULL, true, 9, 1, '', '2003-12-31', '2004-02-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (922, '2003-11-29', 'Maxine', 'Derstine', '', '', '', '', NULL, '', NULL, 'mderstine@generationsonline.com', NULL, NULL, false, NULL, NULL, '', '2003-11-29', '2003-11-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7866, '2009-02-07', 'Chris', 'Sdregas', '', '', '', '', NULL, '', NULL, 'csdregas@msn.com', NULL, NULL, true, NULL, NULL, '', '2009-02-07', '2009-02-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (910, '2003-11-29', 'Paul', 'Burall', '', '', '', '', NULL, '', NULL, 'hlelbach@aol.com', NULL, NULL, true, NULL, NULL, '', '2003-11-29', '2003-11-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (911, '2003-11-29', 'Todd', 'Burk', '', '', '', '', NULL, '', NULL, 'tburk@wwnet.net', NULL, NULL, true, NULL, NULL, '', '2003-11-29', '2003-11-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (932, '2003-11-29', 'Alexandra', 'Fodell', '', '', '', '', NULL, '', NULL, 'fodellgang@aol.com', NULL, NULL, true, NULL, NULL, '', '2003-11-29', '2003-11-29', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (920, '2003-11-29', 'Gary and Mary', 'Deneszczuk', '', '', '', '', NULL, '', NULL, 'mldeneszczuk@comcast.net', NULL, NULL, true, NULL, NULL, '', '2003-11-29', '2003-11-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (925, '2003-11-29', 'Micheal', 'Donahue', '', '', '', '', NULL, '', NULL, 'donahuemf@aol.com', NULL, NULL, true, NULL, NULL, '', '2003-11-29', '2003-11-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8161, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'driefe@prologis.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (930, '2003-11-29', 'Nate', 'Fink', '', '', '', '', NULL, '', NULL, 'npfink@aol.com', NULL, NULL, true, NULL, NULL, '', '2003-11-29', '2003-11-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (995, '2003-12-01', 'Jay & Karen', 'Dubrinsky', '8346 Huntington Road', 'Huntington Woods', 'MI', '48070', NULL, '248-582-9296', NULL, 'gratefulgardener@wideopenwest.com', NULL, NULL, false, 9, 3, '', '2004-01-16', '2004-01-19', '', ':2:12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (937, '2003-11-29', 'Carol', 'Grammatico', '', '', '', '', NULL, '', NULL, 'cgrammatic@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2003-11-29', '2003-11-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (938, '2003-11-29', 'Linda', 'Griggs', '', '', '', '', NULL, '', NULL, 'lgriggs243766mi@comcast.net', NULL, NULL, true, NULL, NULL, '', '2003-11-29', '2003-11-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (997, '2003-12-01', 'kathy', 'schalter', '1424 Ambassador Dr.', 'Okemos', 'mi', '48864', NULL, '517-347-8670', NULL, 'schalter@comcast.net', NULL, NULL, true, 6, 2, '', '2003-02-13', '2003-02-19', '2 person jacuzzi', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (940, '2003-11-29', 'Angelo', 'Grosso', '', '', '', '', NULL, '', NULL, 'upusedtobe@aol.com', NULL, NULL, true, NULL, NULL, '', '2003-11-29', '2003-11-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (998, '2003-12-01', 'Diane', 'Leathers', '6627 Tree Knoll', '', '', '', NULL, '', NULL, 'sleathers@wideopenwest.com', NULL, NULL, true, 6, 0, '', '2003-12-28', '2004-01-01', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (942, '2003-11-29', 'Roger and Janet', 'Holm', '', '', '', '', NULL, '', NULL, 'holmhome@juno.com', NULL, NULL, true, NULL, NULL, '', '2003-11-29', '2003-11-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (944, '2003-11-29', 'Julie', 'Izzard', '', '', '', '', NULL, '', NULL, 'jizzard@charter.net', NULL, NULL, true, NULL, NULL, '', '2003-11-29', '2003-11-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (945, '2003-11-29', 'Shelly', 'Jacobson', '', '', '', '', NULL, '', NULL, 'shelleykj@aol.com', NULL, NULL, true, NULL, NULL, '', '2003-11-29', '2003-11-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (947, '2003-11-29', 'Tom and Sue ', 'Johnson', '', '', '', '', NULL, '', NULL, 'wtjsnowmass@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2003-11-29', '2003-11-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (949, '2003-11-29', 'Jean', 'Kelly', '', '', '', '', NULL, '', NULL, 'rk711@comcast.net', NULL, NULL, true, NULL, NULL, '', '2003-11-29', '2003-11-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (953, '2003-11-29', 'Micheal', 'Limas', '', '', '', '', NULL, '', NULL, 'mlima@comcast.net', NULL, NULL, true, NULL, NULL, '', '2003-11-29', '2003-11-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (958, '2003-11-29', 'Ronald', 'Michalzuk', '', '', '', '', NULL, '', NULL, 'rpmichal@aol.com', NULL, NULL, true, NULL, NULL, '', '2003-11-29', '2003-11-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (960, '2003-11-29', 'Carl', 'Oosterhouse', '', '', '', '', NULL, '', NULL, 'coosterhou@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2003-11-29', '2003-11-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (962, '2003-11-29', 'Larry ', 'Parks', '', '', '', '', NULL, '', NULL, 'laparks@wideopenwest.com', NULL, NULL, true, NULL, NULL, '', '2003-11-29', '2003-11-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (965, '2003-11-29', 'Lori', 'Pogoda', '', '', '', '', NULL, '', NULL, 'mpogoda@comcast.net', NULL, NULL, true, NULL, NULL, '', '2003-11-29', '2003-11-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (966, '2003-11-29', 'Stephen', 'Pronger', '', '', '', '', NULL, '', NULL, 'steve@maintservices.com', NULL, NULL, true, NULL, NULL, '', '2003-11-29', '2003-11-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (968, '2003-11-29', 'Kathy', 'Regnier', '', '', '', '', NULL, '', NULL, 'regnier39@atc-enviro.com', NULL, NULL, true, NULL, NULL, '', '2003-11-29', '2003-11-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7946, '2009-02-25', 'Graham', 'Compton', '', '', '', '', NULL, '', NULL, 'graham.compton@us.army.mil', NULL, NULL, true, NULL, NULL, '', '2009-02-25', '2009-02-25', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7575, '2008-11-05', 'Frank', 'Zenere', '', '', '', '', NULL, '', NULL, 'frankpatzenere@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-11-05', '2008-11-05', '', ':17:23:18:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (977, '2003-11-29', 'Kurt', 'Tesnow', '', '', '', '', NULL, '', NULL, 'kltesnow@aol.com', NULL, NULL, true, NULL, NULL, '', '2003-11-29', '2003-11-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (979, '2003-11-29', 'Dave and Amy', 'Tratt', '', '', '', '', NULL, '', NULL, 'tratts@comcast.net', NULL, NULL, true, NULL, NULL, '', '2003-11-29', '2003-11-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (980, '2003-11-29', 'Micheal', 'Trist', '', '', '', '', NULL, '', NULL, 'tworbeach@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2003-11-29', '2003-11-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (981, '2003-11-29', 'Gil', 'Urban', '', '', '', '', NULL, '', NULL, 'gilurban@aol.com', NULL, NULL, true, NULL, NULL, '', '2003-11-29', '2003-11-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (982, '2003-11-29', 'Dorene', 'VanStrein', '', '', '', '', NULL, '', NULL, 'vstrien@qtm.net', NULL, NULL, true, NULL, NULL, '', '2003-11-29', '2003-11-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (983, '2003-11-29', 'Ken and Marla', 'Velick', '', '', '', '', NULL, '', NULL, 'kindmom54@aol.com', NULL, NULL, true, NULL, NULL, '', '2003-11-29', '2003-11-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (986, '2003-11-29', 'Paul', 'Wellman', '', '', '', '', NULL, '', NULL, 'paul@homesbywellman.com', NULL, NULL, true, NULL, NULL, '', '2003-11-29', '2003-11-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8162, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'drmain5@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (990, '2003-11-29', 'Margaret', 'Zureich', '', '', '', '', NULL, '', NULL, 'mzure@aol.com', NULL, NULL, true, NULL, NULL, '', '2003-11-29', '2003-11-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1008, '2003-12-06', 'Kalee', 'Bugman', '', '', '', '', NULL, '', NULL, 'kalee8@hotmail.com', NULL, NULL, true, 6, NULL, 'Do you have anything available for Dec. 30th - Jan4th?', NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1016, '2003-12-07', 'Barb', 'Schreuder', '', '', '', '', NULL, '', NULL, 'Schreuderjjjj@aol.com', NULL, NULL, false, 9, NULL, '', NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1032, '2003-12-11', 'Brian', 'Snodgrass', '', '', '', '', NULL, '', NULL, 'snods99@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2003-12-11', '2003-12-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1033, '2003-12-11', 'Kjell', 'Kristiansen', '', '', '', '', NULL, '', NULL, 'jo1402@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2003-12-11', '2003-12-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1045, '2003-12-12', 'Steve', 'Sutton', '120 Lake ', 'Petoskey', 'MI', '49770', NULL, '', NULL, 'steve@gaslightmedai.com', NULL, NULL, false, NULL, NULL, '', '2003-12-12', '2003-12-12', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1036, '2003-12-11', 'Daniel', 'Baker', '', '', '', '', NULL, '', NULL, 'dbaker578@aol.com', NULL, NULL, true, NULL, NULL, '', '2003-12-11', '2003-12-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1037, '2003-12-11', 'Brian', 'saha', '', '', '', '', NULL, '', NULL, 'brian@pinconningcheese.com', NULL, NULL, true, NULL, NULL, '', '2003-12-11', '2003-12-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1038, '2003-12-11', 'David', 'Bricault', '', '', '', '', NULL, '', NULL, 'dbrica@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2003-12-11', '2003-12-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1041, '2003-12-11', 'Catherine', 'Harte', '', '', '', '', NULL, '', NULL, 'catherine.l.harte@gm.com', NULL, NULL, true, NULL, NULL, '', '2003-12-11', '2003-12-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1062, '2003-12-20', 'Sharon', 'McKinzie', '', '', '', '', NULL, '', NULL, 'smcki48214@aol.com', NULL, NULL, true, NULL, NULL, '', '2003-12-20', '2003-12-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1063, '2003-12-20', 'Cheryl', 'McCaron', '', '', '', '', NULL, '', NULL, 'chermc56@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2003-12-20', '2003-12-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1066, '2003-12-20', 'Michael', 'McGowan', '7354 Copperwood', 'Sylvania', 'OH', '43560', NULL, '419-824-3092', NULL, 'msm6453@buckeye-express.com', NULL, NULL, false, 9, 4, '', '2004-01-01', '2004-01-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1081, '2003-12-28', 'Barry', 'Simescu', '1375 William', 'Plymouth', 'Mi', '48170', NULL, '734-453-2369', NULL, 'ibasemi@aol.com', NULL, NULL, true, 6, 3, '', '2004-01-01', '2004-03-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1090, '2004-01-01', 'Kathy', 'Ling', '', '', '', '', NULL, '', NULL, 'kaling@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-01-01', '2004-01-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1097, '2004-01-01', 'Annette', 'Raddatz', '', '', '', '', NULL, '', NULL, 'annette.m.raddatz@chi.frb.org', NULL, NULL, true, NULL, NULL, '', '2004-01-01', '2004-01-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1098, '2004-01-01', 'Maxine', 'Goodman', '', '', '', '', NULL, '', NULL, 'maxie820@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-01-01', '2004-01-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1099, '2004-01-01', 'Joseph', 'Panetta', '41452 Waterfall', 'Northville', 'Mi', '48167', NULL, '248 347-9814', NULL, 'Panettafamily@comcast.net', NULL, NULL, true, 9, 5, '', '2004-02-19', '2004-02-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1109, '2004-01-05', 'michael', 'whiteley', '1240 east broomfield rd', 'mount pleasant', 'mi', '48858', NULL, '(586)944-9584', NULL, 'white1mj@cmich.edu', NULL, NULL, true, 6, 5, '', '2004-02-13', '2004-02-15', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1124, '2004-01-08', 'Denise', 'Johnson', '8415 Carriage Lane', 'Portland', 'MI', '48875', NULL, '313-268-1247', NULL, 'denise.c.johnson@gm.com', NULL, NULL, true, 4, 4, '', '2004-01-31', '2004-01-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1126, '2004-01-09', 'Jennifer', 'Wilkie', '12019 Gatwick View Drive', 'Fishers', 'IN ', '46038', NULL, '3179024402', NULL, 'jwilkie28@yahoo.com', NULL, NULL, true, 7, 4, 'I already made a reservation for a 2 bedroom, 1 bath condo and was given a price which I believe was around $513.00 for the two nights.  I am wondering why I am being charged more than the posted rates on this website.  I would like to get the rate you have advertised for that condo.  I see that it should be $226/night. Please contact me. Thank you. ', '2004-01-23', '2004-01-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1141, '2004-01-15', 'Artem', 'Koronkevitch', '', '', '', '', NULL, '', NULL, 'koromkevitch@insightbb.com', NULL, NULL, true, NULL, NULL, '', '2004-01-15', '2004-01-15', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7948, '2009-02-26', 'Dede ', 'Briggs', '4340 Saturn Drive', 'Dorr', 'Michigan', '49323', NULL, '', NULL, 'dlbriggs@att.net', NULL, NULL, true, NULL, NULL, '', NULL, NULL, 'Do you have any restaraunts on site?', ':Summer Vacation:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1196, '2004-01-27', 'Ken', 'Demps', '', '', '', '', NULL, '', NULL, 'kendemps@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-01-27', '2004-01-27', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1173, '2004-01-21', 'Nancy', 'Weinert', '', '', '', '', NULL, '', NULL, 'egaw@comcast.net', NULL, NULL, true, 9, 0, '', '2004-02-16', '2004-02-18', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1177, '2004-01-22', 'Stephen', 'Dow', '2768 Homewood Drive', 'Troy', 'MI', '48098', NULL, '2489525178', NULL, 'stevedow@comcast.net', NULL, NULL, true, 4, 5, '', '2004-02-19', '2004-02-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1192, '2004-01-27', 'Mary', 'Taylor', '', '', '', '', NULL, '', NULL, 'mjtaylor1228@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-01-27', '2004-01-27', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1193, '2004-01-27', 'Anne Marie', 'Udell', '', '', '', '', NULL, '', NULL, 'atudell@ameritech.net', NULL, NULL, true, NULL, NULL, '', '2004-01-27', '2004-01-27', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1201, '2004-01-27', 'carol', 'lis', '6913 rosemont', 'detroit', 'Michigan', '48228', NULL, '313-593-1286', NULL, 'carol.lis@tm.net', NULL, NULL, true, 9, 5, '', '2004-02-20', '2004-02-21', 'hot tub', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7995, '2009-04-24', 'Nena', 'Shaw ', '', '', '', '', NULL, '', NULL, 'nenashaw@hughes.net', NULL, NULL, true, NULL, NULL, '', '2009-04-24', '2009-04-24', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7108, '2008-06-17', 'Pam', 'Barton', '', '', '', '', NULL, '', NULL, 'pbarton@ncresa.org', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', ':3:23:20:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1209, '2004-01-29', 'Amy', 'Cole', '28519 Beste', 'St. Clair Shores', 'MI', '48081-1004', NULL, '586-774-3663', NULL, 'anicole327@aol.com', NULL, NULL, false, 9, 5, '', '2004-02-13', '2004-02-15', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1213, '2004-03-29', 'Renee and Rick', 'Christen', '', 'Whitehouse', 'OH', '43571', NULL, '', NULL, 'reneechristen@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-03-29', '2004-03-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1214, '2004-03-29', 'Allison', 'Cofone', '', 'Hopkinton', 'MA', '01748', NULL, '', NULL, 'allison_cofone@waters.com', NULL, NULL, true, NULL, NULL, '', '2004-03-29', '2004-03-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1217, '2004-03-29', 'James', 'Culver', '', 'Linden', 'MI', '48451', NULL, '', NULL, 'jcculvermd@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-03-29', '2004-03-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1221, '2004-03-29', 'Nancy', 'Dulmage', '', 'Orchard Lake', 'MI', '48324', NULL, '', NULL, 'ned1213@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-03-29', '2004-03-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8246, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'jjtuba@earthlink.net', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1225, '2004-03-29', 'Kevin', 'Ferguson', '', 'Portage', 'IN', '46368', NULL, '', NULL, 'tracyf2386@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-03-29', '2004-03-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1227, '2004-03-29', 'Jim', 'Foulds', '', 'Midland', 'MI', '48640', NULL, '', NULL, 'jefoulds@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-03-29', '2004-03-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1228, '2004-03-29', 'Micheal', 'Friedman', '', 'Lake Orion', 'MI', '48630', NULL, '', NULL, 'mcfhome@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-03-29', '2004-03-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1229, '2004-03-29', 'Mary and Ted', 'Gedra', '', 'Grand Rapids', 'MI', '49506', NULL, '', NULL, 'gedrate@wwwinc.com', NULL, NULL, true, NULL, NULL, '', '2004-03-29', '2004-03-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1269, '2004-03-29', 'Yumiko', 'Vanderlugt', '', 'Troy', 'MI', '48098', NULL, '', NULL, 'yvanderl@ford.com', NULL, NULL, false, NULL, NULL, '', '2004-03-29', '2004-03-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1232, '2004-03-29', 'Lucifur', 'Greve', '', 'Bay City', 'MI', '48709', NULL, '', NULL, 'rgreve7939@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-03-29', '2004-03-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8307, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'lgkochanowski@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8368, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'pokorskij@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1237, '2004-03-29', 'Paul', 'Hoying', '', 'Anna', 'OH', '45302', NULL, '', NULL, 'phoying@hhbonline.net', NULL, NULL, true, NULL, NULL, '', '2004-03-29', '2004-03-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1241, '2004-03-29', 'Greg', 'Labun', '', 'Homer', 'MI', '49245', NULL, '', NULL, 'glabun@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2004-03-29', '2004-03-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1242, '2004-03-29', 'Kathlene', 'Lamarre', '', 'Hudson', 'OH', '44236', NULL, '', NULL, 'lamarres@adelphia.net', NULL, NULL, true, NULL, NULL, '', '2004-03-29', '2004-03-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1246, '2004-03-29', 'Peter', 'MacKinnon', '', 'Chatham', 'Ontario', 'N7M2B2', NULL, '', NULL, 'p.mackinnon@sympatico.ca', NULL, NULL, true, NULL, NULL, '', '2004-03-29', '2004-03-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1247, '2004-03-29', 'Todd', 'Maddox', '', 'Kalamazoo', 'MI', '49004', NULL, '', NULL, 'maddox6@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-03-29', '2004-03-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1250, '2004-03-29', 'Mark and Mary ', 'Malnor', '', 'Rapid River', 'MI', '49878', NULL, '', NULL, 'mcmalnor@chartermi.net', NULL, NULL, true, NULL, NULL, '', '2004-03-29', '2004-03-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1253, '2004-03-29', 'Kathy', 'Mikolajczak', '', 'Toledo', 'OH', '43614', NULL, '', NULL, 'mikol@buckeye-express.com', NULL, NULL, true, NULL, NULL, '', '2004-03-29', '2004-03-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1254, '2004-03-29', 'Deborah', 'Mustard', '', 'Fort Wayne', 'IN', '46845', NULL, '', NULL, 'mdmustard@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-03-29', '2004-03-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8163, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'drogers@b-vconstruction.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1259, '2004-03-29', 'Nicole', 'Quist', '', 'Saline', 'MI', '48176', NULL, '', NULL, 'nquist@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-03-29', '2004-03-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1261, '2004-03-29', 'Jason', 'Ratledge', '', 'Royal Oak', 'MI', '48068', NULL, '', NULL, 'jrat0015@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2004-03-29', '2004-03-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1264, '2004-03-29', 'Nancy', 'Shannon', '', 'Rochester Hills', 'MI', '48309', NULL, '', NULL, 'nancygf@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-03-29', '2004-03-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1265, '2004-03-29', 'Andrea', 'Termini', '', 'Chicago', 'IL', '60612', NULL, '', NULL, 'andrea.termini@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-03-29', '2004-03-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1270, '2004-03-29', 'Kurt and Joann', 'Vonmach', '', 'Birmingham', 'MI', '48009', NULL, '', NULL, 'jvonmach@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-03-29', '2004-03-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1272, '2004-03-29', 'Linda', 'Wicker', '', 'Lansing', 'MI', '48917', NULL, '', NULL, 'finetuned13@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2004-03-29', '2004-03-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1273, '2004-03-29', 'Laura', 'Wilczynski', '', 'Ypsilanti', 'MI', '48197', NULL, '', NULL, 'johnlauraw@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2004-03-29', '2004-03-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1275, '2004-03-29', 'Carrie', 'Zandbergen', '', 'Grand Rapids', 'MI', '49505', NULL, '', NULL, 'tddzan@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-03-29', '2004-03-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1295, '2004-04-13', 'Dilip', 'Paul', '3080 Idlewild Ct.', 'Ann Arbor', 'MI', '48105', NULL, '734-332-0064', NULL, 'dkpaul@yahoo.com', NULL, NULL, true, 9, 2, '', '2004-04-30', '2004-02-05', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1316, '2004-04-30', 'Stacey', 'Miller', '23060 Brentwood', 'Brownstown', 'Mi', '48183', NULL, '734 837 7430', NULL, 'smille36@comcast.net', NULL, NULL, false, 4, 3, '', '2004-05-21', '2004-05-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1322, '2004-05-05', 'Sheri', 'Queen', '10110 Creekwood', 'Plymouth', 'MI', '48170', NULL, '734-416-9177', NULL, 'rhuetters@aol.com', NULL, NULL, true, 8, 4, '', '2004-08-02', '2004-08-07', 'Been there before', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1329, '2004-05-10', 'Katie', 'McGinnis', '2619 Cascade Place Dr.', 'Grand Rapids', 'MI', '49546', NULL, '', NULL, 'katherinemcginnis@hotmail.com', NULL, NULL, true, 4, 5, '', '2004-06-25', '2004-06-28', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1366, '2004-06-17', 'April', 'Wilder', '5609 Happy Hollow Rd. apt 11', 'Milford', 'Ohio', '45150', NULL, '', NULL, 'jonnothon1975@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2004-06-17', '2004-06-17', 'WMTA Travel Advisor', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1367, '2004-06-17', 'Denise', 'Rea', '30050 Beechwood Ave', 'garden City', 'Michigan', '48135', NULL, '', NULL, 'rndrea@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-06-17', '2004-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1370, '2004-06-17', 'Kathy', 'DeVries', '1401 Fremont N.W.', 'Grand Rapids', 'Michigan', '49504', NULL, '', NULL, 'kathy_devries@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2004-06-17', '2004-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1372, '2004-06-17', 'Lynn', 'Doneff', '7833 Dock Road', 'Egg Harbor', 'Wi', '54209', NULL, '', NULL, 'lynndel@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2004-06-17', '2004-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1373, '2004-06-17', 'Marc ', 'Scherschel', '3533 N. 76th St. #8', 'Milwaukee', 'Wi', '53222', NULL, '', NULL, 'mrscherschel@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2004-06-17', '2004-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1374, '2004-06-17', 'Mark', 'VanKley', '2427 Thornton rd', 'Lansing', 'IL', '60827', NULL, '', NULL, 'spongebob9498@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-06-17', '2004-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8247, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'jmarenti@ford.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1379, '2004-06-17', 'Patricia ', 'Lane', '7181 E. St. road 64', 'Birdseye', 'IN', '47513', NULL, '', NULL, 'pat5lane@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-06-17', '2004-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1385, '2004-06-17', 'Betsey', 'Hemm', '207 Muirfield Circle', 'North Prairie', 'WI', '53153', NULL, '', NULL, 'betsyhemm@wi.rr.com', NULL, NULL, true, NULL, NULL, '', '2004-06-17', '2004-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8308, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'libby.crabb@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1387, '2004-06-17', 'Bill', 'Pepper', '5050 Hidden View Drive', 'Hilliard', 'OH', '43026', NULL, '', NULL, 'bpepper55@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2004-06-17', '2004-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1388, '2004-06-17', 'carolyn ', 'Silber', '3052 Montequma Drive', 'Cincinnati', 'Oh', '45251', NULL, '', NULL, 'seadrift@cinci.rr.com', NULL, NULL, true, NULL, NULL, '', '2004-06-17', '2004-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1390, '2004-06-17', 'Chad', 'Wilkin', '2136 Edwardsville Galena Road', 'Georgetown', 'IN', '47122', NULL, '', NULL, 'wilkin97@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2004-06-17', '2004-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1392, '2004-06-17', 'Cindy ', 'Torraco', '754 Warwick Court', 'Carol Stream', 'IL', '60188', NULL, '', NULL, 'cjtorraco@msn.com', NULL, NULL, true, NULL, NULL, '', '2004-06-17', '2004-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1395, '2004-06-17', 'Dan ', 'Hofland', '3602 21st Street South', 'Fargo', 'ND', '58104', NULL, '', NULL, 'bepo@cableone.net', NULL, NULL, true, NULL, NULL, '', '2004-06-17', '2004-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1397, '2004-06-17', 'Dann', 'Boland', '7317 Catalpa Avenue ', 'Woodridge', 'IL', '60517', NULL, '', NULL, 'dboland30@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-06-17', '2004-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1398, '2004-06-17', 'Dave', 'Carriere', '4509 Brady Street', 'Davenport', 'IA', '52748', NULL, '', NULL, 'david.carriere@erac.com', NULL, NULL, true, NULL, NULL, '', '2004-06-17', '2004-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1399, '2004-06-18', 'rhonda', 'donnay', '', '', '', '', NULL, '', NULL, 'rpda@hbci.com', NULL, NULL, true, 6, NULL, '', NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1411, '2004-06-25', 'Jim', 'Frisinger', '2969 Lakeshore Dr', 'Muskegon', 'MI', '49441', NULL, '231-759-2532', NULL, 'jim@blufftonbaysails.com', NULL, NULL, false, 6, 3, '', '2004-07-29', '2004-08-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7867, '2009-02-07', 'Celia', 'Wagner', '', '', '', '', NULL, '', NULL, 'cwagner@bex.net', NULL, NULL, true, NULL, NULL, '', '2009-02-07', '2009-02-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1427, '2004-07-05', 'Jeff', 'Goetzman', '', '', '', '', NULL, '', NULL, 'kgoetzman2662@charter.net', NULL, NULL, true, NULL, NULL, '', '2004-07-05', '2004-07-05', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1444, '2004-07-09', 'Mark', 'Ammann', '', 'Kalamazoo', 'MI', '49009', NULL, '269-353-3860', NULL, 'familyammann@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2004-07-09', '2004-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7947, '2009-02-25', 'Christine', 'Simone', '', '', '', '', NULL, '', NULL, 'casimone@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-02-25', '2009-02-25', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8369, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'prcrutch23@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1445, '2004-07-09', 'Linda', 'Anderson', '', 'Grand Rapids', 'MI', '49546', NULL, '616-942-1337', NULL, 'linnielou@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-07-09', '2004-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1447, '2004-07-09', 'Shigeki', 'Arymodo', '', 'Auburn Hills', 'MI', '48326', NULL, '248-299-9375', NULL, 'shigeki_arimoto@hi-lex.com', NULL, NULL, true, NULL, NULL, '', '2004-07-09', '2004-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1452, '2004-07-09', 'Dan', 'Baines', '', 'Grand Rapids', 'MI', '49509', NULL, '616-532-1886', NULL, 'dbaines@mpcu.org', NULL, NULL, true, NULL, NULL, '', '2004-07-09', '2004-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1453, '2004-07-09', 'Hak-Sun', 'Bak', '', 'Fort Wayne', 'IN', '46814', NULL, '260-625-6088', NULL, 'hsbak@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2004-07-09', '2004-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1457, '2004-07-09', 'Tiffanie', 'Barackman', '', 'Plymouth', 'MI', '48170', NULL, '734-414-9960', NULL, 'liltif7@wideopenwest.com', NULL, NULL, true, NULL, NULL, '', '2004-07-09', '2004-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8164, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'drolentwins@att.net', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7780, '2009-02-03', 'Mary Ellen', 'Claypool', '', '', '', '', NULL, '', NULL, 'meclaypool@wow.com', NULL, NULL, true, NULL, NULL, '', '2009-02-03', '2009-02-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7868, '2009-02-07', 'Anthony', 'Agrusa', '', '', '', '', NULL, '', NULL, 'dagrusa@dsddance.com', NULL, NULL, true, NULL, NULL, '', '2009-02-07', '2009-02-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1463, '2004-07-09', 'Mike', 'Beda', '', 'Brunswick', 'OH', '44212', NULL, '330-220-9870', NULL, 'Kathleen.beda@ey.com', NULL, NULL, true, NULL, NULL, '', '2004-07-09', '2004-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1459, '2004-07-09', 'Edward', 'Barry', '', 'Bay City', 'MI', '48706', NULL, '989-648-3797', NULL, 'sharon.a.barry@delphi.com', NULL, NULL, false, NULL, NULL, '', '2004-07-09', '2004-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1466, '2004-07-09', 'Donna', 'Berger', '', 'Farmington Hills', 'MI', '48331', NULL, '248-661-3729', NULL, 'dsberger@comerica.com', NULL, NULL, true, NULL, NULL, '', '2004-07-09', '2004-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1469, '2004-07-09', 'Erin', 'Bishop', '', 'South Lyon', 'MI', '48178', NULL, '248-486-8926', NULL, 'ebishop65@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2004-07-09', '2004-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1471, '2004-07-09', 'Raymond', 'Blaszczak', '', 'Troy', 'MI', '48083', NULL, '248-730-2504', NULL, 'rfblazeroffice@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2004-07-09', '2004-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1472, '2004-07-09', 'Jane', 'Blaze', '', 'Saginaw', 'MI', '48609', NULL, '989-865-6370', NULL, 'jmblaze@chartermi.net', NULL, NULL, true, NULL, NULL, '', '2004-07-09', '2004-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1473, '2004-07-09', 'Robert', 'Bleyaert', '', 'Petoskey', 'MI', '49770', NULL, '231-439-5010', NULL, 'bob_bleyaert@bankofnorthernmichigan.com', NULL, NULL, true, NULL, NULL, '', '2004-07-09', '2004-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1474, '2004-07-09', 'Mark', 'Bloom', '', 'Northville', 'MI', '48167', NULL, '248-730-2504', NULL, 'markrbl@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2004-07-09', '2004-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1475, '2004-07-09', 'Kreshnik', 'Boshnjaku', '', 'Chicago', 'IL', '60660', NULL, '773-552-2097', NULL, 'nikgjakovari@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2004-07-09', '2004-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1476, '2004-07-09', 'James and Virgi', 'Bowers', '', 'Alva', 'FL', '33920', NULL, '239-693-4670', NULL, 'vkayh@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-07-09', '2004-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1477, '2004-07-09', 'Bill', 'Bowling', '', 'Grand Rapids', 'MI', '49503', NULL, '269-795-1633', NULL, 'bill.bowling@paramountprop.com', NULL, NULL, true, NULL, NULL, '', '2004-07-09', '2004-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1479, '2004-07-09', 'Una', 'Boyd', '', 'Crystal Lake', 'IL', '60014', NULL, '815-444-8847', NULL, 'unaboyd@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2004-07-09', '2004-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7996, '2009-04-25', 'Mike', 'Grant', '809 Loyola', 'Ann Arbor', 'MI', '48103', NULL, '734-994-4665', NULL, 'mdgrant@comcast.net', NULL, NULL, true, 4, 1, 'Would like to know the price before make a reservation.  Thanks.', '2009-05-15', '2009-05-15', '', ':Biking:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1487, '2004-07-09', 'Douglas and Teri', 'Brown', '', 'Grosse Pointe', 'MI', '48230', NULL, '313-882-3567', NULL, 'dbrown230@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-07-09', '2004-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1488, '2004-07-09', 'James', 'Brown', '', 'Connersville', 'IN', '47331', NULL, '765-825-1382', NULL, 'jebrown@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-07-09', '2004-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1489, '2004-07-09', 'Robert ', 'Brown', '', 'Corunna', 'CD', 'NON 1GO', NULL, '519-862-2115', NULL, 'rbrown9@cogeco.ca', NULL, NULL, true, NULL, NULL, '', '2004-07-09', '2004-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1492, '2004-07-12', 'Barb ', 'Galvin', '', '', '', '', NULL, '', NULL, 'galgrif2@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-07-12', '2004-07-12', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1493, '2004-07-12', 'Bruce ', 'McLean', '', '', '', '', NULL, '', NULL, 'bamclean@bellsouth.net', NULL, NULL, true, NULL, NULL, '', '2004-07-12', '2004-07-12', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1497, '2004-07-12', 'John', 'Porter', '', '', '', '', NULL, '', NULL, 'jwporter203@msn.com', NULL, NULL, true, NULL, NULL, '', '2004-07-12', '2004-07-12', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1498, '2004-07-12', 'Karen', 'Pierce', '', '', '', '', NULL, '', NULL, 'karenpierce@charter.net', NULL, NULL, true, NULL, NULL, '', '2004-07-12', '2004-07-12', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1499, '2004-07-12', 'Kari', 'Crumley', '', '', '', '', NULL, '', NULL, 'fairiegirl72@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2004-07-12', '2004-07-12', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1501, '2004-07-12', 'Lisa', 'McCoy', '', '', '', '', NULL, '', NULL, 'Iamccov@texaschildrenshospital.org', NULL, NULL, true, NULL, NULL, '', '2004-07-12', '2004-07-12', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1502, '2004-07-12', 'Marge ', 'Ohlman', '', '', '', '', NULL, '', NULL, 'mohlman@rbc.org', NULL, NULL, true, NULL, NULL, '', '2004-07-12', '2004-07-12', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1504, '2004-07-12', 'Mary Jo', 'Laymon', '', '', '', '', NULL, '', NULL, 'mjnhorn@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2004-07-12', '2004-07-12', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1505, '2004-07-12', 'Melissa', 'Storch', '', '', '', '', NULL, '', NULL, 'melbock@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2004-07-12', '2004-07-12', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1510, '2004-07-12', 'Anne', 'Salter', '', '', '', '', NULL, '', NULL, 'asalter@ameritech.net', NULL, NULL, true, NULL, NULL, '', '2004-07-12', '2004-07-12', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1511, '2004-07-12', 'Brenda ', 'Davis', '', '', '', '', NULL, '', NULL, 'bdavis1252@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-07-12', '2004-07-12', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1512, '2004-07-12', 'C. Paul', 'Thompson', '', '', '', '', NULL, '', NULL, 'Tpaul447@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-07-12', '2004-07-12', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1514, '2004-07-12', 'Dale', 'Frank', '', '', '', '', NULL, '', NULL, 'dalewf57@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-07-12', '2004-07-12', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8248, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'jmjoliet@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1522, '2004-07-13', 'Robert', 'Brady', '', '', '', '', NULL, '', NULL, 'rb4owat@wsdmi.org', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1532, '2004-07-13', 'Bob', 'Carden', '', '', '', '', NULL, '', NULL, 'bcarden@activeaero.com', NULL, NULL, false, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1591, '2004-07-13', 'George ', 'Gundry', '1109 Hathaway Rising', 'Rochester Hills', 'MI', '48306', NULL, '248-608-0519', NULL, 'george.t.gundry@gm.com', NULL, NULL, false, 6, 3, 'Would be open for any unit size that sleeps 5.  Weekend dates are flexible - arrive Sunday and leave Sunday, arrive Sat and leave Sat', '2004-08-07', '2004-08-14', '', ':12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1569, '2004-07-13', 'Lowel', 'Derdiger', '', '', '', '', NULL, '', NULL, 'derdiger@earthlink.net', NULL, NULL, false, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1524, '2004-07-13', 'Christina', 'Brewer', '', '', '', '', NULL, '', NULL, 'cmb2@uakron.edu', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1526, '2004-07-13', 'Dina', 'Buckley', '', '', '', '', NULL, '', NULL, 'buckleyb5@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1528, '2004-07-13', 'Susan', 'Burns', '', '', '', '', NULL, '', NULL, 'sburns@mpro.org', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1535, '2004-07-13', 'Dan', 'Cavanaugh', '', '', '', '', NULL, '', NULL, 'dvantong@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1536, '2004-07-13', 'Paul', 'Cavanaugh', '', '', '', '', NULL, '', NULL, 'pjcavanaugh@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8309, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'libby.irby@cw50detroit.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8370, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'prosttim@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7949, '2009-02-27', 'TETSUHIRO ', 'TOMITA', '20134 NORTHVILE PLACE DR.APT 3316', 'NORTHVILLE', 'MI', '48167', NULL, '734-536-0040', NULL, 'tomita_okazaki@yahoo.co.jp', NULL, NULL, true, 8, 4, 'Today Feb/27 am, I talked with Ms.Chris(Kris?) about my reservation.  She gave me much information. Then usually we can not stay in just one night, but she agree that we stay in just one night. I appriciate her. Thanks of her information, I decided to stay in your hotel. let me confirm. My understanding is rent fee is $222/room for only one night Mar/6th Friday.  If I heve misunderstanding, please tell me by e-mail.  Then I would like you to send me a confirmation of my reservation. Thank you !! ', '2009-06-03', '2009-07-03', 'Person is four adult. We are friends. (No children.) Only male. ', ':Ski Trip:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7869, '2009-02-07', 'Darlene', 'Peterson', '', '', '', '', NULL, '', NULL, 'dakepete@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-02-07', '2009-02-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1542, '2004-07-13', 'Rosalie', 'Clark', '', '', '', '', NULL, '', NULL, 'rclark9@indy.rr.com', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1543, '2004-07-13', 'Patricia', 'Claypool', '', '', '', '', NULL, '', NULL, 'pmclaypool@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8731, '2009-09-05', 'Keith', 'Nyboer', '3420 Maple Gate Dr.', 'Saugatuck', 'MI', '49453', NULL, '2698572190', NULL, 'tknyboer@verizon.net', NULL, NULL, true, 1, 3, 'Do you allow pets?', NULL, NULL, '', ':Golf Trip:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1546, '2004-07-13', 'Jennifer', 'Constand', '', '', '', '', NULL, '', NULL, 'j_constand@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1548, '2004-07-13', 'James ', 'Cooper', '', '', '', '', NULL, '', NULL, 'jcooper@hpsk12.net', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10089, '2013-10-11', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'sueanndykman@gmail.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; InfoPath.3; AskTbAD4/5.15.1.22229)', '75.100.175.2', true, NULL, NULL, NULL, NULL, NULL, NULL, ':15:17:4:14:18:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1554, '2004-07-13', 'Mike', 'Czarniecki', '', '', '', '', NULL, '', NULL, 'mczarniecki@ameritech.net', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1558, '2004-07-13', 'Susan', 'Davis', '', '', '', '', NULL, '', NULL, 'tadavis@chartermi.net', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1559, '2004-07-13', 'Todd', 'Davis', '', '', '', '', NULL, '', NULL, 'tdavis@wilbursmith.com', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1560, '2004-07-13', 'Roland', 'Day', '', '', '', '', NULL, '', NULL, 'deziner77@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1561, '2004-07-13', 'Debra', 'Dean', '', '', '', '', NULL, '', NULL, 'DEBD29@msn.com', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8310, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'linda.e.johnson@us.pwc.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1566, '2004-07-13', 'Susan', 'DeMaris', '', '', '', '', NULL, '', NULL, 'pdemaris@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1568, '2004-07-13', 'Chris', 'Depoy', '', '', '', '', NULL, '', NULL, 'depoych@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1570, '2004-07-13', 'Brian', 'Derisley', '', '', '', '', NULL, '', NULL, 'BADERISLEY@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1571, '2004-07-13', 'Belinda', 'Dokic', '', '', '', '', NULL, '', NULL, 'bsalkovic@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1574, '2004-07-13', 'David and Kim', 'Duhaime', '', '', '', '', NULL, '', NULL, 'dvduh@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1575, '2004-07-13', 'Sid', 'Durham', '', '', '', '', NULL, '', NULL, 'cherryme@msu.edu', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7306, '2008-09-22', 'Ruth', 'Halter', '', '', '', '', NULL, '', NULL, 'rahhalter@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', ':3:12:6:23:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1580, '2004-07-13', 'Greg', 'Eifert', '', '', '', '', NULL, '', NULL, 'laura.eifert@eds.com', NULL, NULL, false, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1579, '2004-07-13', 'Mary Ellen', 'Ehlke', '', '', '', '', NULL, '', NULL, 'plehlke@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1584, '2004-07-13', 'Corinna', 'England', '', '', '', '', NULL, '', NULL, 'cengland@hlecpa.com', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1590, '2004-07-13', 'Bruce', 'Fershtman', '', '', '', '', NULL, '', NULL, 'bfershtman@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1595, '2004-07-13', 'Michelle', 'Fisher', '', '', '', '', NULL, '', NULL, 'michelle.t.fisher@gm.com', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1599, '2004-07-13', 'Tim', 'Fralick', '', '', '', '', NULL, '', NULL, 'tfralick@oiles.com', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1601, '2004-07-13', 'Carole and Jerry', 'Frank', '', '', '', '', NULL, '', NULL, 'csrhf1947@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1602, '2004-07-13', 'Ann', 'Gallagher', '', '', '', '', NULL, '', NULL, 'annkgallagher@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1603, '2004-07-13', 'Susan', 'Galloup', '', '', '', '', NULL, '', NULL, 'bryan@galloupguitars.com', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1604, '2004-07-13', 'Sue', 'Gawel', '', '', '', '', NULL, '', NULL, 'suehg@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1616, '2004-07-13', 'Chris', 'Goliver', '', '', '', '', NULL, '', NULL, 'firefightmd@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1621, '2004-07-13', 'Tim', 'Grady', '', '', '', '', NULL, '', NULL, 'tgrady@cablers.com', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1622, '2004-07-13', 'Thomas', 'Graham', '', '', '', '', NULL, '', NULL, 'taa911@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1624, '2004-07-13', 'Amy', 'Green', '', '', '', '', NULL, '', NULL, 'aigreen@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1625, '2004-07-13', 'Tom ', 'Grimes', '', '', '', '', NULL, '', NULL, 'tom@grimesassociates.com', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1626, '2004-07-13', 'Donna', 'Grooms', '', '', '', '', NULL, '', NULL, 'djgrooms@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1627, '2004-07-13', 'Michael', 'Gualdoni', '', '', '', '', NULL, '', NULL, 'mhgualdoni@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1628, '2004-07-13', 'Dianne', 'Guenin-Lelle', '', '', '', '', NULL, '', NULL, 'dgueninlelle@albion.edu', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1660, '2004-07-13', 'Pam', 'Hughes', '', '', '', '', NULL, '', NULL, 'pam.hughes@eds.com', NULL, NULL, false, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1632, '2004-07-13', 'Dan', 'Hansen', '', '', '', '', NULL, '', NULL, 'dehansen@us.ibm.com', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1637, '2004-07-13', 'Margaret and John', 'Hawkins', '', '', '', '', NULL, '', NULL, 'hawkinsjohnr@yahoo.ca', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1642, '2004-07-13', 'William', 'Hess', '', '', '', '', NULL, '', NULL, 'mikeh@pagelithoinc.com', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1644, '2004-07-13', 'Louise', 'Hicken', '', '', '', '', NULL, '', NULL, 'netmom3@juno.com', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1648, '2004-07-13', '', 'Holy Cross Lutheran', '', '', '', '', NULL, '', NULL, 'jimskibum@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1650, '2004-07-13', 'Ken and Mary', 'Hoover', '', '', '', '', NULL, '', NULL, 'khoover99@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1651, '2004-07-13', 'Robert', 'Hopper', '', '', '', '', NULL, '', NULL, 'wrhopper@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1653, '2004-07-13', 'Paul', 'Hosack', '', '', '', '', NULL, '', NULL, 'kahosack@msn.com', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1657, '2004-07-13', 'Dennis', 'Howell', '', '', '', '', NULL, '', NULL, 'dennishowell@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1658, '2004-07-13', 'Mark', 'Howison', '', '', '', '', NULL, '', NULL, 'mehowison@dow.com', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7997, '2009-04-26', 'Lyn', 'Bloink', '', '', '', '', NULL, '', NULL, 'nsoap1@verizon.net', NULL, NULL, true, 0, NULL, 'Are there any employment opportunities?', NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1663, '2004-07-13', 'Barbara', 'Hunter', '', '', '', '', NULL, '', NULL, 'barbarahunter104@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1664, '2004-07-13', 'Robert and Sharon', 'Huth', '', '', '', '', NULL, '', NULL, 'rhuth.eshb@hobbs-black.com', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1667, '2004-07-13', 'Joyce', 'Imhoff', '', '', '', '', NULL, '', NULL, 'sales@spikelawrence.com', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1668, '2004-07-13', 'Nicole', 'Ingle', '', '', '', '', NULL, '', NULL, 'pthomps1@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1669, '2004-07-13', 'Elizabeth', 'Jackson', '', '', '', '', NULL, '', NULL, 'betsy.jackson@gm.com', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1673, '2004-07-13', 'Cathy', 'Janowiak', '', '', '', '', NULL, '', NULL, 'cathy@region3cussa.org', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1674, '2004-07-13', 'Phil', 'Jansen', '', '', '', '', NULL, '', NULL, 'pjlj99@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7782, '2009-02-03', 'Amy', 'Melrose ', '', '', '', '', NULL, '', NULL, 'melrose@att.com ', NULL, NULL, true, NULL, NULL, '', '2009-02-03', '2009-02-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1680, '2004-07-13', 'Nancy', 'Crawford', '', '', '', '', NULL, '', NULL, 'nancy.crawford@kla-tencor.com', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1682, '2004-07-13', 'Christopher', 'Horlacher', '', '', '', '', NULL, '', NULL, 'chris.horlacher@sanfordcorp.com', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1696, '2004-07-14', 'Brent', 'Kellis', '', '', '', '', NULL, '', NULL, 'brentk@charter.net', NULL, NULL, true, NULL, NULL, '', '2004-07-14', '2004-07-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1688, '2004-07-14', 'Walter', 'Jurewicz', '', '', '', '', NULL, '', NULL, 'wrepair@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-07-14', '2004-07-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1694, '2004-07-14', 'Mike', 'Kajfasz', '', '', '', '', NULL, '', NULL, 'thekajman@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-07-14', '2004-07-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1695, '2004-07-14', 'Richard', 'Keiden', '', '', '', '', NULL, '', NULL, 'keiden@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-07-14', '2004-07-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1698, '2004-07-14', 'Bruce', 'Kennedy', '', '', '', '', NULL, '', NULL, 'lbjk123@juno.com', NULL, NULL, true, NULL, NULL, '', '2004-07-14', '2004-07-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1701, '2004-07-14', 'Thomas ', 'Kimbro', '', '', '', '', NULL, '', NULL, 'tkimbro@e-bbk.com', NULL, NULL, true, NULL, NULL, '', '2004-07-14', '2004-07-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1704, '2004-07-14', 'Robert', 'Kirkman', '', '', '', '', NULL, '', NULL, 'rek@kirksauto.com', NULL, NULL, true, NULL, NULL, '', '2004-07-14', '2004-07-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1705, '2004-07-14', 'Penny', 'Kiss', '', '', '', '', NULL, '', NULL, 'pennykiss@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2004-07-14', '2004-07-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1707, '2004-07-14', 'Brenda', 'Knipp', '', '', '', '', NULL, '', NULL, 'bk_401@msn.com', NULL, NULL, true, NULL, NULL, '', '2004-07-14', '2004-07-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1708, '2004-07-14', 'Patricia', 'Kolowich', '', '', '', '', NULL, '', NULL, 'pkolowich@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-07-14', '2004-07-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1710, '2004-07-14', 'Steve ', 'Koshar', '', '', '', '', NULL, '', NULL, 'skoshar@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-07-14', '2004-07-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1714, '2004-07-14', 'Mike', 'Kulczycki', '', '', '', '', NULL, '', NULL, 'dakota1994@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2004-07-14', '2004-07-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2942, '2005-06-08', 'Alissa', 'Rademacher', '1020 Cass Street', 'Traverse City', 'MI', '49684', NULL, '', NULL, 'alissa_r@sbcglobal.net', NULL, NULL, false, 6, NULL, '', '2007-05-17', '2007-05-19', 'We are looking for a place to have our wedding reception where our guests can stay the night too.  Please send us some information regarding pacakages and rates.  Thank you!', ':4:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1716, '2004-07-14', 'Daniel', 'Kuzdzal', '', '', '', '', NULL, '', NULL, 'dankuz2001@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2004-07-14', '2004-07-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1720, '2004-07-15', 'Donna', 'Johns', '3867 Bald Mountain Road', 'Lake Orion', 'Michigan', '48360', NULL, '248-373-9181', NULL, 'parris_apt@yahoo.com', NULL, NULL, true, 4, 5, 'Please call me to confirm this registration, I left a message with Debbie''s voice mail.', NULL, NULL, 'Please reserve a room with Rob Hopper LOBOS 92 Soccer Team.', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1729, '2004-07-22', 'Catherine', 'Huntley', '113 N. State St.', 'Gobles', 'MI', '49055', NULL, '269-628-5318', NULL, 'catherineh@hotmail.com', NULL, NULL, false, 6, 5, '', '2004-09-05', '2004-09-06', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1736, '2004-08-11', 'Max', 'Balden', '4312 Braun Rd.', 'Saline', 'Michigan', '48176', NULL, '734- 429-9476', NULL, 'treescape@hotmail.com', NULL, NULL, true, 6, NULL, '', NULL, NULL, 'I am interested in purchase of condo for investment and retirement. ', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1741, '2004-08-11', 'George', 'Bednarik', '', '', '', '', NULL, '', NULL, 'geoshari@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-08-11', '2004-08-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7870, '2009-02-07', 'Shari', 'Pollesch', '', '', '', '', NULL, '', NULL, 'oberon1266@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-02-07', '2009-02-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1746, '2004-08-11', 'Tom', 'Carr', '', '', '', '', NULL, '', NULL, 'spartans1fan@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-08-11', '2004-08-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1715, '2004-07-14', 'susanne', 'Kullen', '', '', '', '', NULL, '', NULL, 'blessedru@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-07-14', '2004-07-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1748, '2004-08-11', 'Donald', 'Clark', '', '', '', '', NULL, '', NULL, 'clark.don@verizon.net', NULL, NULL, true, NULL, NULL, '', '2004-08-11', '2004-08-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1752, '2004-08-11', 'Pam', 'Copp', '', '', '', '', NULL, '', NULL, 'mcdtenn@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-08-11', '2004-08-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1759, '2004-08-11', 'Faye', 'Enders', '', '', '', '', NULL, '', NULL, 'traders@salvagegroups.com', NULL, NULL, true, NULL, NULL, '', '2004-08-11', '2004-08-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1760, '2004-08-11', 'Norman', 'Erickson', '', '', '', '', NULL, '', NULL, 'norson1@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-08-11', '2004-08-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1765, '2004-08-11', 'Todd', 'Grieb', '', '', '', '', NULL, '', NULL, 'tgrieb@wowway.com', NULL, NULL, true, NULL, NULL, '', '2004-08-11', '2004-08-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8543, '2009-07-17', 'Annette', 'Helmkay', '', '', '', '', NULL, '', NULL, 'Anmohe@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8250, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'jmvmsw@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1772, '2004-08-11', 'Philip and Cynthia', 'Hosay', '', '', '', '', NULL, '', NULL, 'hosay@lehman.cuny.edu', NULL, NULL, true, NULL, NULL, '', '2004-08-11', '2004-08-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1773, '2004-08-11', 'Brian', 'Hudock', '', '', '', '', NULL, '', NULL, 'thehudocks@msn.com', NULL, NULL, true, NULL, NULL, '', '2004-08-11', '2004-08-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8311, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'lindermanmark@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1780, '2004-08-11', 'Peter', 'Kallgren', '', '', '', '', NULL, '', NULL, 'pkallgren@prestolitewire.com', NULL, NULL, true, NULL, NULL, '', '2004-08-11', '2004-08-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1782, '2004-08-12', 'Ann', 'Amodei', '36632 Park Place', 'Sterling Heights', 'MI', '48310', NULL, '586-264-6113', NULL, 'annamodei@yahoo.com', NULL, NULL, true, 9, 3, '', NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1783, '2004-08-12', 'David', 'Crawford', '6582 Sawgrass Dr., SE', 'Kentwood', 'MI', '49508', NULL, '616-554-2079', NULL, 'kcdcslmc@hotmail.com', NULL, NULL, true, 8, 5, 'Spoke w/ someone at main desk at 7:45pm on 8/12/04. Said 1 bdrm unit was available for my husband who hasn''t had a break from our autistic son for more than 10 yrs. Said total would be $370.60 & that 1 bdrm unit was available. PLEASE call to confirm reservation. He REALLY needs this!', '2004-08-13', '2004-08-15', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2038, '2004-10-10', 'Charles', 'Hess', '4098 Nearbrook', 'Bloomfield Hills', 'MI', '48302', NULL, '248 577-5100', NULL, 'hess@funtech.com', NULL, NULL, true, NULL, 0, 'Please call me to discuss options.', '2004-12-01', '2005-04-01', 'Looking for a season rental.  Family of 5 plus weekend guests.', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2050, '2004-10-22', 'Thomas', 'Barnes', '', '', '', '', NULL, '', NULL, 'tbarnes@cfl.rr.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2052, '2004-10-22', 'Karen and Ted', 'Bradley', '', '', '', '', NULL, '', NULL, 'smeyer65@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2054, '2004-10-22', 'Gaylon', 'Brooks', '', '', '', '', NULL, '', NULL, 'gnjbrooks@msn.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2132, '2004-10-22', 'Carl and Patti', 'Goeckel', '', '', '', '', NULL, '', NULL, 'goeckelinc@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2058, '2004-10-22', 'Ronnie ', 'Cantrell', '', '', '', '', NULL, '', NULL, 'ron952@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2063, '2004-10-22', 'Alan', 'Chandross', '', '', '', '', NULL, '', NULL, 'achandross@excite.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2064, '2004-10-22', 'Christianna', 'Close', '', '', '', '', NULL, '', NULL, 'clegs3@msn.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2068, '2004-10-22', 'Paula', 'D''Angela', '', '', '', '', NULL, '', NULL, 'pd_angela@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2074, '2004-10-22', 'Carol', 'Dulgar', '', '', '', '', NULL, '', NULL, 'cjdulgar@earthlink.net', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9621, '2011-11-22', 'Tami', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'tami.sneller@disherdesign.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '24.236.250.122', false, 4, NULL, 'Do you have gift certificates?  If so, do they ever expire?', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2080, '2004-10-22', 'Paul', 'Favero', '', '', '', '', NULL, '', NULL, 'phfavero@msn.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7783, '2009-02-03', 'Mary', 'Stasek', '', '', '', '', NULL, '', NULL, 'mestasek@cablespeed.com', NULL, NULL, true, NULL, NULL, '', '2009-02-03', '2009-02-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2083, '2004-10-22', 'Jill', 'Gallagher', '', '', '', '', NULL, '', NULL, 'jmbenivegna@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2084, '2004-10-22', 'Debra', 'Gardner', '', '', '', '', NULL, '', NULL, 'dgscrip@msn.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2085, '2004-10-22', 'Diane', 'Giancarlo', '', '', '', '', NULL, '', NULL, 'giancarlofamily@juno.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2088, '2004-10-22', 'Cathy', 'Great Lakes Gas', '', '', '', '', NULL, '', NULL, 'cpaulus@glgt.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2089, '2004-10-22', 'Lori', 'Hachenski', '', '', '', '', NULL, '', NULL, 'hawkins_lori@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2097, '2004-10-22', 'Ruth', 'Hofmeyer', '', '', '', '', NULL, '', NULL, 'rhofmeyer@chartermi.net', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4926, '2006-10-02', 'Aaron', 'Peterson', '', '', '', '', NULL, '', NULL, 'susiehamblingpeterson@verizon.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2099, '2004-10-22', 'Nancy', 'Hutsenpiller', '', '', '', '', NULL, '', NULL, 'nmstar@ameritech.net', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7950, '2009-03-05', 'Jennifer', '', '', '', '', '', NULL, '', NULL, 'jenniferphone@hotmail.com', NULL, NULL, false, 6, 0, 'What is a fax number? ', '2009-07-18', '2009-08-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2102, '2004-10-22', 'Kathleen', 'Johnston', '', '', '', '', NULL, '', NULL, 'kbbj2000@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2104, '2004-10-22', 'Dan', 'Kelley', '', '', '', '', NULL, '', NULL, 'dan@dankelley.net', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2100, '2004-10-22', 'John and Amy', 'Ireland', '', '', '', '', NULL, '', NULL, 'irelands.7.00@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2106, '2004-10-22', 'James', 'Kidwell', '', '', '', '', NULL, '', NULL, 'theresa.kidwell@insightbb.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2108, '2004-10-22', 'Roger', 'Kohn', '', '', '', '', NULL, '', NULL, 'rogerwkohn@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2109, '2004-10-22', 'Don', 'Kooima', '', '', '', '', NULL, '', NULL, 'donkooima@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7998, '2009-04-28', 'Bob', 'Schodowski', '', '', '', '', NULL, '810-667-8940', NULL, 'bob@elitecleanroom.com', NULL, NULL, true, NULL, NULL, '', '2009-04-28', '2009-04-28', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2111, '2004-10-22', 'Lynn', 'Kosinski', '', '', '', '', NULL, '', NULL, 'KosinL01@wsdmi.org', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2113, '2004-10-22', 'Ed', 'Kowalski', '', '', '', '', NULL, '', NULL, 'ekowalski@nhav.misd.net', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2119, '2004-10-22', 'Andrea', 'Landwer', '', '', '', '', NULL, '', NULL, 'alandwer@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2120, '2004-10-22', 'John', 'Latimer', '', '', '', '', NULL, '', NULL, 'juanes4@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2125, '2004-10-22', 'Kenneth', 'Leupp', '', '', '', '', NULL, '', NULL, 'skipliz@adelphia.net', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2128, '2004-10-22', 'Debbie', 'Lewis', '', '', '', '', NULL, '', NULL, 'bndlewis@wideopenwest.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2129, '2004-10-22', 'Steven', 'Lins', '', '', '', '', NULL, '', NULL, 'stevelins@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2134, '2004-10-22', 'Lisa', 'Loridas', '', '', '', '', NULL, '', NULL, 'sillycourt81@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8072, '2009-05-22', '', 'Engler', '', '', '', '', NULL, '', NULL, 'englerandcompany@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-05-22', '2009-05-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2141, '2004-10-22', 'David', 'Lydy', '', '', '', '', NULL, '', NULL, 'dblydy@ksrint.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2143, '2004-10-22', 'William ', 'Mack', '', '', '', '', NULL, '', NULL, 'suemack123@comcast.net', NULL, NULL, true, 8, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2198, '2004-10-22', 'Timothy', 'Morgan', '', '', '', '', NULL, '', NULL, 'tim.morgan@mindspring.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2148, '2004-10-22', 'Dutch', 'Mandel', '', '', '', '', NULL, '', NULL, 'dmandel@crain.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2200, '2004-10-22', 'Michael', 'Morris', '', '', '', '', NULL, '', NULL, 'littleredwing24@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2153, '2004-10-22', 'Dan', 'Marus', '', '', '', '', NULL, '', NULL, 'djmarus@ctchome.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2156, '2004-10-22', 'James', 'Maxwell', '', '', '', '', NULL, '', NULL, 'max4dogs@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8251, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'jody.ole@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2165, '2004-10-22', 'Marguerite', 'McDonald', '', '', '', '', NULL, '', NULL, 'sfisher@techgroupinc.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2169, '2004-10-22', 'Caroline', 'McHugh', '', '', '', '', NULL, '', NULL, 'cjmch@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2171, '2004-10-22', 'Tim', 'McIntire', '', '', '', '', NULL, '', NULL, 'tmcintire@indy.rr.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2175, '2004-10-22', 'Mark and Barb', 'McNally', '', '', '', '', NULL, '', NULL, 'mcnally@chartermi.net', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2178, '2004-10-22', 'Hardwood', 'Mendoza', '', '', '', '', NULL, '', NULL, 'jdh@hardwoodsolutions.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2185, '2004-10-22', 'Carol', 'Miller', '', '', '', '', NULL, '', NULL, 'Carol@Greenleafrealty.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2187, '2004-10-22', 'Joyce', 'Mills', '', '', '', '', NULL, '', NULL, 'joymil@voyager.net', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2188, '2004-10-22', 'Kristijan', 'Minanov', '', '', '', '', NULL, '', NULL, 'kdminanov@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2189, '2004-10-22', 'Cindy', 'Miner', '', '', '', '', NULL, '', NULL, 'cminor@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2194, '2004-10-22', 'Susan', 'Mongrue', '', '', '', '', NULL, '', NULL, 'suemongrue@chartermi.net', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2195, '2004-10-22', 'Thomas', 'Monnich', '', '', '', '', NULL, '', NULL, 'brandesroy@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2217, '2004-10-22', 'Lisa', 'Nash', '', '', '', '', NULL, '', NULL, 'llnash18@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2197, '2004-10-22', 'Alison', 'Morgan', '', '', '', '', NULL, '', NULL, 'alisonamorgan@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2201, '2004-10-22', 'Peggy', 'Morrow', '', '', '', '', NULL, '', NULL, 'peggy@peggymorrow.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2202, '2004-10-22', 'Janice', 'Morse', '', '', '', '', NULL, '', NULL, 'janmorse@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2208, '2004-10-22', 'Frances', 'Murphy', '', '', '', '', NULL, '', NULL, 'fmurphy@fmurphyassoc.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2210, '2004-10-22', 'Helen', 'Myers', '', '', '', '', NULL, '', NULL, 'hemyers09@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2211, '2004-10-22', 'Orest', 'Mykolenko', '', '', '', '', NULL, '', NULL, 'mykolenk@umich.edu', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2213, '2004-10-22', 'Sherrell', 'Najman', '', '', '', '', NULL, '', NULL, 'drnajman@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2214, '2004-10-22', 'Bethany', 'Nanzer', '', '', '', '', NULL, '', NULL, 'mikeandbethnanzer@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2216, '2004-10-22', 'Frank', 'Nardoni', '', '', '', '', NULL, '', NULL, 'fnardoni@acromag.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2218, '2004-10-22', 'Don', 'Naughton', '', '', '', '', NULL, '', NULL, 'dsnaughton@aep.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2219, '2004-10-22', 'Cristina', 'Negrut', '', '', '', '', NULL, '', NULL, 'cnegrut@umich.edu', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2222, '2004-10-22', 'Charles', 'Nichols', '', '', '', '', NULL, '', NULL, 'Chasmary1@adelphia.net', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2224, '2004-10-22', 'Elaine', 'Nowak', '', '', '', '', NULL, '', NULL, 'enowak@umich.edu', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2228, '2004-10-22', 'Gary', 'Oats', '', '', '', '', NULL, '', NULL, 'skibumm56@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2229, '2004-10-22', 'Steve', 'Olmstead', '', '', '', '', NULL, '', NULL, 'olmsteadsteve@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2231, '2004-10-22', 'Jodi', 'Olsen', '', '', '', '', NULL, '', NULL, 'jodiann_73@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2232, '2004-10-22', 'Robert', 'Olson', '', '', '', '', NULL, '', NULL, 'robolson@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2233, '2004-10-22', 'Mike and Kay', 'Olthoff', '', '', '', '', NULL, '', NULL, 'kayolth@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2240, '2004-10-22', 'Carol and Park', 'Owens', '', '', '', '', NULL, '', NULL, 'cowens5579@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2241, '2004-10-22', 'Pat', 'Palguta', '', '', '', '', NULL, '', NULL, 'ppalguta@woh.rr.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2245, '2004-10-22', 'Virginia', 'Pelton', '', '', '', '', NULL, '', NULL, 'vmpelton@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2246, '2004-10-22', 'Ryan', 'Perkins', '', '', '', '', NULL, '', NULL, 'ryanperkins160@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8168, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'duakins@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2251, '2004-10-22', 'Mike', 'Plague', '', '', '', '', NULL, '', NULL, 'mplague@ameritech.net', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2254, '2004-10-22', 'Lorraine', 'Polik', '', '', '', '', NULL, '', NULL, 'lwpolik@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2326, '2004-10-22', 'Carl', 'Shimbo', '', '', '', '', NULL, '', NULL, 'carl.shimbo@earthlink.net', NULL, NULL, false, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8699, '2009-07-19', 'Kim', 'Haynak', '630 cunningham', 'Clare', 'Mi', '48617', NULL, '989-386-8084', NULL, 'loweryhaynak@yahoo.com', NULL, NULL, true, 6, 4, '<p>information on weekend scrapbook in oct</p>', '2009-10-24', NULL, '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2266, '2004-10-22', 'Laura', 'Przekop', '', '', '', '', NULL, '', NULL, 'laura_przekop@urscorp.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8313, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'lisa.goetz@verizon.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2277, '2004-10-22', 'Rachel', 'Reid', '', '', '', '', NULL, '', NULL, 'rachelmreid@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2281, '2004-10-22', 'Susan ', 'Reynolds', '', '', '', '', NULL, '', NULL, 'Toosie115@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7784, '2009-02-03', 'Marilyn ', 'Guathier', '', '', '', '', NULL, '', NULL, 'mgauthier59@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-02-03', '2009-02-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2284, '2004-10-22', 'Kelly', 'Rigney', '', '', '', '', NULL, '', NULL, 'rigneykj@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2285, '2004-10-22', 'James and Diane', 'Rikkers', '', '', '', '', NULL, '', NULL, 'jdrikkers@charter.net', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7872, '2009-02-07', 'Robert', 'Payne ', '', '', '', '', NULL, '', NULL, 'olliep80@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-02-07', '2009-02-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2298, '2004-10-22', 'Michael', 'Sanborn', '', '', '', '', NULL, '', NULL, 'msjanborn@dcmi.net', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2300, '2004-10-22', 'Steve', 'Sauer', '', '', '', '', NULL, '', NULL, 'stsauer@plastridge.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2303, '2004-10-22', 'Janice', 'Schiffer', '', '', '', '', NULL, '', NULL, 'socljerker@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2304, '2004-10-22', 'Andrea', 'Schiller', '', '', '', '', NULL, '', NULL, 'schillerhome@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2305, '2004-10-22', 'Mark', 'Schimming', '', '', '', '', NULL, '', NULL, 'schimmingm@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2307, '2004-10-22', 'Steve', 'Schlesinger', '', '', '', '', NULL, '', NULL, 'mfschlesinger@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2310, '2004-10-22', 'Robert', 'Schramm', '', '', '', '', NULL, '', NULL, 'BartSchram@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2316, '2004-10-22', 'Tim', 'Secord', '', '', '', '', NULL, '', NULL, 'skiman10@juno.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2260, '2004-10-22', 'Banpote', 'Poosuthasee', '', '', '', '', NULL, '', NULL, 'banpoos@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2323, '2004-10-22', 'Suzanne', 'Sharkey', '', '', '', '', NULL, '', NULL, 'sjsharkey@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2328, '2004-10-22', 'Jane', 'Short', '', '', '', '', NULL, '', NULL, 'jshort@goshenschools.org', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2330, '2004-10-22', 'Ingrid', 'Siggaard', '', '', '', '', NULL, '', NULL, 'esiggaard@excite.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2332, '2004-10-22', 'Robert', 'Simon', '', '', '', '', NULL, '', NULL, 'simonstein@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2333, '2004-10-22', 'Kevin', 'Skotzke', '', '', '', '', NULL, '', NULL, 'jas6565@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2334, '2004-10-22', 'Dan', 'Slotsema', '', '', '', '', NULL, '', NULL, 'djs@vwlst.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2335, '2004-10-22', 'Mark', 'Slotwinski', '', '', '', '', NULL, '', NULL, 'mslotwinski@genchem.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2337, '2004-10-22', 'Christine', 'Smiggen', '', '', '', '', NULL, '', NULL, 'csmiggen@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2342, '2004-10-22', 'Linda and William', 'Solomon', '', '', '', '', NULL, '', NULL, 'dok1bill@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2343, '2004-10-22', 'Wayne', 'Sorenson', '', '', '', '', NULL, '', NULL, 'wsorenson@earthlink.net', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2345, '2004-10-22', 'Debra', 'Sparrow', '', '', '', '', NULL, '', NULL, 'dsparrow@crosshuller.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2346, '2004-10-22', 'Ken and Karen', 'Spaulding', '', '', '', '', NULL, '', NULL, 'kspaulding@transmatic.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2352, '2004-10-22', 'Gary', 'Stevenson', '', '', '', '', NULL, '', NULL, 'gstevens2@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7951, '2009-03-05', 'sue', 'neil', '385 Stone Falls Dr., #203', 'Ada', 'MI', '49301', NULL, '616-822-9486', NULL, 'sueneil9486@gmail.com', NULL, NULL, true, 9, NULL, '', '2009-05-15', '2009-05-17', 'Hi Mindy!\r
+\r
+Please email me.  The group wants to come up this year.  No scheduling conflicts finally!\r
+\r
+Thanks,\r
+Sue', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8895, '2009-10-26', 'Kathy', 'Partridge', '', '', '', '', NULL, '', NULL, 'kathyapartridge@aol.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-26', '2009-10-26', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2356, '2004-10-22', 'David and Melinda', 'Stone', '', '', '', '', NULL, '', NULL, 'mctaggartstone@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2359, '2004-10-22', 'Victoria', 'Stump', '', '', '', '', NULL, '', NULL, 'stumpvb@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7278, '2008-09-22', 'Maria', 'Lacopelli-Barker', '', '', '', '', NULL, '', NULL, 'miacopel@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', ':12:23:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2361, '2004-10-22', 'David and Barb', 'Sturtz', '', '', '', '', NULL, '', NULL, 'bqsturtz@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2362, '2004-10-22', 'Renee', 'Suchara', '', '', '', '', NULL, '', NULL, 'rsuchara@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2365, '2004-10-22', 'Doug', 'Suna', '', '', '', '', NULL, '', NULL, 'DSuna@msn.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2366, '2004-10-22', 'Gregory', 'Swanson', '', '', '', '', NULL, '', NULL, 'rmsgregory@optonline.net', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2367, '2004-10-22', 'Myrna', 'Sweetland', '', '', '', '', NULL, '', NULL, 'sweetlandmj@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2369, '2004-10-22', 'Todd', 'Taliaferro', '', '', '', '', NULL, '', NULL, 'ttaliaferro@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2370, '2004-10-22', 'Naimei', 'Tang', '', '', '', '', NULL, '', NULL, 'ah2106@wayne.edu', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7873, '2009-02-07', 'Maya', 'Pitts ', '', '', '', '', NULL, '', NULL, 'olsonml@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-02-07', '2009-02-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2372, '2004-10-22', 'Theodore', 'Taylor', '', '', '', '', NULL, '', NULL, 'andreajtaylor@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2373, '2004-10-22', 'Sharon', 'Thayer', '', '', '', '', NULL, '', NULL, 'jaythay@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2375, '2004-10-22', 'Leslie', 'Thomas', '', '', '', '', NULL, '', NULL, 'leslie9591@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2376, '2004-10-22', 'Maureen', 'Thomas', '', '', '', '', NULL, '', NULL, 'maureenthomas123@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7999, '2009-05-10', 'Jon', 'Nies', '', '', '', '', NULL, '', NULL, 'jon.nies@lewan.com', NULL, NULL, false, 9, NULL, 'We have reservations with Nies group in June.  I live in Denver and fly in.  The past serveral years I have been able to gain access to Nies condo on a Tuesday evening (one day early) and pay about $100 extra.  Can I please do this again.  Thx.  Jon    ', NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2380, '2004-10-22', 'Cathy', 'Tristant', '', '', '', '', NULL, '', NULL, 'ctristant@fnf.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2385, '2004-10-22', 'Laurel', 'Tyler', '', '', '', '', NULL, '', NULL, 'laurel.tyler@att.net', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2386, '2004-10-22', 'Ray', 'Ugoroski', '', '', '', '', NULL, '', NULL, 'ugomom@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2388, '2004-10-22', 'Sue', 'Valdez', '', '', '', '', NULL, '', NULL, 'suesail@juno.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2389, '2004-10-22', 'Mary', 'Vandenberg', '', '', '', '', NULL, '', NULL, 'mary_vdb@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2390, '2004-10-22', 'David', 'Vanderweele', '', '', '', '', NULL, '', NULL, 'melawd@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2391, '2004-10-22', 'Scott', 'VanDyken', '', '', '', '', NULL, '', NULL, 'svandyken@vdminc.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2396, '2004-10-22', 'Harry', 'Voss', '', '', '', '', NULL, '', NULL, 'hrmimvoss@msn.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2399, '2004-10-22', 'david', 'Waller', '', '', '', '', NULL, '', NULL, 'wallerdg@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2400, '2004-10-22', 'Lorraine', 'Walsh', '', '', '', '', NULL, '', NULL, 'thewalshes@twmi.rr.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2407, '2004-10-22', 'Lisa', 'Weir', '', '', '', '', NULL, '', NULL, 'ehweir@umich.edu', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2408, '2004-10-22', 'David', 'Weissert', '', '', '', '', NULL, '', NULL, 'jdweissert@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2426, '2004-10-22', 'Linda', 'Wojciechowicz', '', '', '', '', NULL, '', NULL, 'linda_woj@godivachoc.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2412, '2004-10-22', 'Louis', 'White', '', '', '', '', NULL, '', NULL, 'louwhitemd@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8073, '2009-05-22', 'Sheryl', 'Hyman', '', '', '', '', NULL, '', NULL, 'sth051692@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-05-22', '2009-05-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8169, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'dvdbanach@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2418, '2004-10-22', 'Debbie', 'Wilkinson', '', '', '', '', NULL, '', NULL, 'debawilk@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2434, '2004-10-26', 'Lesley ', 'Lawlor', '1946 W Diversey  #G', 'Chicago', 'IL', '60614', NULL, '773-909-4992', NULL, 'lmlawlor@gcfd.org', NULL, NULL, true, 6, 0, '', '2004-01-14', '2004-01-17', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2424, '2004-10-22', 'Darlene', 'Witham', '', '', '', '', NULL, '', NULL, 'dwitham320@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8544, '2009-07-17', 'Michael', 'Hindmarsh', '', '', '', '', NULL, '', NULL, 'onebowtie@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2430, '2004-10-22', 'Joseph', 'Youngheim', '', '', '', '', NULL, '', NULL, 'jbky2000@ameritech.net', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2437, '2004-10-29', 'Scott', 'Bania', '', '', '', '', NULL, '', NULL, 'scott.bania@detroitk12.org', NULL, NULL, true, NULL, NULL, '', '2004-10-29', '2004-10-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2438, '2004-10-29', 'Patricia', 'Cornell', '', '', '', '', NULL, '', NULL, 'pcornell@deloitte.com', NULL, NULL, true, NULL, NULL, '', '2004-10-29', '2004-10-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2440, '2004-10-29', 'Carmen', 'Markstrom', '', '', '', '', NULL, '', NULL, 'clmarkstrom@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-10-29', '2004-10-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2441, '2004-10-29', 'Susan', 'Garrett', '', '', '', '', NULL, '', NULL, 'bonzo1953@charter.net', NULL, NULL, true, NULL, NULL, '', '2004-10-29', '2004-10-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2444, '2004-10-29', 'Cheryl', 'Flox', '', '', '', '', NULL, '', NULL, 'kobylakflox@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2004-10-29', '2004-10-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2446, '2004-10-29', 'Bobbi', 'Cawley', '', '', '', '', NULL, '', NULL, 'cawleybl@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-10-29', '2004-10-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2449, '2004-10-29', 'Ashley', 'Olinghouse', '', '', '', '', NULL, '', NULL, 'ashley_olinghouse@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2004-10-29', '2004-10-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7350, '2008-09-29', 'Tim ', 'Dykstra', '', '', '', '', NULL, '', NULL, 'tpdykstra@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-09-29', '2008-09-29', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2457, '2004-10-29', 'Tyann', 'Crawford', '', '', '', '', NULL, '', NULL, 'ttl76@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-10-29', '2004-10-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2458, '2004-10-29', 'Lisa', 'Ackerly', '', '', '', '', NULL, '', NULL, 'lisa1323@msn.com', NULL, NULL, true, NULL, NULL, '', '2004-10-29', '2004-10-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2459, '2004-10-29', 'Kathryn', 'Shupe', '', '', '', '', NULL, '', NULL, 'kathy.shupe@ymp.gov', NULL, NULL, true, NULL, NULL, '', '2004-10-29', '2004-10-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2463, '2004-10-29', 'Chris', 'Hohenberger', '', '', '', '', NULL, '', NULL, 'chrish@ceoexpress.com', NULL, NULL, true, NULL, NULL, '', '2004-10-29', '2004-10-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2465, '2004-10-29', 'Carol', 'Steenbergh', '', '', '', '', NULL, '', NULL, 'steenpat@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-10-29', '2004-10-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8000, '2009-05-10', 'Lynda', 'Kerns', '1332 Ivywood', 'Okemos', 'MI', '48864', NULL, '517-347-4623', NULL, 'lskerns@gmail.com', NULL, NULL, false, 9, NULL, '', '2009-07-18', '2009-07-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2470, '2004-10-29', 'Joe', 'King', '', '', '', '', NULL, '', NULL, 'jking1704@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-10-29', '2004-10-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2474, '2004-10-29', 'Lori Ann', 'Dickerson', '', '', '', '', NULL, '', NULL, 'dicker22@msu.edu', NULL, NULL, true, NULL, NULL, '', '2004-10-29', '2004-10-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2475, '2004-10-29', 'John', 'Mangum', '', '', '', '', NULL, '', NULL, 'sixtimesadad@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-10-29', '2004-10-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2478, '2004-10-29', 'Ann', 'Benson', '', '', '', '', NULL, '', NULL, 'bensonfamily@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-10-29', '2004-10-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2480, '2004-10-29', 'Robert', 'Smith', '', '', '', '', NULL, '', NULL, 'rasmith17@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2004-10-29', '2004-10-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2481, '2004-10-29', 'Helen', 'Clarren', '', '', '', '', NULL, '', NULL, 'sclarren@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-10-29', '2004-10-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2482, '2004-10-29', 'Leah', 'Tai', '', '', '', '', NULL, '', NULL, 'leahtai@umich.edu', NULL, NULL, true, NULL, NULL, '', '2004-10-29', '2004-10-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2483, '2004-10-29', 'Anne', 'Lohnes', '', '', '', '', NULL, '', NULL, 'annelohnes@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2004-10-29', '2004-10-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2484, '2004-10-29', 'Julia', 'Busik', '', '', '', '', NULL, '', NULL, 'busik@msu.edu', NULL, NULL, true, NULL, NULL, '', '2004-10-29', '2004-10-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8545, '2009-07-17', 'Jeff', 'Hoogstra', '', '', '', '', NULL, '', NULL, 'jeffhoogstra@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2487, '2004-10-29', 'Craig', 'Tomai', '', '', '', '', NULL, '', NULL, 'craigtomai@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-10-29', '2004-10-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2490, '2004-10-29', 'Jason', 'Ritter', '', '', '', '', NULL, '', NULL, 'racinjitter@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-10-29', '2004-10-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2492, '2004-10-29', 'Ron', 'Nelson', '', '', '', '', NULL, '', NULL, 'priorn@juno.com', NULL, NULL, true, NULL, NULL, '', '2004-10-29', '2004-10-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2495, '2004-10-29', 'Joette', 'Gulbis', '', '', '', '', NULL, '', NULL, 'jovility1@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2004-10-29', '2004-10-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2496, '2004-10-29', 'Mark', 'George', '', '', '', '', NULL, '', NULL, 'georgegroup@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-10-29', '2004-10-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2497, '2004-10-29', 'Gard', 'Adams', '', '', '', '', NULL, '', NULL, 'aadams4512@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-10-29', '2004-10-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2501, '2004-11-10', 'Eric', 'Fischer', '629 Fischer Hammock RD.', 'Sebastian', 'Florida', '32958-8303', NULL, '772-589-3159', NULL, 'ecf1@bellsouth.net', NULL, NULL, true, 6, 4, '', '2005-01-23', '2005-01-27', 'snowmobile trip', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2516, '2004-12-21', 'Teresa ', 'Dwyer', '25202 Sullivan Lane', 'Novi', 'MI', '48375', NULL, '(248)380-8478', NULL, 'dwyerte@student.gvsu.edu', NULL, NULL, true, 7, 1, 'I would just like to request a brouchere at this time.', '2005-01-28', '2005-01-30', 'Reccommended by Kathy Bartlett from Nub''s Nob.', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2522, '2004-12-22', 'Julie', 'Deppen', '3218 Wains Way', 'Oakland', 'MI', '48363', NULL, '248-814-9315', NULL, 'mandjdep@aol.com', NULL, NULL, true, 7, 2, '', '2005-02-15', '2005-02-18', 'Also Could Do a 2 Bed, 2 Bath.  Would Like to be close to our friends that have reservations under Tim Walsh', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2524, '2004-12-22', 'George', 'McCroskey', '131 Jakway Ave', 'Benton Harbor', 'Michigan', '49022', NULL, '269 926-1035', NULL, 'gcmccros@aol.com', NULL, NULL, true, 9, 5, '', '2005-07-27', '2005-07-31', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2528, '2004-12-23', 'Len', 'Bartoszewicz', '', '', '', '', NULL, '', NULL, 'doclendo@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2004-12-23', '2004-12-23', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2530, '2004-12-23', 'Glenn', 'Berman', '', '', '', '', NULL, '', NULL, 'gwb1865buy@mac.com', NULL, NULL, true, NULL, NULL, '', '2004-12-23', '2004-12-23', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2515, '2004-12-20', 'Robert', 'Hautamaki', '', '', '', '', NULL, '', NULL, 'rkmaki@aol.com', NULL, NULL, false, 7, 1, '', '2005-01-07', '2004-01-09', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2533, '2004-12-23', 'Dean', 'Blair', '', '', '', '', NULL, '', NULL, 'dblair@foremanblair.com', NULL, NULL, true, NULL, NULL, '', '2004-12-23', '2004-12-23', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2536, '2004-12-23', 'Shareen ', 'Brown', '', '', '', '', NULL, '', NULL, 'shareen.j.brown@accenture.com', NULL, NULL, false, NULL, NULL, '', '2004-12-23', '2004-12-23', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2578, '2004-12-26', 'Izenson', 'Daniel', '', '', '', '', NULL, '', NULL, 'dizenson@kmklaw.com', NULL, NULL, false, NULL, NULL, '', '2004-12-26', '2004-12-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2538, '2004-12-23', 'Diana', 'Carr', '', '', '', '', NULL, '', NULL, 'kdgnkid@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-12-23', '2004-12-23', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2539, '2004-12-23', 'Charles', 'Castle', '', '', '', '', NULL, '', NULL, 'martycastle@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2004-12-23', '2004-12-23', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2541, '2004-12-23', 'Sheldon', 'Cohn', '', '', '', '', NULL, '', NULL, 'scohn@donerus.com', NULL, NULL, true, NULL, NULL, '', '2004-12-23', '2004-12-23', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8583, '2009-07-17', 'Tom', 'Kearly', '', '', '', '', NULL, '', NULL, 'tdkearly@mtu.edu', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7874, '2009-02-07', 'Jeff', 'Chores', '', '', '', '', NULL, '', NULL, 'omegav7@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-02-07', '2009-02-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2569, '2004-12-25', 'Sarah', 'Misener', '819 Strong Avenue', 'Elkhart', 'IN', '46514', NULL, '574-293-4000', NULL, 'tom.misener@verizon.net', NULL, NULL, true, 9, 2, '', '2005-01-21', '2005-01-23', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2559, '2004-12-23', 'Steve ', 'Ford', '', '', '', '', NULL, '', NULL, 'sgford@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2004-12-23', '2004-12-23', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2560, '2004-12-23', 'Tony', 'Fry', '', '', '', '', NULL, '', NULL, 'tcmcf4@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2004-12-23', '2004-12-23', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8170, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'dwilliams157@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2570, '2004-12-25', 'Susan ', 'Remenapp', '29906 Manhattan', 'Saint Clair Shores', 'MI', '48082', NULL, '586-774-7279', NULL, 'sremenapp@hotmail.com', NULL, NULL, true, 0, 0, '', '2004-02-11', '2004-02-15', '', ':2:12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2563, '2004-12-23', 'Janet', 'Gole', '', '', '', '', NULL, '', NULL, 'janet.l.gole@gm.com', NULL, NULL, true, NULL, NULL, '', '2004-12-23', '2004-12-23', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2564, '2004-12-23', 'Daniel', 'Graves', '', '', '', '', NULL, '', NULL, 'dagraves@mapllc.com', NULL, NULL, true, NULL, NULL, '', '2004-12-23', '2004-12-23', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2565, '2004-12-23', 'Wade', 'Gyure', '', '', '', '', NULL, '', NULL, 'wgyure@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2004-12-23', '2004-12-23', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2566, '2004-12-23', 'David', 'Hagan', '', '', '', '', NULL, '', NULL, 'dhsurg@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-12-23', '2004-12-23', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2567, '2004-12-23', 'Lorraine', 'Hart', '', '', '', '', NULL, '', NULL, 'lulu_48116@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2004-12-23', '2004-12-23', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2589, '2004-12-26', 'Sheila', 'Meiste', '3331-48th Street', 'Hamilton', 'MI', '49419', NULL, '269-751-7085', NULL, 'sdmeiste@hotmail.com', NULL, NULL, true, 6, 0, '', '2005-06-24', '2005-06-26', 'Parents 50th Anniversary and want to take family away for weekend.', ':11:3:4:15:10:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2576, '2004-12-26', 'Peggy ', 'Hutcheson', '', '', '', '', NULL, '', NULL, 'peggyhutcheson@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-12-26', '2004-12-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2585, '2004-12-26', 'Dennis', 'Knoblock', '', '', '', '', NULL, '', NULL, 'theknobbys@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2004-12-26', '2004-12-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2590, '2004-12-26', 'Sheng-Ming', 'Kuo', '', '', '', '', NULL, '', NULL, 'smkuo2@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2004-12-26', '2004-12-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2592, '2004-12-26', 'Julie', 'Leto', '', '', '', '', NULL, '', NULL, 'julieren141@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-12-26', '2004-12-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2594, '2004-12-26', 'John', 'Lindow', '', '', '', '', NULL, '', NULL, 'john_lindow@mascohq.com', NULL, NULL, true, NULL, NULL, '', '2004-12-26', '2004-12-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2596, '2004-12-26', 'Szymon', 'Machajewski', '', '', '', '', NULL, '', NULL, 'morganbush@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2004-12-26', '2004-12-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2598, '2004-12-26', 'John', 'Maier', '', '', '', '', NULL, '', NULL, 'mastermaier@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2004-12-26', '2004-12-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2599, '2004-12-26', 'Scott', 'Main', '', '', '', '', NULL, '', NULL, 'scott.main@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-12-26', '2004-12-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2588, '2004-12-26', 'Roman', 'Krzyzanowski', '', '', '', '', NULL, '', NULL, 'romank@abcgrp.com', NULL, NULL, false, NULL, NULL, '', '2004-12-26', '2004-12-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8896, '2009-10-26', 'Carolina', 'DeLuca', '', '', '', '', NULL, '', NULL, 'c.deluca@att.net ', NULL, NULL, true, NULL, NULL, '', '2009-10-26', '2009-10-26', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2603, '2004-12-26', 'Ray', 'Martyniak', '', '', '', '', NULL, '', NULL, 'rmartyniak1@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-12-26', '2004-12-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2607, '2004-12-27', 'Jeffrey', 'McWilliams', '', '', '', '', NULL, '', NULL, 'jpmtmp01@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2004-12-27', '2004-12-27', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7786, '2009-02-03', 'Oktavijan ', 'Minanov', '', '', '', '', NULL, '', NULL, 'minanov@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-02-03', '2009-02-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2655, '2004-12-28', 'David', 'Sandlin', '', '', '', '', NULL, '', NULL, 'quix@wowway.com', NULL, NULL, true, NULL, NULL, '', '2004-12-28', '2004-12-28', '', ':23:', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2618, '2004-12-27', 'Kalpana', 'Nanda', '', '', '', '', NULL, '', NULL, 'knanda64@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2004-12-27', '2004-12-27', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2619, '2004-12-27', 'Cristina', 'Negrut', '', '', '', '', NULL, '', NULL, 'cavrames@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2004-12-27', '2004-12-27', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2620, '2004-12-27', 'Carrie', 'Newman', '', '', '', '', NULL, '', NULL, 'carrieon@msn.com', NULL, NULL, true, NULL, NULL, '', '2004-12-27', '2004-12-27', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2622, '2004-12-27', 'Kathy', 'O''neil', '', '', '', '', NULL, '', NULL, 'kdomad@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-12-27', '2004-12-27', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7952, '2009-03-07', 'Nicole', 'Bartlett', '18254 M32 W', 'Hillman', 'MI', '49746', NULL, '', NULL, 'bakeinmexico@yahoo.com', NULL, NULL, false, 6, 2, 'We are looking for a place to scrapbook for a weekend during the summer.  I see you have something in April.  Would you be able to accommodate a small group at another time with a place to scrap?', NULL, NULL, '', ':Scrapbooking:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2625, '2004-12-27', 'Janice', 'Oneill', '', '', '', '', NULL, '', NULL, 'clarelimerick@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-12-27', '2004-12-27', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2629, '2004-12-27', 'Lynn', 'Paskulovich', '', '', '', '', NULL, '', NULL, 'lynnanddon@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-12-27', '2004-12-27', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2631, '2004-12-27', 'Amy', 'Phillips', '', '', '', '', NULL, '', NULL, 'amygirl2020@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2004-12-27', '2004-12-27', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8001, '2009-05-11', 'Melissa', 'Allen', '', '', '', '', NULL, '', NULL, 'allen4994@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-05-11', '2009-05-11', '', ':23:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9315, '2010-01-21', 'Katherine ', 'Foy', '1745 Andover Ln  S.E.', 'Grand Rapids', 'MI', '49506', NULL, '616949-4204', NULL, 'irishkfoy@comcast.net', NULL, NULL, true, 9, 5, '', '2010-01-28', '2010-01-30', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2641, '2004-12-28', 'Darrick', 'Puffer', '', '', '', '', NULL, '', NULL, 'djpuffer@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-12-28', '2004-12-28', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2644, '2004-12-28', 'Stephanie', 'Reed', '', '', '', '', NULL, '', NULL, 'rebelwab@columbus.rr.com', NULL, NULL, true, NULL, NULL, '', '2004-12-28', '2004-12-28', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2645, '2004-12-28', 'Dave', 'Rice', '', '', '', '', NULL, '', NULL, 'healyrice@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-12-28', '2004-12-28', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2647, '2004-12-28', 'Janice', 'Rolls', '', '', '', '', NULL, '', NULL, 'rollsj@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-12-28', '2004-12-28', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2637, '2004-12-27', 'Linda', 'Procida', '1002 Somerset Avenue', 'Grosse Pointe Park', 'MI', '48230', NULL, '313 824 0527', NULL, 'lprocida3@comcast.net', NULL, NULL, true, 9, 5, '', '2004-12-31', '2005-01-02', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2649, '2004-12-28', 'Jim', 'Ross', '', '', '', '', NULL, '', NULL, 'jamwross@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2004-12-28', '2004-12-28', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2650, '2004-12-28', 'Alyson and Tom', 'Rozgowski', '', '', '', '', NULL, '', NULL, 'therozgowskis@juno.com', NULL, NULL, true, NULL, NULL, '', '2004-12-28', '2004-12-28', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2640, '2004-12-28', 'charles', 'thomson', '', '', '', '', NULL, '', NULL, 'thomson603@yahoo.com', NULL, NULL, true, 5, 1, '', NULL, NULL, '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2653, '2004-12-28', 'Lorie', 'Sandercock', '', '', '', '', NULL, '', NULL, 'blsandercock@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-12-28', '2004-12-28', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2654, '2004-12-28', 'Richard', 'Sanderson', '', '', '', '', NULL, '', NULL, 'r2r3@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-12-28', '2004-12-28', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8171, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'e_youngdahl@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2657, '2004-12-28', 'Sartori', 'Robin', '', '', '', '', NULL, '', NULL, 'ssartori@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-12-28', '2004-12-28', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8914, '2009-10-30', 'Sheri', 'Klein ', '', '', '', '', NULL, '', NULL, 'valtt@aol.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-30', '2009-10-30', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2660, '2004-12-28', 'Ray', 'Sesko', '', '', '', '', NULL, '', NULL, 'marc@sindbadsdetroit.com', NULL, NULL, true, NULL, NULL, '', '2004-12-28', '2004-12-28', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2664, '2004-12-31', 'Heonwoo', 'Song', '', '', '', '', NULL, '', NULL, 'ssong_79@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2004-12-31', '2004-12-31', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2666, '2004-12-31', 'Jennifer', 'Stratton', '', '', '', '', NULL, '', NULL, 'jennestratton@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-12-31', '2004-12-31', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2667, '2004-12-31', 'Kathryn', 'Strobel', '', '', '', '', NULL, '', NULL, 'xdavidstrobelx@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-12-31', '2004-12-31', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2668, '2004-12-31', 'Susan', 'Sullivan', '', '', '', '', NULL, '', NULL, 'sullisus@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-12-31', '2004-12-31', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2662, '2004-12-30', 'michelle', 'allread', '', '', '', '', NULL, '', NULL, 'michlegal@sbcglobal.net', NULL, NULL, true, 9, NULL, '', NULL, NULL, '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2672, '2004-12-31', 'Erika ', 'Temesy', '', '', '', '', NULL, '', NULL, 'candicutie659@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2004-12-31', '2004-12-31', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2675, '2004-12-31', 'Carol', 'Turkus', '', '', '', '', NULL, '', NULL, 'turkuscr@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-12-31', '2004-12-31', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2676, '2004-12-31', 'Urban', 'Kris', '', '', '', '', NULL, '', NULL, 'kurb987@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-12-31', '2004-12-31', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2681, '2004-12-31', 'Randal', 'Vaughn', '', '', '', '', NULL, '', NULL, 'rrvaughn@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-12-31', '2004-12-31', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2682, '2004-12-31', 'Susan', 'Wagener', '', '', '', '', NULL, '', NULL, 'allwags@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-12-31', '2004-12-31', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2684, '2004-12-31', 'John', 'Waker', '', '', '', '', NULL, '', NULL, 'jwaker@msn.com', NULL, NULL, true, NULL, NULL, '', '2004-12-31', '2004-12-31', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2685, '2004-12-31', 'Michael', 'Walker', '', '', '', '', NULL, '', NULL, 'mswalker@kwcom.net', NULL, NULL, true, NULL, NULL, '', '2004-12-31', '2004-12-31', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2686, '2004-12-31', 'Carol', 'Wallace', '', '', '', '', NULL, '', NULL, 'rwallace@chartermi.net', NULL, NULL, true, NULL, NULL, '', '2004-12-31', '2004-12-31', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8002, '2009-05-11', 'Chris and Laura', 'Nyes', '', '', '', '', NULL, '', NULL, 'nyesweb@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-05-11', '2009-05-11', '', ':23:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2700, '2004-12-31', 'Avra', 'Williams', '', '', '', '', NULL, '', NULL, 'avrawill@wideopenwest.com', NULL, NULL, true, NULL, NULL, '', '2004-12-31', '2004-12-31', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2691, '2004-12-31', 'John and Judy', 'Wavro', '', '', '', '', NULL, '', NULL, 'jjwavro@msn.com', NULL, NULL, true, NULL, NULL, '', '2004-12-31', '2004-12-31', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2693, '2004-12-31', 'Mary', 'Waxer', '', '', '', '', NULL, '', NULL, 'luvtolaugh123@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2004-12-31', '2004-12-31', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7787, '2009-02-03', 'Malinda', 'Heidenreich', '', '', '', '', NULL, '', NULL, 'mindymay@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-02-03', '2009-02-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2702, '2004-12-31', 'Gerald', 'Wischer ', '', '', '', '', NULL, '', NULL, 'jwischer@ovbank.com', NULL, NULL, true, NULL, NULL, '', '2004-12-31', '2004-12-31', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2705, '2004-12-31', 'Jason', 'Yaldoo', '', '', '', '', NULL, '', NULL, 'donaldh@coslink.net', NULL, NULL, true, NULL, NULL, '', '2004-12-31', '2004-12-31', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2709, '2004-12-31', 'Jody', 'Zwyghuizen', '', '', '', '', NULL, '', NULL, 'jlz38@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2004-12-31', '2004-12-31', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2714, '2005-01-02', 'FRANK', 'MOURTOS', '904 BLAIRMOOR CT.', 'GROSSE POINTE WOODS', 'MI', '48236', NULL, '313-220-2638', NULL, 'FMOURTOS@COMCAST.NET', NULL, NULL, true, 9, 0, '', '2005-02-04', '2005-02-06', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2723, '2005-01-04', 'nancy', 'herringshaw', '14869 shady lane', 'shelby twp.', 'mi', '48315', NULL, '', NULL, 'nherringshaw@comcast.net', NULL, NULL, true, 4, 5, '', '2005-01-21', '2005-01-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2745, '2005-01-18', 'Rich ', 'Royer', '', '', '', '', NULL, '', NULL, 'rich.royer@compuware.com', NULL, NULL, true, 9, NULL, '', NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2771, '2005-02-10', 'Leigh', 'Kraushaar', '3850 Ashbrook', 'Holt', 'MI', '48842', NULL, '', NULL, 'lkraushaar@comcast.net', NULL, NULL, false, 3, NULL, 'This is our notice, we are cancelling our reservation #66680.  I can be reached at 517-887-1775.  Leigh Kraushaar', NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2776, '2005-03-02', 'Suzanne', 'Adelman ', '46 South Street', 'Holliston', 'MA', '01746', NULL, '508-893-9818', NULL, 'sueadel@comcast.net', NULL, NULL, true, NULL, 2, '', '2005-08-16', '2005-08-31', 'We are planning a family vacation to the area.  There will be three groupls traveling together ... Need to discuss various situations for housing. Especially interested in golf & the kids programs.  Thanks Suzanne', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2779, '2005-03-18', 'Roberta', 'Combs', '4050 Rockrose Lane', 'Zephyrhills', 'FL', '33541', NULL, '', NULL, 'dumdom@earthlink.net', NULL, NULL, true, 9, 5, 'Can''t seem to get thru on your link for info.\r
+What is your best deal for dates listed above or for June 8 thru June 13 or June 12 and 13.', '2005-06-08', '2005-06-10', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2781, '2005-03-22', 'Jason', 'Gilles', '1557 S. Finn Rd.', 'Munger', 'Michigan', '48747', NULL, '989-659-2674', NULL, 'jason@steelefuneraldirectors.com', NULL, NULL, true, 4, 5, 'Is it possible to check in wednesday, march 30th earlier then 5pm?', '2005-03-30', '2005-04-01', ' Recently engaged couple,looking for a few days of relaxing out of the office and out of the house.', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7386, '2008-10-11', 'Nick', '', '', '', '', '', NULL, '', NULL, 'MajorZero01@yahoo.com', NULL, NULL, false, 9, NULL, 'I am planing a trip with some friends and family paid for buy me with my credit card. I am 18 years old is that a problem? Local hotels in metro Detroit require that you are 21.', NULL, NULL, '', ':Ski Trip:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2787, '2005-04-09', 'deborah', 'miller', '5850 westward passage', 'harbor springs', 'mi', '49740 ', NULL, '231 526 2533', NULL, 'djcmiller@Aol.com', NULL, NULL, false, NULL, NULL, '', NULL, NULL, 'interested in rec''vng information re: 4th of july art fair - application deadline?\r
+thanks', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2783, '2005-03-25', 'Patricia', 'Parker', '920 Hawthorne Street', 'Tallahassee', 'FL', '32308', NULL, '', NULL, 'parker726@aol.com', NULL, NULL, false, 4, 0, 'Please send me any sales information you may have. Thank you!', NULL, NULL, '', ':19:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2784, '2005-03-26', 'Bob', 'Obert', '', 'Toledo', '', '', NULL, '', NULL, 'obert11@yahoo.com', NULL, NULL, true, 6, 5, 'I am interested in visiting on Fri April 1st to view possible condos for sale.  thanks  Bob', '2005-04-01', '2005-04-02', '', ':19:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2804, '2005-05-27', 'Jim', 'Roman', '', '', '', '', NULL, '', NULL, 'roman5@wowway.com', NULL, NULL, true, NULL, NULL, '', '2005-05-27', '2005-05-27', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2788, '2005-04-13', 'Debbie', 'Mathewson', '3979 Foster', 'Mt Pleasant', 'MI  ', '48858', NULL, '9897747509', NULL, 'mathe1dl@cmich.edu', NULL, NULL, false, 8, 1, '', NULL, NULL, 'I''m unable to attend the scrapbooking weekend scheduled in late April.  Do you have scrapbooking retreats on a regular basis, is so do you have any future ones scheduled.  Please let me know the dates or keep me on your mailing list for future crops.  Thanks.', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2809, '2005-05-27', 'Kris', 'Cook', '', '', '', '', NULL, '', NULL, 'krispy40@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-05-27', '2005-05-27', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2810, '2005-05-27', 'Rennee', 'Rudloff', '', '', '', '', NULL, '', NULL, 'rrudloff@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-05-27', '2005-05-27', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2824, '2005-05-27', '', 'Lawlor', '', '', '', '', NULL, '', NULL, 'vllawlor@sympatico.ca', NULL, NULL, true, NULL, NULL, '', '2005-05-27', '2005-05-27', '', ':23:', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2813, '2005-05-27', 'Tom', 'Lloyd', '', '', '', '', NULL, '', NULL, 'telloyd@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-05-27', '2005-05-27', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2817, '2005-05-27', 'Andrew', 'Boyce', '', '', '', '', NULL, '', NULL, 'aboyce@dickinsonwright.com', NULL, NULL, true, NULL, NULL, '', '2005-05-27', '2005-05-27', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2819, '2005-05-27', 'Reginald', 'Gomez', '', '', '', '', NULL, '', NULL, 'pianoman1679@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2005-05-27', '2005-05-27', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2822, '2005-05-27', 'julie', 'Moore', '', '', '', '', NULL, '', NULL, 'jmoore@shrr.com', NULL, NULL, true, NULL, NULL, '', '2005-05-27', '2005-05-27', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8546, '2009-07-17', 'Holly', 'Hoadley', '', '', '', '', NULL, '', NULL, 'hollytraver@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2836, '2005-06-02', 'Joseph', 'Kiefer', '', '', '', '', NULL, '', NULL, 'jkiefer580@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-06-02', '2005-06-02', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2837, '2005-06-02', 'Martin', 'Quinn', '', '', '', '', NULL, '', NULL, 'mquinnrcs@wideopenwest.com', NULL, NULL, true, NULL, NULL, '', '2005-06-02', '2005-06-02', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2847, '2005-06-02', 'Finz 1', 'Ghandhi', '', '', '', '', NULL, '', NULL, 'fghandhi@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-06-02', '2005-06-02', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2850, '2005-06-02', 'Joann', 'Doyle', '', '', '', '', NULL, '', NULL, 'jdoyle420@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2005-06-02', '2005-06-02', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8584, '2009-07-17', 'Ken', 'Rowe', '', '', '', '', NULL, '', NULL, 'klrowe@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2854, '2005-06-02', 'Andy', 'Washington', '', '', '', '', NULL, '', NULL, 'kingqbbq@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-06-02', '2005-06-02', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2855, '2005-06-02', 'Jennifer', 'Charon', '', '', '', '', NULL, '', NULL, 'charonjenn@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-06-02', '2005-06-02', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2857, '2005-06-02', 'Kim', 'Stencel', '', '', '', '', NULL, '', NULL, 'kstencel@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-06-02', '2005-06-02', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2858, '2005-06-02', 'Butch', 'Reber', '', '', '', '', NULL, '', NULL, 'theskismith@copper.net', NULL, NULL, true, NULL, NULL, '', '2005-06-02', '2005-06-02', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2863, '2005-06-02', 'Griffin', 'Brown', '', '', '', '', NULL, '', NULL, 'gdotbrown@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-06-02', '2005-06-02', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2865, '2005-06-02', 'Jim', 'Floer', '', '', '', '', NULL, '', NULL, 'jimfloer@competitiontire.com', NULL, NULL, true, NULL, NULL, '', '2005-06-02', '2005-06-02', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2866, '2005-06-02', 'Michella', 'Roche', '', '', '', '', NULL, '', NULL, 'michella_r@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2005-06-02', '2005-06-02', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2868, '2005-06-02', 'Gordon', 'Erley', '', '', '', '', NULL, '', NULL, 'gorderley@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-06-02', '2005-06-02', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2869, '2005-06-02', 'Julie', 'Stone', '', '', '', '', NULL, '', NULL, 'jahstone22@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-06-02', '2005-06-02', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2871, '2005-06-02', 'Maureen', 'Murray', '', '', '', '', NULL, '', NULL, 'M.Murray1@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-06-02', '2005-06-02', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7953, '2009-03-12', 'Joyce', 'Imhoff', '', '', '', '', NULL, '', NULL, 'robertimhoff@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-03-12', '2009-03-12', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2875, '2005-06-02', 'Cynthia', 'Petricca', '', '', '', '', NULL, '', NULL, 'bratilla57@wowway.com', NULL, NULL, true, NULL, NULL, '', '2005-06-02', '2005-06-02', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2913, '2005-06-03', 'Caroline', 'Fix', '', '', '', '', NULL, '', NULL, 'csfix@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2005-06-03', '2005-06-03', '', ':2:', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2928, '2005-06-03', 'Michael ', 'Breen', '', '', '', '', NULL, '', NULL, 'mfbreen1@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-06-03', '2005-06-03', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2885, '2005-06-02', 'Patrice', 'Gage', '', '', '', '', NULL, '', NULL, 'patricegage@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2005-06-02', '2005-06-02', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2888, '2005-06-02', 'Cheryl', 'Scott', '', '', '', '', NULL, '', NULL, 'cajcscott@msn.com', NULL, NULL, true, NULL, NULL, '', '2005-06-02', '2005-06-02', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7387, '2008-10-15', 'Fred', 'Flavell', '', '', '', '', NULL, '', NULL, 'huntin55@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-10-15', '2008-10-15', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2890, '2005-06-02', 'Erica', 'Kovacs', '', '', '', '', NULL, '', NULL, 'evkovacs@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-06-02', '2005-06-02', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2894, '2005-06-02', 'Shareen', 'Brown', '', '', '', '', NULL, '', NULL, 'davidbr@cooperelliott.com', NULL, NULL, true, NULL, NULL, '', '2005-06-02', '2005-06-02', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2896, '2005-06-02', 'Stahley', 'Rykulski', '', '', '', '', NULL, '', NULL, 'rye1949@msn.com', NULL, NULL, true, NULL, NULL, '', '2005-06-02', '2005-06-02', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2897, '2005-06-02', 'Robert', 'Olson', '', '', '', '', NULL, '', NULL, 'rolson@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-06-02', '2005-06-02', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2898, '2005-06-02', 'Norman', 'Kolvoda', '', '', '', '', NULL, '', NULL, 'rsanorm@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-06-02', '2005-06-02', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2901, '2005-06-02', 'Amanda', 'Bohl', '', '', '', '', NULL, '', NULL, 'amandabohl@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2005-06-02', '2005-06-02', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2903, '2005-06-02', 'Brian', 'Duneske', '', '', '', '', NULL, '', NULL, 'bduneske@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-06-02', '2005-06-02', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2936, '2005-06-03', 'Kathy & Rich ', 'Bartlett', '', '', '', '', NULL, '', NULL, 'bartletts@twmi.rr.com', NULL, NULL, true, NULL, NULL, '', '2005-06-03', '2005-06-03', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2906, '2005-06-02', '', 'Sadiq', '', '', '', '', NULL, '', NULL, 'bmamajones@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-06-02', '2005-06-02', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2907, '2005-06-02', '', 'Sadiq', '', '', '', '', NULL, '', NULL, 'rajusadiq@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-06-02', '2005-06-02', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8003, '2009-05-11', 'Zishan', 'Siddiqui', '', '', '', '', NULL, '', NULL, 'zas2@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-05-11', '2009-05-11', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2909, '2005-06-03', 'Sue', 'Aprill', '', '', '', '', NULL, '', NULL, 'saprill@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-06-03', '2005-06-03', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2911, '2005-06-03', 'Richard', 'Hughes', '', '', '', '', NULL, '', NULL, 'phughes@voyager.net', NULL, NULL, true, NULL, NULL, '', '2005-06-03', '2005-06-03', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2916, '2005-06-03', '', 'Nosis', '', '', '', '', NULL, '', NULL, 'sherbot15@lycos.com', NULL, NULL, true, NULL, NULL, '', '2005-06-03', '2005-06-03', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2917, '2005-06-03', 'Bill', 'VanCleve', '', '', '', '', NULL, '', NULL, 'bvc@foto1.com', NULL, NULL, true, NULL, NULL, '', '2005-06-03', '2005-06-03', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2922, '2005-06-03', 'Tom', 'Crowe', '', '', '', '', NULL, '', NULL, 'tom@relativeways.com', NULL, NULL, true, NULL, NULL, '', '2005-06-03', '2005-06-03', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2924, '2005-06-03', 'Brian & Kathy', 'Murphy', '', '', '', '', NULL, '', NULL, 'kmurph1125@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-06-03', '2005-06-03', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8458, '2009-06-07', 'Todd', 'Holmes', '', '', '', '', NULL, '', NULL, 'teholmes@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2926, '2005-06-03', '', 'Cliff', '', '', '', '', NULL, '', NULL, 'spliff13@msn.com', NULL, NULL, true, NULL, NULL, '', '2005-06-03', '2005-06-03', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2972, '2005-07-11', 'Lorna', 'Garibian', '2129 Nickelby Drive', 'Shelby Township', 'MI', '48316', NULL, '586.677.8101', NULL, 'alglmg@comcast.net', NULL, NULL, true, 9, 5, '', '2005-08-03', '2005-08-05', '', ':12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8075, '2009-05-22', 'D', 'Onesi', '', '', '', '', NULL, '', NULL, 'donesi@aespeo.com', NULL, NULL, true, NULL, NULL, '', '2009-05-22', '2009-05-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2931, '2005-06-03', '', 'Gutschenritter', '', '', '', '', NULL, '', NULL, 'jsar@hit.net', NULL, NULL, true, NULL, NULL, '', '2005-06-03', '2005-06-03', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2933, '2005-06-03', 'Marc', 'Brewer', '', '', '', '', NULL, '', NULL, 'marcjulieb@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-06-03', '2005-06-03', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2934, '2005-06-03', 'Steve & Meryl', 'Way', '', '', '', '', NULL, '', NULL, 'steveway48054@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-06-03', '2005-06-03', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2939, '2005-06-03', 'James', 'Lundie', '', '', '', '', NULL, '', NULL, 'jlundie23@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-06-03', '2005-06-03', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2945, '2005-06-19', 'Paul', 'Dufault', '', '', '', '', NULL, '', NULL, 'pdufault@twmi.rr.com', NULL, NULL, true, NULL, NULL, '', NULL, NULL, 'Test of internet connection.  Sent from unit 5 @ 1:20 pm 6/19/05', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2951, '2005-06-27', 'duncan', 'thomas', '', '', '', '', NULL, '', NULL, 'dthomas@pbenet.com', NULL, NULL, false, 4, NULL, 'Gentlemen, my son Nicholas Thomas has reserved a 5-bedroom condo beginning this saturday the 2nd for his wedding party.  I need the number of the condo to put into a directions sheet for those who are driving up there. can you kindly provide this?  thanks, duncan thomas 904-338-7668', NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2953, '2005-07-07', 'Karen', 'Czarkowski', '', '', '', '', NULL, '', NULL, 'kaczarkowski@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-07-07', '2005-07-07', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2955, '2005-07-07', 'Kim', 'Hyames', '', '', '', '', NULL, '', NULL, 'dkhyames@chartermi.net', NULL, NULL, true, NULL, NULL, '', '2005-07-07', '2005-07-07', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2957, '2005-07-07', 'Nancy', 'Zamiara', '', '', '', '', NULL, '', NULL, 'nzamiara@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-07-07', '2005-07-07', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8172, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'edwardrago@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2971, '2005-07-07', 'Doug & Julie', 'Bunker', '', '', '', '', NULL, '', NULL, 'jbkbunker@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2005-07-07', '2005-07-07', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2964, '2005-07-07', 'Scott', 'Helmic', '', '', '', '', NULL, '', NULL, 'helmics2@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-07-07', '2005-07-07', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2965, '2005-07-07', 'Louis', 'Hallacy', '', '', '', '', NULL, '', NULL, 'louii@hallacy.org', NULL, NULL, true, NULL, NULL, '', '2005-07-07', '2005-07-07', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2966, '2005-07-07', 'Dr.Milton', 'Gordon', '', '', '', '', NULL, '', NULL, 'shergordon@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-07-07', '2005-07-07', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3018, '2005-08-02', 'Robert', 'Soave', '', '', '', '', NULL, '', NULL, 'r1soave@msn.com', NULL, NULL, true, NULL, NULL, '', '2005-08-02', '2005-08-02', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2970, '2005-07-07', 'Sandra', 'Lovell', '', '', '', '', NULL, '', NULL, 'lovells@mi.gov', NULL, NULL, true, NULL, NULL, '', '2005-07-07', '2005-07-07', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2974, '2005-07-12', 'Herb ', 'Kummer', '', '', '', '', NULL, '', NULL, 'kummerh@bellsouth.net', NULL, NULL, true, NULL, NULL, '', '2005-07-12', '2005-07-12', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2977, '2005-07-14', 'Karen', 'Listwan', '', '', '', '', NULL, '', NULL, 'karenlistwan@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-07-14', '2005-07-14', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9134, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'ltouma@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2982, '2005-07-15', 'Sarah', 'Vandemark', '', '', '', '', NULL, '', NULL, 'twizzle900@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-07-15', '2005-07-15', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2985, '2005-07-15', 'Sheril', 'Escudero', '', '', '', '', NULL, '', NULL, 'vahl222@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2005-07-15', '2005-07-15', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3009, '2005-08-02', 'John H.', 'Nash', '', '', '', '', NULL, '', NULL, 'jhnman1@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2005-08-02', '2005-08-02', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2990, '2005-07-18', 'MARJORIE ', 'HARTKOPF', '6861 Fredericksburg Dr.', 'Sylvania', 'Ohio', '43560', NULL, '419/882-4638', NULL, 'mlkh@sev.org', NULL, NULL, false, NULL, NULL, 'I have 2 reservations for Condo''s Aug. 8.9,10 & 11th.  Do you have packages to Mackinaw Island.  If so...how much is it for adults and also children?\r
+Thank You!', NULL, NULL, 'Mackinaw Island', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2991, '2005-07-19', '', 'Hayward', '', '', '', '', NULL, '', NULL, 'hjhayward@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-07-19', '2005-07-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2992, '2005-07-19', 'Craig', 'Nelson', '', '', '', '', NULL, '', NULL, 'jmyersnelson@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2005-07-19', '2005-07-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2994, '2005-07-21', 'Mike', 'Sovel', '', '', '', '', NULL, '', NULL, 'sovelmj@umich.edu', NULL, NULL, true, NULL, NULL, '', '2005-07-21', '2005-07-21', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3014, '2005-08-02', 'Bill', 'Grimshaw', '', '', '', '', NULL, '', NULL, 'sgrimsha@bordersgroupinc.com', NULL, NULL, false, NULL, NULL, '', '2005-08-02', '2005-08-02', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7876, '2009-02-09', 'Dan', 'Mullen', '', '', '', '', NULL, '', NULL, 'dan@plittco.com', NULL, NULL, true, NULL, NULL, '', '2009-02-09', '2009-02-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3000, '2005-07-22', 'Susan', 'Crowell', '', '', '', '', NULL, '', NULL, 'jcsasc@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-07-22', '2005-07-22', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3008, '2005-08-02', 'Micheal', 'Mack', '', '', '', '', NULL, '', NULL, 'mmack43@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-08-02', '2005-08-02', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3011, '2005-08-02', 'Vanessa', 'Queen', '', '', '', '', NULL, '', NULL, 'vqueen@twmi.rr.com', NULL, NULL, true, NULL, NULL, '', '2005-08-02', '2005-08-02', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7788, '2009-02-03', 'Michael', 'Sanborn', '', '', '', '', NULL, '', NULL, 'mjsanborn@dcmi.net', NULL, NULL, true, NULL, NULL, '', '2009-02-03', '2009-02-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3013, '2005-08-02', 'Dr. & Mrs. Jack', 'Wayne', '', '', '', '', NULL, '', NULL, 'JACKWAYNE8608@SBCGLOBAL.NET', NULL, NULL, true, NULL, NULL, '', '2005-08-02', '2005-08-02', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8173, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'egeland1@msn.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3017, '2005-08-02', '', 'Orfanos', '', '', '', '', NULL, '', NULL, 'torfanos@cyberz.net', NULL, NULL, true, NULL, NULL, '', '2005-08-02', '2005-08-02', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3019, '2005-08-02', 'Janet A.', 'Wyatt', '', '', '', '', NULL, '', NULL, 'tomtwo2@bellsouth.net', NULL, NULL, true, NULL, NULL, '', '2005-08-02', '2005-08-02', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2996, '2005-07-21', 'Tim', 'Eckerle', '', '', '', '', NULL, '', NULL, 'mteckerle@prodigy.net', NULL, NULL, true, NULL, NULL, '', '2005-07-21', '2005-07-21', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3044, '2005-08-10', 'TC', 'Anderson', '', '', '', '', NULL, '', NULL, 'tcanderson3@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-08-10', '2005-08-10', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3024, '2005-08-09', 'Natalia', 'Odish', '3530 Warwick Drive', 'Rochester Hills', 'MI', '48309', NULL, '248-396-1521', NULL, 'nataliaodish@yahoo.com', NULL, NULL, true, 9, NULL, 'You may e-mail me...that''s the quickest way to respond to me.  Thank You very much!', '2005-09-03', '2005-09-05', 'Can you please tell me what you have available for Labor Day weekend for approximately 6 people or just for 2 people......sizes and prices please?  ', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3027, '2005-08-10', 'Warren', 'Abbs', '', '', '', '', NULL, '', NULL, 'warren.abbs@nationalcity.com', NULL, NULL, true, NULL, NULL, '', '2005-08-10', '2005-08-10', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3028, '2005-08-10', 'Catherine', 'Abellera', '', '', '', '', NULL, '', NULL, 'kukla13@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2005-08-10', '2005-08-10', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3030, '2005-08-10', 'Deborah', 'Adams', '', '', '', '', NULL, '', NULL, 'ldjjadams@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-08-10', '2005-08-10', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3031, '2005-08-10', 'Scott', 'Adams', '', '', '', '', NULL, '', NULL, 'scott@geoproductsinc.com', NULL, NULL, true, NULL, NULL, '', '2005-08-10', '2005-08-10', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3035, '2005-08-10', 'David', 'Allen', '', '', '', '', NULL, '', NULL, 'mountaingremlin@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-08-10', '2005-08-10', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3036, '2005-08-10', 'Jennifer', 'Allen', '', '', '', '', NULL, '', NULL, 'jjallen253@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-08-10', '2005-08-10', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8254, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'joliez@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3069, '2005-08-10', 'Matthew', 'Barwick', '', '', '', '', NULL, '', NULL, 'mbarwick@ford.com', NULL, NULL, false, NULL, NULL, '', '2005-08-10', '2005-08-10', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3034, '2005-08-10', 'Judy', 'Alfieri', '', '', '', '', NULL, '', NULL, 'judy1@wideopenwest.com', NULL, NULL, true, NULL, NULL, '', '2005-08-10', '2005-08-10', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3023, '2005-08-04', 'James', 'Codo', '802 Childers Loop', 'Brandon', 'Fl', '33511-6105', NULL, '813-689-6817', NULL, 'jcodo@msn.com', NULL, NULL, true, 6, 5, '', NULL, NULL, '', ':17:18:19:10:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2983, '2005-07-15', 'Jody', 'Glotfelty', '', '', '', '', NULL, '', NULL, 'philjody@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-07-15', '2005-07-15', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3047, '2005-08-10', 'Michael', 'Areddy', '', '', '', '', NULL, '', NULL, 'mareddy@travispointe.com', NULL, NULL, true, NULL, NULL, '', '2005-08-10', '2005-08-10', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3048, '2005-08-10', 'Jessica', 'Argyle', '', '', '', '', NULL, '', NULL, 'jargyle1378@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-08-10', '2005-08-10', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3049, '2005-08-10', 'Anne', 'Armour', '', '', '', '', NULL, '', NULL, 'aarmour5@emirates.net.ae', NULL, NULL, true, NULL, NULL, '', '2005-08-10', '2005-08-10', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3050, '2005-08-10', 'Kathleen & Randy', 'Aron', '', '', '', '', NULL, '', NULL, 'aron@chartermi.net', NULL, NULL, true, NULL, NULL, '', '2005-08-10', '2005-08-10', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3051, '2005-08-10', 'Kimberly', 'Ashmore', '', '', '', '', NULL, '', NULL, 'krashmore@msn.com', NULL, NULL, true, NULL, NULL, '', '2005-08-10', '2005-08-10', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3053, '2005-08-10', 'Aasma', 'Aziz', '', '', '', '', NULL, '', NULL, 'aasma_aziz@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2005-08-10', '2005-08-10', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3054, '2005-08-10', 'Patricia', 'Back', '', '', '', '', NULL, '', NULL, 'backpatti@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2005-08-10', '2005-08-10', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3056, '2005-08-10', 'Angela', 'Bainbridge', '', '', '', '', NULL, '', NULL, 'pprsul@msn.com', NULL, NULL, true, NULL, NULL, '', '2005-08-10', '2005-08-10', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3077, '2005-08-10', 'Andrea', 'Bennett', '', '', '', '', NULL, '', NULL, 'andrealbennett@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-08-10', '2005-08-10', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3082, '2005-08-11', 'Hank ', 'Bosley', '', '', '', '', NULL, '', NULL, 'boz5602@yahoo.com', NULL, NULL, true, 9, NULL, '', NULL, NULL, '', ':19:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3061, '2005-08-10', 'Frank & Lynn', 'Barazsu', '', '', '', '', NULL, '', NULL, 'lyndbear@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-08-10', '2005-08-10', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3062, '2005-08-10', 'Pat & Larry', 'Barazsu', '', '', '', '', NULL, '', NULL, 'pat.barazsu@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2005-08-10', '2005-08-10', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3071, '2005-08-10', 'Mary', 'Bear', '', '', '', '', NULL, '', NULL, 'merk.bear@jbtool.com', NULL, NULL, true, NULL, NULL, '', '2005-08-10', '2005-08-10', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3073, '2005-08-10', 'Michael', 'Belczynski', '', '', '', '', NULL, '', NULL, 'mbelc1959@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-08-10', '2005-08-10', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3074, '2005-08-10', 'Patty', 'Belew', '', '', '', '', NULL, '', NULL, 'catb45@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-08-10', '2005-08-10', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3076, '2005-08-10', 'Sarah', 'Bender', '', '', '', '', NULL, '', NULL, 's06.sbender@wittenberg.edu', NULL, NULL, true, NULL, NULL, '', '2005-08-10', '2005-08-10', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3032, '2005-08-10', 'Steve', 'Adams', '', '', '', '', NULL, '', NULL, 'steve@tritecseal.com', NULL, NULL, true, NULL, NULL, '', '2005-08-10', '2005-08-10', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3079, '2005-08-10', 'William', 'Bennett', '', '', '', '', NULL, '', NULL, 'mcolleenbennett@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2005-08-10', '2005-08-10', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3093, '2005-08-28', 'Jerry and Chris ', 'Maiorano', '', '', '', '', NULL, '', NULL, 'jmaiorano@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-08-28', '2005-08-28', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3086, '2005-08-28', 'Wendy', 'Palm', '', '', '', '', NULL, '', NULL, 'wenandwill@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-08-28', '2005-08-28', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3088, '2005-08-28', 'William ', 'Moody', '', '', '', '', NULL, '', NULL, 'wmlarmoody@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-08-28', '2005-08-28', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7877, '2009-02-09', 'Dan', 'Cohen', '', '', '', '', NULL, '', NULL, 'danielandcari@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-02-09', '2009-02-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3091, '2005-08-28', 'David', 'Jolly', '', '', '', '', NULL, '', NULL, 'jollyba@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-08-28', '2005-08-28', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3094, '2005-08-28', 'Ellen and Todd', 'Mislan', '', '', '', '', NULL, '', NULL, 'miz16@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2005-08-28', '2005-08-28', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3095, '2005-08-28', 'Lori', 'Popis', '', '', '', '', NULL, '', NULL, 'lori.popis@gm.com', NULL, NULL, true, NULL, NULL, '', '2005-08-28', '2005-08-28', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3098, '2005-08-28', 'Amy', 'Contrera', '', '', '', '', NULL, '', NULL, '317lewis@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-08-28', '2005-08-28', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3127, '2005-08-29', 'Alice', 'Hallman', '', '', '', '', NULL, '', NULL, 'ahallman@wright-filippis.com', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3100, '2005-08-28', 'Suzan', 'Washegesic', '', '', '', '', NULL, '', NULL, 'ronsumel@btc-bci.com', NULL, NULL, true, NULL, NULL, '', '2005-08-28', '2005-08-28', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3101, '2005-08-28', 'Patrick', 'Coveny', '', '', '', '', NULL, '', NULL, 'arch.cm@att.net', NULL, NULL, true, NULL, NULL, '', '2005-08-28', '2005-08-28', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7587, '2008-11-13', 'Kim', 'Mitchell', '', '', '', '', NULL, '', NULL, 'kahm2359@cablespeed.com', NULL, NULL, true, NULL, NULL, '', '2008-11-13', '2008-11-13', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3103, '2005-08-28', 'Chris and Mike', 'Valuck', '', '', '', '', NULL, '', NULL, 'cvaluck@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-08-28', '2005-08-28', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3105, '2005-08-28', 'Daniel', 'Bloesch', '', '', '', '', NULL, '', NULL, 'dsbdandy39@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2005-08-28', '2005-08-28', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3106, '2005-08-28', 'Kristen', 'Hosni', '', '', '', '', NULL, '', NULL, 'kjseryak@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2005-08-28', '2005-08-28', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3087, '2005-08-28', 'Courtney', 'McCreadie', '', '', '', '', NULL, '', NULL, 'cemccreadie@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-08-28', '2005-08-28', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3109, '2005-08-28', 'Wendy', 'Gosney', '', '', '', '', NULL, '', NULL, 'gosneys@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-08-28', '2005-08-28', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3110, '2005-08-28', 'Mark', 'Logan', '', '', '', '', NULL, '', NULL, 'shellogan@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2005-08-28', '2005-08-28', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3113, '2005-08-28', 'Ken', 'Merritt', '', '', '', '', NULL, '', NULL, 'kenneth.merritt@ceflawyers.com', NULL, NULL, true, NULL, NULL, '', '2005-08-28', '2005-08-28', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3114, '2005-08-28', 'John', 'Birchmeier', '', '', '', '', NULL, '', NULL, 'johnbirchmeier@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2005-08-28', '2005-08-28', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3115, '2005-08-28', 'Phil', 'Guastella', '', '', '', '', NULL, '', NULL, 'philg1@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-08-28', '2005-08-28', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3117, '2005-08-28', 'Ronald', 'Kuyper', '', '', '', '', NULL, '', NULL, 'kuypermr@alliancecom.net', NULL, NULL, true, NULL, NULL, '', '2005-08-28', '2005-08-28', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3119, '2005-08-28', 'Elizabeth', 'Gawin', '', '', '', '', NULL, '', NULL, 'bgawin@cinci.rr.com', NULL, NULL, true, NULL, NULL, '', '2005-08-28', '2005-08-28', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3121, '2005-08-29', 'Karl', 'Brunsman', '', '', '', '', NULL, '', NULL, '4kjs@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3123, '2005-08-29', 'Anthony', 'Nestor', '', '', '', '', NULL, '', NULL, 'a.nestor@worldnet.att.net', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7954, '2009-03-12', 'Linda', 'Bedell-Kucway', '', '', '', '', NULL, '', NULL, 'm.bedell@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-03-12', '2009-03-12', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3125, '2005-08-29', 'Al', 'Butler', '', '', '', '', NULL, '', NULL, 'abutler@nucalgon.com', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3126, '2005-08-29', 'Allan', 'Ebert', '', '', '', '', NULL, '', NULL, 'aebert@genesyspho.com', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3128, '2005-08-29', 'Adam', 'Hyers', '', '', '', '', NULL, '', NULL, 'ahyers@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3132, '2005-08-29', 'Alissa', 'Lusky', '', '', '', '', NULL, '', NULL, 'alusky@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8898, '2009-10-26', 'Janet', 'Schromke', '', '', '', '', NULL, '', NULL, 'jschromke4@gmail.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-26', '2009-10-26', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3136, '2005-08-29', 'Micheal', 'Goodman', '', '', '', '', NULL, '', NULL, 'anav95@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3137, '2005-08-29', 'Anne', 'Chilingirian', '', '', '', '', NULL, '', NULL, 'annetrap@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8076, '2009-05-22', '', 'Mackey', '', '', '', '', NULL, '', NULL, 'themacadoos@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-05-22', '2009-05-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3140, '2005-08-29', 'Anne', 'Vara', '', '', '', '', NULL, '', NULL, 'avara921@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7351, '2008-09-29', 'Tim and Ann', 'Marasco', '', '', '', '', NULL, '', NULL, 'atmmarasco@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-09-29', '2008-09-29', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3142, '2005-08-29', 'Mike', 'Shoemaker', '', '', '', '', NULL, '', NULL, 'bashoemaker@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7594, '2008-11-13', 'Megen', 'Hood', '', '', '', '', NULL, '', NULL, 'mhood@eup.k12.mi.us', NULL, NULL, true, NULL, NULL, '', '2008-11-13', '2008-11-13', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3144, '2005-08-29', 'Beth ', 'Booth', '', '', '', '', NULL, '', NULL, 'bbooth@rochester.k12.mi.us', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3145, '2005-08-29', 'Jeffrey', 'Bouwens', '', '', '', '', NULL, '', NULL, 'bbttkkj@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8585, '2009-07-17', 'Mary', 'Hunter', '', '', '', '', NULL, '', NULL, 'golfergranny@wowway.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3151, '2005-08-29', 'Bennett', 'Ruby', '', '', '', '', NULL, '', NULL, 'bennettr1@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3153, '2005-08-29', 'Beverly', 'Orban', '', '', '', '', NULL, '', NULL, 'beverly.orban@gm.com', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3154, '2005-08-29', 'Thomas', 'Guimond', '', '', '', '', NULL, '', NULL, 'bfguimond@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3155, '2005-08-29', 'Gale', 'Wiec', '', '', '', '', NULL, '', NULL, 'bgwiec@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3158, '2005-08-29', 'Terry', 'Collins', '', '', '', '', NULL, '', NULL, 'bigbow1270@msn.com', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3159, '2005-08-29', 'William', 'Mallory', '', '', '', '', NULL, '', NULL, 'billm82@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3160, '2005-08-29', 'Terry ', 'Peterson', '', '', '', '', NULL, '', NULL, 'bjharvey@tds.net', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3162, '2005-08-29', 'David', 'Blaauw', '', '', '', '', NULL, '', NULL, 'blaauw@umich.edu', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3163, '2005-08-29', 'Robert', 'MacFarland', '', '', '', '', NULL, '', NULL, 'bobnholly@wowway.com', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3167, '2005-08-29', 'Herb', 'Storbeck', '', '', '', '', NULL, '', NULL, 'abstorbeck@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8748, '2009-10-16', 'Martin', 'Salazar', '', '', '', '', NULL, '', NULL, 'msalgolf@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-10-16', '2009-10-16', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3172, '2005-08-29', 'Brenda', 'Soverinsky', '', '', '', '', NULL, '', NULL, 'brsov@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3173, '2005-08-29', 'Bob', 'Toohey', '', '', '', '', NULL, '', NULL, 'btoohey@hrblock.com', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3176, '2005-08-29', 'Susan', 'Burch', '', '', '', '', NULL, '', NULL, 'burchsu@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3178, '2005-08-29', 'Robert', 'Vorpagel', '', '', '', '', NULL, '', NULL, 'bvorpagel@goagile.net', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7789, '2009-02-03', 'Mary', 'Schlaff', '', '', '', '', NULL, '', NULL, 'mjschlaff@aim.com', NULL, NULL, true, NULL, NULL, '', '2009-02-03', '2009-02-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3182, '2005-08-29', 'Robert', 'Carden', '', '', '', '', NULL, '', NULL, 'carden@aaps.k12.mi.us', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3183, '2005-08-29', 'Fidel', 'Carino', '', '', '', '', NULL, '', NULL, 'carinohomes@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3187, '2005-08-29', 'Carol', 'Peterson', '', '', '', '', NULL, '', NULL, 'carolncliff@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3188, '2005-08-29', 'Carolyn', 'Stesney', '', '', '', '', NULL, '', NULL, 'carolynstesney@ameritech.net', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3189, '2005-08-29', 'Jim', 'Carson', '', '', '', '', NULL, '', NULL, 'carsonshop@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3191, '2005-08-29', 'Chrysia', 'Stoneback', '', '', '', '', NULL, '', NULL, 'castoneback@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3193, '2005-08-29', 'Gregory', 'Depuydt', '', '', '', '', NULL, '', NULL, 'cdepuydt@pathwaynet.com', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8915, '2009-10-30', 'Sheri', 'Klein', '', '', '', '', NULL, '', NULL, 'roy.klein@chase.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-30', '2009-10-30', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3195, '2005-08-29', 'Corinne', 'Elwert', '', '', '', '', NULL, '', NULL, 'celwert@qcasa.com', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3196, '2005-08-29', 'Cathy', 'Flanders', '', '', '', '', NULL, '', NULL, 'cflander@ford.com', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8174, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'elizabeth.stickel@catherines.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3200, '2005-08-29', 'Teryl', 'Watch', '', '', '', '', NULL, '', NULL, 'chemtee717@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7878, '2009-02-09', 'Daniel', 'Laughlin', '', '', '', '', NULL, '', NULL, 'danlaughlin@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-02-09', '2009-02-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8548, '2009-07-17', 'Anthony', 'Javorka', '', '', '', '', NULL, '', NULL, 'tjavorka@ecommunity.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3219, '2005-08-29', 'Cynthia', 'Tate', '', '', '', '', NULL, '', NULL, 'ctatetot3@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3206, '2005-08-29', 'Cindy', 'Tomczak', '', '', '', '', NULL, '', NULL, 'cindytomczak@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3207, '2005-08-29', 'Christopher', 'Kok', '', '', '', '', NULL, '', NULL, 'ckok@dow.com', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3250, '2005-08-29', 'Gary and Donna', 'Merrifield', '', '', '', '', NULL, '', NULL, 'dhmerrifield@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3209, '2005-08-29', 'Robert', 'Moore', '', '', '', '', NULL, '', NULL, 'club21@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3210, '2005-08-29', 'Mary Jo', 'Wilcox', '', '', '', '', NULL, '', NULL, 'cmu82@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9137, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'mambocat007@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3213, '2005-08-29', 'Craig', 'Carrel', '', '', '', '', NULL, '', NULL, 'craigcarrel@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3215, '2005-08-29', 'Carl', 'Shubitowski', '', '', '', '', NULL, '', NULL, 'crshuby@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3216, '2005-08-29', 'Chris and Susan', 'Peters', '', '', '', '', NULL, '', NULL, 'cspeters@ameritech.net', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3221, '2005-08-29', 'Joy', 'Cunningham', '', '', '', '', NULL, '', NULL, 'cunning3@oakland.edu', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8763, '2009-10-16', 'John ', 'Byrd', '', '', '', '', NULL, '', NULL, 'jbyrd@energyprod.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-16', '2009-10-16', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3223, '2005-08-29', 'Anne and Don', 'Crites', '', '', '', '', NULL, '', NULL, 'dacrites@wowway.com', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3224, '2005-08-29', 'Vanessa', 'Dale', '', '', '', '', NULL, '', NULL, 'dalevcharge@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8772, '2009-10-20', 'Beth', 'Dawidiuk', '', '', '', '', NULL, '', NULL, 'bethdawid@sbcglobal.net ', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8255, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'jones.six@netzero.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3227, '2005-08-29', 'Dan', 'Schreiber', '', '', '', '', NULL, '', NULL, 'danielschreiber@lapeerind.com', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3228, '2005-08-29', 'Denise', 'Seyburn', '', '', '', '', NULL, '', NULL, 'darnsmith@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8314, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'lisa.sarkisian@mdiworldwide.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8372, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'raineyd@meijer.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3244, '2005-08-29', 'Julie', 'Deppen', '', '', '', '', NULL, '', NULL, 'deppen@oakland.edu', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8420, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'shari@beekalt.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3254, '2005-08-29', 'David', 'Johnson', '', '', '', '', NULL, '', NULL, 'djohnson@isomedia.com', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3255, '2005-08-29', 'Donald', 'Kronig', '', '', '', '', NULL, '', NULL, 'dkronig1@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8463, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'thomas.hilborn@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3257, '2005-08-29', 'David', 'Tarantino', '', '', '', '', NULL, '', NULL, 'dltarantino@mmm.com', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3259, '2005-08-30', 'Michael', 'Mueller', '', '', '', '', NULL, '', NULL, 'dmueller007@netzero.net', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8498, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'wolschendorf@fev-et.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3262, '2005-08-30', 'Donald', 'Manvel', '', '', '', '', NULL, '', NULL, 'donmanvel@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8586, '2009-07-17', 'Jeff', 'Thompson', '', '', '', '', NULL, '', NULL, 'jeffth9ompson51@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8606, '2009-07-17', 'Cheryl', 'Abbott', '', '', '', '', NULL, '', NULL, 'golfubet2@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8776, '2009-10-20', 'PJ ', 'Dolton ', '', '', '', '', NULL, '', NULL, 'teddybear1209@hotmail.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3265, '2005-08-30', 'Douglas', 'Reaume', '', '', '', '', NULL, '', NULL, 'dreaume44@wowway.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3266, '2005-08-30', 'Jennifer', 'Dreyer', '', '', '', '', NULL, '', NULL, 'dreyerjen@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3267, '2005-08-30', 'Donna', 'Driest', '', '', '', '', NULL, '', NULL, 'driest5@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3271, '2005-08-30', 'Lisa ', 'Dubois', '', '', '', '', NULL, '', NULL, 'duboisrchd@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7790, '2009-02-03', 'Michael', 'Killian', ' ', '', '', '', NULL, '', NULL, 'mkillian@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-02-03', '2009-02-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3274, '2005-08-30', 'Dave', 'Stoddard', '', '', '', '', NULL, '', NULL, 'dxstodda@oaklandcc.edu', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3277, '2005-08-30', 'Eann and Russ', 'Holland', '', '', '', '', NULL, '', NULL, 'eanncholland@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3278, '2005-08-30', 'Elise', 'Brady', '', '', '', '', NULL, '', NULL, 'ecbrady@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3279, '2005-08-30', 'Edwin', 'Doyle', '', '', '', '', NULL, '', NULL, 'ed.doyle@hp.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3281, '2005-08-30', 'Ed and Jana', 'Joseph', '', '', '', '', NULL, '', NULL, 'ejoseph@cbre.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3285, '2005-08-30', 'Erin', 'Savinov', '', '', '', '', NULL, '', NULL, 'eringp@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7879, '2009-02-09', 'David', 'Ausman', '', '', '', '', NULL, '', NULL, 'davidausman@billbrownford.com', NULL, NULL, true, NULL, NULL, '', '2009-02-09', '2009-02-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3288, '2005-08-30', 'Cathy', 'Szczepaniak', '', '', '', '', NULL, '', NULL, 'eszcz@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3290, '2005-08-30', 'Kevin', 'Kozal', '', '', '', '', NULL, '', NULL, 'evkozal@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8084, '2009-05-25', 'Pauline', 'Lajoie', '', '', '', '', NULL, '', NULL, 'BL654@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-05-25', '2009-05-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3293, '2005-08-30', 'Kathy', 'Fidziukiewicz', '', '', '', '', NULL, '', NULL, 'fidz@charter.net', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6656, '2008-04-29', 'Anthony', 'Ursitti', '', '', '', '', NULL, '', NULL, 'anthonyursitti@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-04-29', '2008-04-29', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3298, '2005-08-30', 'Susan', 'Frakes', '', '', '', '', NULL, '', NULL, 'frakes@ameritech.net', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3299, '2005-08-30', 'Fred', 'Ransford', '', '', '', '', NULL, '', NULL, 'fred.ransford@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3301, '2005-08-30', 'Julie', 'Ament', '', '', '', '', NULL, '', NULL, 'frnkamnt@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3302, '2005-08-30', 'Gail', 'Jenereaux', '', '', '', '', NULL, '', NULL, 'gailjenerx@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3303, '2005-08-30', 'David', 'Garcia', '', '', '', '', NULL, '', NULL, 'garciashize@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3304, '2005-08-30', 'Lee Ann', 'Smith', '', '', '', '', NULL, '', NULL, 'geoffandleeann@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3305, '2005-08-30', 'Guy', 'Harper', '', '', '', '', NULL, '', NULL, 'gharper256@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3306, '2005-08-30', 'Dr. Gary', 'Holbein', '', '', '', '', NULL, '', NULL, 'gholbein2002@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3307, '2005-08-30', 'Greg', 'Humitz', '', '', '', '', NULL, '', NULL, 'ghumitz@charter.net', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9526, '2011-05-13', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'granthammer@hotmail.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0)', '24.57.133.212', true, NULL, NULL, NULL, NULL, NULL, NULL, ':11:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8004, '2009-05-17', 'Steve', 'Nagel', '4749 Pleasantview RD', 'Harbor Springs', 'Mich', '49740', NULL, '727 403 5803  5268758', NULL, 'stevennagel323@hotmail.com', NULL, NULL, true, NULL, NULL, '', NULL, NULL, 'Hi Guys,\r
+\r
+Teeri an I will be leaving next week if all goes well with her  back.  I ahve sent some packages forom Fl and most should have arrived.  I willpick them up at the office as soon as we get in town.', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3311, '2005-08-30', 'Greg', 'Ochoa', '', '', '', '', NULL, '', NULL, 'gochoa6100@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3312, '2005-08-30', 'Pauline', 'Stephens', '', '', '', '', NULL, '', NULL, 'golfqueen1943@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3313, '2005-08-30', 'Roberto', 'Gonzalez', '', '', '', '', NULL, '', NULL, 'gonbirdie@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3314, '2005-08-30', 'Barbara', 'Grabbe', '', '', '', '', NULL, '', NULL, 'grabbes@ameritech.net', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3316, '2005-08-30', 'Gregg', 'Young', '', '', '', '', NULL, '', NULL, 'greggyoung05@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8175, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'fjnoble48@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3319, '2005-08-30', 'Brenda', 'Freeman', '', '', '', '', NULL, '', NULL, 'gsmfreeman@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3320, '2005-08-30', 'Frederick', 'Kahn', '', '', '', '', NULL, '', NULL, 'guifred@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3321, '2005-08-30', 'Gustavo', 'Vallazza', '', '', '', '', NULL, '', NULL, 'gvallazza@chartermi.net', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3322, '2005-08-30', 'Susan', 'Harper', '', '', '', '', NULL, '', NULL, 'gwhmsh@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3355, '2005-08-30', 'Jeffrey', 'Sweet', '', '', '', '', NULL, '', NULL, 'jswy@umich.edu', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3325, '2005-08-30', 'Heidi', 'Winter', '', '', '', '', NULL, '', NULL, 'hcwinter@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3327, '2005-08-30', 'Christine', 'Harris', '', '', '', '', NULL, '', NULL, 'herouvis@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8899, '2009-10-26', 'Yvonne', 'Snyder', '', '', '', '', NULL, '', NULL, 'yesnyder@yahoo.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-26', '2009-10-26', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3329, '2005-08-30', 'Hal', 'Lentz', '', '', '', '', NULL, '', NULL, 'hgang6@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3331, '2005-08-30', 'Paula', 'Leaym', '', '', '', '', NULL, '', NULL, 'horizonext@chartermi.net', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8549, '2009-07-17', 'Will', 'Johnson', '', '', '', '', NULL, '', NULL, 'willj6@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3334, '2005-08-30', 'Jocelyn', 'Muirhead', '', '', '', '', NULL, '', NULL, 'info@jocelynm.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3337, '2005-08-30', 'Jim and Sandy', 'White', '', '', '', '', NULL, '', NULL, 'j.b.white@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3338, '2005-08-30', 'Jackie', 'Herring', '', '', '', '', NULL, '', NULL, 'j.herring@dowcorning.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8916, '2009-10-30', 'Pam ', 'Asche', '', '', '', '', NULL, '', NULL, 'deckedou04@yahoo.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-30', '2009-10-30', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3345, '2005-08-30', 'James', 'Ulinski', '', '', '', '', NULL, '', NULL, 'jau@wowway.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3346, '2005-08-30', 'Janice', 'Whipple', '', '', '', '', NULL, '', NULL, 'jawhip1@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3348, '2005-08-30', 'David', 'Teal', '', '', '', '', NULL, '', NULL, 'jdavidteal@msn.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3349, '2005-08-30', 'James', 'DeCarlo', '', '', '', '', NULL, '', NULL, 'jdecarlo@peoplepc.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3351, '2005-08-30', 'John', 'Tonkovich', '', '', '', '', NULL, '', NULL, 'jdtonkovich@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3356, '2005-08-30', 'Jeff', 'Bancroft', '', '', '', '', NULL, '', NULL, 'jeffbancroft@scherer-trier-usa.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8176, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'elwangler@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3361, '2005-08-30', 'Gerard', 'Mlot', '', '', '', '', NULL, '', NULL, 'jerence02@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3362, '2005-08-30', 'Jefferu', 'Feurt', '', '', '', '', NULL, '', NULL, 'jfeurt@total-benefit-systems.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3363, '2005-08-30', 'Joe', 'Grace', '', '', '', '', NULL, '', NULL, 'jfgrace3@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3364, '2005-08-30', 'Jeff', 'Floyd', '', '', '', '', NULL, '', NULL, 'jfloyd@wmfloydheating.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3365, '2005-08-30', 'James', 'Russ', '', '', '', '', NULL, '', NULL, 'jfrlawdg@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3368, '2005-08-30', 'Jennifer', 'Hermes', '', '', '', '', NULL, '', NULL, 'jhermes@ncusd203.org', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3369, '2005-08-30', 'Mary Lou', 'Hume', '', '', '', '', NULL, '', NULL, 'jhume@watchtv.net', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3350, '2005-08-30', 'Janice', 'Denning', '', '', '', '', NULL, '', NULL, 'jdenning@ford.com', NULL, NULL, false, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3372, '2005-08-30', 'James', 'Marks', '', '', '', '', NULL, '', NULL, 'jim.marks@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3353, '2005-08-30', 'Jeff', 'Rybak', '', '', '', '', NULL, '', NULL, 'jeff.rybak@grc.nasa.gov', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3374, '2005-08-30', 'Raymond', 'Walker', '', '', '', '', NULL, '', NULL, 'jim@kdmullen.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3375, '2005-08-30', 'Jason', 'Carter', '', '', '', '', NULL, '', NULL, 'jjcarter@mindspring.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3376, '2005-08-30', 'John', 'Jeakle', '', '', '', '', NULL, '', NULL, 'jjeakle@webtv.net', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3377, '2005-08-30', 'Theresa', 'Scimemi', '', '', '', '', NULL, '', NULL, 'jjt777_99@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3379, '2005-08-30', 'Jim', 'Kiesby', '', '', '', '', NULL, '', NULL, 'jkiesby@mgh.org', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3382, '2005-08-30', 'Lori', 'Bogart', '', '', '', '', NULL, '', NULL, 'jlbogart@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3383, '2005-08-30', 'Loretta', 'Harris', '', '', '', '', NULL, '', NULL, 'jlcharris@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7957, '2009-03-18', 'Susan', 'Ozimek ', '', '', '', '', NULL, '', NULL, 'bozimek@twmi.rr.com', NULL, NULL, true, NULL, NULL, '', '2009-03-18', '2009-03-18', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3385, '2005-08-30', 'Joseph', 'Lubner', '', '', '', '', NULL, '', NULL, 'jlubner@lubnerdesign.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3387, '2005-08-30', 'John', 'Malone', '', '', '', '', NULL, '', NULL, 'jmalone@dmc.org', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3388, '2005-08-30', 'John', 'McCabe', '', '', '', '', NULL, '', NULL, 'jmccabe@jpment.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3389, '2005-08-30', 'Jill', 'Durham', '', '', '', '', NULL, '', NULL, 'jmdliv@earthlink.net', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3393, '2005-08-30', 'Cheryl', 'Fortner', '', '', '', '', NULL, '', NULL, 'jodyp@williamsgunsight.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3395, '2005-08-30', 'Patricia', 'Turk', '', '', '', '', NULL, '', NULL, 'john.turk@mac.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3396, '2005-08-30', 'John', 'Welch', '', '', '', '', NULL, '', NULL, 'john.welch@bronsonplating.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3397, '2005-08-30', 'John', 'Brink', '', '', '', '', NULL, '', NULL, 'john@bkccpa.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3398, '2005-08-30', 'John', 'Copp', '', '', '', '', NULL, '', NULL, 'johncopp@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3399, '2005-08-30', 'John', 'Shell', '', '', '', '', NULL, '', NULL, 'johnshell@jimcausley.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3400, '2005-08-30', 'John', 'Sklarski', '', '', '', '', NULL, '', NULL, 'johnsk60@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3401, '2005-08-30', 'David', 'Jolly', '', '', '', '', NULL, '', NULL, 'jollydavid@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3402, '2005-08-30', 'Joe', 'White', '', '', '', '', NULL, '', NULL, 'joseph.white@wsj.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8256, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'jonesy1969@msn.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3406, '2005-08-30', 'Mary', 'Trejo', '', '', '', '', NULL, '', NULL, 'jrtmcvt1@msn.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3407, '2005-08-30', 'John', 'Salgado', '', '', '', '', NULL, '', NULL, 'jsalga01@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8315, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'lkelly@tacworldwide.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3409, '2005-08-30', 'Jeff', 'Nesmith', '', '', '', '', NULL, '', NULL, 'jsnesmith@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8373, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'RandyLPepper@eaton.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3411, '2005-08-30', 'Jeff', 'Yule', '', '', '', '', NULL, '', NULL, 'jspyule@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3413, '2005-08-30', 'Jana', 'Sawyer', '', '', '', '', NULL, '', NULL, 'jtbl8120@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3414, '2005-08-30', 'John', 'Thompson', '', '', '', '', NULL, '', NULL, 'jthompson@bdo.ca', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3420, '2005-08-30', 'Joseph', 'Wolfe', '', '', '', '', NULL, '', NULL, 'judithawolfe@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8421, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'sharonjaeckle@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8464, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'thomas.renno@gm.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3418, '2005-08-30', 'Elizabeth', 'Jackson', '', '', '', '', NULL, '', NULL, 'juddjackson@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3419, '2005-08-30', 'Edith', 'Norman', '', '', '', '', NULL, '', NULL, 'judiep75@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3421, '2005-08-30', 'Julie', 'Pullin', '', '', '', '', NULL, '', NULL, 'julespullin@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3422, '2005-08-30', 'Julie', 'Janusz', '', '', '', '', NULL, '', NULL, 'juliejanusz@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3423, '2005-08-30', 'Julie', 'Landry', '', '', '', '', NULL, '', NULL, 'julieland@twmi.rr.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3424, '2005-08-30', 'John', 'Waldvogel', '', '', '', '', NULL, '', NULL, 'jwaldvogel@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3425, '2005-08-30', 'Janet', 'Walker', '', '', '', '', NULL, '', NULL, 'jwalker5@twmi.rr.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3426, '2005-08-30', 'Jane', 'Walsh', '', '', '', '', NULL, '', NULL, 'jwalsh@rochester.k12.mi.us', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3427, '2005-08-30', 'Jill', 'Whitehouse', '', '', '', '', NULL, '', NULL, 'jwhiteho@med.wayne.edu', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8499, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'Wood.vicki@det.sysco.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7792, '2009-02-03', 'Margaret', 'Fraser', '', '', '', '', NULL, '', NULL, 'mmfraser@brktel.on.ca', NULL, NULL, true, NULL, NULL, '', '2009-02-03', '2009-02-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3430, '2005-08-30', 'James', 'Wyniemko', '', '', '', '', NULL, '', NULL, 'jwyniemko@ejourney.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3432, '2005-08-30', 'Harry', 'Reinhardt', '', '', '', '', NULL, '', NULL, 'karen_reinhardt@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3433, '2005-08-30', 'Karen', 'Gustafson', '', '', '', '', NULL, '', NULL, 'karengustafson@charter.net', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3434, '2005-08-30', 'Karen', 'Buchacz', '', '', '', '', NULL, '', NULL, 'karenkbu@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3438, '2005-08-30', 'Ken', 'First', '', '', '', '', NULL, '', NULL, 'kefirst@dow.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3440, '2005-08-30', 'Karen', 'Ryan', '', '', '', '', NULL, '', NULL, 'keryan@chartermi.net', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3441, '2005-08-30', 'Christine', 'Grabowski', '', '', '', '', NULL, '', NULL, 'kgrabowski@wowway.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8550, '2009-07-17', 'Marc', 'Milkie', '', '', '', '', NULL, '', NULL, 'mmilkie@steelcase.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3443, '2005-08-30', 'Kimberly', 'Weaver', '', '', '', '', NULL, '', NULL, 'kim.weaver@tenneco-automotive.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3444, '2005-08-30', 'Kelly', 'McCarthy', '', '', '', '', NULL, '', NULL, 'kjmkmc@earthlink.net', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3445, '2005-08-30', 'Ruth', 'Kooima', '', '', '', '', NULL, '', NULL, 'kkooima@hickorytech.net', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10045, '2013-08-02', 'Anne', 'Hallberg', '3906 Mark Dr.', 'Troy', 'ME', '48083', NULL, '248-229-6285', NULL, 'khallberg5@gmail.com', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36', '24.192.249.36', true, NULL, NULL, NULL, NULL, NULL, NULL, ':15:29:17:12:23:20:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3448, '2005-08-30', 'Kevin', 'DeLine', '', '', '', '', NULL, '', NULL, 'kmdeline@dow.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3453, '2005-08-30', 'Kevin', 'Royer', '', '', '', '', NULL, '', NULL, 'kroyer@wowway.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3454, '2005-08-30', 'Karen', 'Shaw', '', '', '', '', NULL, '', NULL, 'kshawmi@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3455, '2005-08-30', 'Michael', 'Sheldon', '', '', '', '', NULL, '', NULL, 'ksmshe@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3493, '2005-08-30', 'Linda', 'Labadie', '', '', '', '', NULL, '', NULL, 'mikelisalin@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3458, '2005-08-30', 'Kurt', 'Tesnow', '', '', '', '', NULL, '', NULL, 'kurt.tesnow@gm.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7884, '2009-02-09', 'Lisa', 'Boulter', '', '', '', '', NULL, '', NULL, 'dbolts@twmi.rr.com', NULL, NULL, true, NULL, NULL, '', '2009-02-09', '2009-02-09', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3460, '2005-08-30', 'Kelly', 'Wilkie', '', '', '', '', NULL, '', NULL, 'kwilkie2000@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3463, '2005-08-30', 'Helaine', 'Freed', '', '', '', '', NULL, '', NULL, 'laini63@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3466, '2005-08-30', 'Larry', 'Raden', '', '', '', '', NULL, '', NULL, 'larry@dnpe.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3467, '2005-08-30', 'Lori', 'Shinney', '', '', '', '', NULL, '', NULL, 'lashinney@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3469, '2005-08-30', 'Laura', 'Suwinski', '', '', '', '', NULL, '', NULL, 'laurasuwinski@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8177, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'emilyschwartzdds@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3472, '2005-08-30', 'Linda', 'Casterline', '', '', '', '', NULL, '', NULL, 'lcaste9020a@charter.net', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3473, '2005-08-30', 'Lisa', 'Clarke', '', '', '', '', NULL, '', NULL, 'lclarke32@cogeco.ca', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3475, '2005-08-30', 'Michelle', 'Leach', '', '', '', '', NULL, '', NULL, 'leach62@charter.net', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8005, '2009-05-21', 'Lee', 'Astrauckas', '', '', '', '', NULL, '', NULL, 'lwastrauckas@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-05-21', '2009-05-21', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3477, '2005-08-30', 'Vincent', 'Capron', '', '', '', '', NULL, '', NULL, 'lenasmom@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3480, '2005-08-30', 'Les', 'McDonald', '', '', '', '', NULL, '', NULL, 'lesndebi@buckeye-express.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3481, '2005-08-30', 'Michael', 'Lewis', '', '', '', '', NULL, '', NULL, 'lewism@royaloakschools.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3482, '2005-08-30', 'Lysanne', 'Harma', '', '', '', '', NULL, '', NULL, 'lharma@jasnetworks.net', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8257, '2009-06-04', 'John', 'Vangalen ', '', '', '', '', NULL, '', NULL, 'jonvangalen@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3486, '2005-08-30', 'Lisa', 'Kuch', '', '', '', '', NULL, '', NULL, 'lisakuch@ctravelc.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3488, '2005-08-30', 'Steve', 'Salmon', '', '', '', '', NULL, '', NULL, 'littlefishinmi@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3489, '2005-08-30', 'Elizabeth', 'Somerville', '', '', '', '', NULL, '', NULL, 'liz@lizsomerville.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3490, '2005-08-30', 'Laura', 'Odonnell', '', '', '', '', NULL, '', NULL, 'ljodonnell@wideopenwest.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8900, '2009-10-26', 'Tammy', 'Lagalo ', '', '', '', '', NULL, '', NULL, 'tmlagalo@dow.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-26', '2009-10-26', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3494, '2005-08-30', 'Lonnie', 'Loy', '', '', '', '', NULL, '', NULL, 'llloy@loyhartley.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3495, '2005-08-30', 'Kip and Laura', 'Meroz', '', '', '', '', NULL, '', NULL, 'lmeroz@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3496, '2005-08-30', 'Lynn', 'Griggs', '', '', '', '', NULL, '', NULL, 'lmpgriggs@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3497, '2005-08-30', 'Mark', 'Slayman', '', '', '', '', NULL, '', NULL, 'lms1102956@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3499, '2005-08-30', 'Lori', 'McQueen', '', '', '', '', NULL, '', NULL, 'lori.mcqueen@jus.gov.on.ca', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3502, '2005-09-02', 'Scott', 'Anderson', '', '', '', '', NULL, '', NULL, 'sanderson157@insightbb.com', NULL, NULL, true, NULL, NULL, '', '2005-09-02', '2005-09-02', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3506, '2005-09-02', 'John', 'Peterson', '', '', '', '', NULL, '', NULL, 'jpeter2724@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-09-02', '2005-09-02', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3507, '2005-09-02', 'Heidi', 'Klein-Line', '', '', '', '', NULL, '', NULL, 'toetheline@msn.com', NULL, NULL, true, NULL, NULL, '', '2005-09-02', '2005-09-02', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3509, '2005-09-06', 'Marek', 'Lukacik', '', '', '', '', NULL, '', NULL, 'm_lukacik@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2005-09-06', '2005-09-06', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3514, '2005-09-06', 'Mark', 'Maraldo', '', '', '', '', NULL, '', NULL, 'mamaraldo@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2005-09-06', '2005-09-06', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3512, '2005-09-06', 'Christine', 'Malzahn', '', '', '', '', NULL, '', NULL, 'malzahns@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-09-06', '2005-09-06', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3513, '2005-09-06', 'Kathy', 'Frieh', '', '', '', '', NULL, '', NULL, 'mamakatmg@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-09-06', '2005-09-06', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3516, '2005-09-06', 'Julia', 'Walter', '', '', '', '', NULL, '', NULL, 'mandjwalter@provide.net', NULL, NULL, true, NULL, NULL, '', '2005-09-06', '2005-09-06', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3518, '2005-09-06', 'Margaret', 'Callaghan', '', '', '', '', NULL, '', NULL, 'margaretcallaghan766@msn.com', NULL, NULL, true, NULL, NULL, '', '2005-09-06', '2005-09-06', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3519, '2005-09-06', 'Marilyn', 'Hall', '', '', '', '', NULL, '', NULL, 'marilyn.hall@co.bell.tx.us', NULL, NULL, true, NULL, NULL, '', '2005-09-06', '2005-09-06', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3520, '2005-09-06', 'Mark', 'Levine', '', '', '', '', NULL, '', NULL, 'mark.levine@ipaper.com', NULL, NULL, true, NULL, NULL, '', '2005-09-06', '2005-09-06', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3508, '2005-09-05', 'Tony', 'Christie', '', '', '', '', NULL, '', NULL, 'tjschristie@peoplepc.com', NULL, NULL, false, 4, NULL, 'Hello, I was in unit "147 the weekend of August 19th with my family, father Ken and step mother Carla. I may have left a large magazine size paperback book there in the large bedroom (by the magazine shelf) or in the living room. The book is called : Canoeing Michigan Rivers", its green. I have a log of the many trips I have taken in the back blank pages. Would you PLEASE check if my book is there and contact me by email or phone as soon as possible? 616-877-0283 Home, 616-394-1901 Work.', NULL, NULL, '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3524, '2005-09-06', 'James', 'Marley', '', '', '', '', NULL, '', NULL, 'marleyj@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2005-09-06', '2005-09-06', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3525, '2005-09-06', 'Mary', 'Thornton', '', '', '', '', NULL, '', NULL, 'mary.thornton@gm.com', NULL, NULL, true, NULL, NULL, '', '2005-09-06', '2005-09-06', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3526, '2005-09-06', 'Mary Beth', 'Bullen', '', '', '', '', NULL, '', NULL, 'mary_beth_bullen@ajg.com', NULL, NULL, true, NULL, NULL, '', '2005-09-06', '2005-09-06', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3529, '2005-09-06', 'Steve', 'Mattler', '', '', '', '', NULL, '', NULL, 'matts2243@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-09-06', '2005-09-06', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3530, '2005-09-06', 'Veronica', 'Long', '', '', '', '', NULL, '', NULL, 'maya329@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-09-06', '2005-09-06', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7793, '2009-02-03', 'Mark', 'Gigax', '', '', '', '', NULL, '', NULL, 'mmgigax@charter.net', NULL, NULL, true, NULL, NULL, '', '2009-02-03', '2009-02-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3536, '2005-09-06', 'Margaret', 'Dalian', '', '', '', '', NULL, '', NULL, 'mdalian@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2005-09-06', '2005-09-06', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7882, '2009-02-09', 'Todd', 'Davis', '', '', '', '', NULL, '', NULL, 'davisdewitt1@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-02-09', '2009-02-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3538, '2005-09-13', 'Robin', 'Crosby', '', '', '', '', NULL, '', NULL, 'crosbyr05@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2005-09-13', '2005-09-13', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3539, '2005-09-13', 'Meryl', 'Way', '', '', '', '', NULL, '', NULL, 'MerylWay48054@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-09-13', '2005-09-13', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8086, '2009-06-03', '', '', '', '', '', '', NULL, '', NULL, 'aaronthill@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-03', '2009-06-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3541, '2005-09-13', 'Sandy', 'Gray', '', '', '', '', NULL, '', NULL, 'mgray5@woh.rr.com', NULL, NULL, true, NULL, NULL, '', '2005-09-13', '2005-09-13', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3542, '2005-09-13', 'Mary', 'Handley', '', '', '', '', NULL, '', NULL, 'mhandley@wideopenwest.com', NULL, NULL, true, NULL, NULL, '', '2005-09-13', '2005-09-13', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3547, '2005-09-13', 'Barb', 'Pulte', '', '', '', '', NULL, '', NULL, 'mike_barbie@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2005-09-13', '2005-09-13', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3549, '2005-09-16', 'Melissa', 'Crowley', '', '', '', '', NULL, '', NULL, 'missytimpaige@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-09-16', '2005-09-16', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3551, '2005-09-16', 'Craig', 'Reed', '', '', '', '', NULL, '', NULL, 'mjsail@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-09-16', '2005-09-16', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7958, '2009-03-18', 'Tom ', 'Schuneman ', '', '', '', '', NULL, '', NULL, 'tschue@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-03-18', '2009-03-18', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3554, '2005-09-16', 'Becky', 'McCaughey', '', '', '', '', NULL, '', NULL, 'mmccaughey@woh.rr.com', NULL, NULL, true, NULL, NULL, '', '2005-09-16', '2005-09-16', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3556, '2005-09-16', 'Michelle', 'Merritt', '', '', '', '', NULL, '', NULL, 'mmerritt57@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-09-16', '2005-09-16', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3557, '2005-09-16', 'Marla', 'Rondo', '', '', '', '', NULL, '', NULL, 'mmrondo@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2005-09-16', '2005-09-16', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3558, '2005-09-16', 'Michael', 'Nedley', '', '', '', '', NULL, '', NULL, 'mnedley01@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-09-16', '2005-09-16', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8006, '2009-05-21', 'Rachelle Holloway', 'Rachelle Holloway', '224  Lawrence Road', 'New York', 'New York', '11111', NULL, '000-000-0000', NULL, 'rachelle2311@gmail.com', NULL, NULL, true, 0, 6, 'Internet Marketing Services\r
+\r
+\r
+We would like to get your website on first page of Google.\r
+\r
+All of our processes use the most ethical "white hat" Search Engine Optimization techniques that \r
+will not get your website banned or penalized.\r
+\r
+Please reply and I would be happy to send you a proposal.\r
+', NULL, NULL, 'Internet Marketing Services\r
+\r
+\r
+We would like to get your website on first page of Google.\r
+\r
+All of our processes use the most ethical "white hat" Search Engine Optimization techniques that \r
+will not get your website banned or penalized.\r
+\r
+Please reply and I would be happy to send you a proposal.\r
+', ':Scrapbooking:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3561, '2005-09-16', 'Jason', 'Honeycutt', '', '', '', '', NULL, '', NULL, 'motorcitycolors@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-09-16', '2005-09-16', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3563, '2005-09-16', 'Michael', 'Galasso', '', '', '', '', NULL, '', NULL, 'mrgs10@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-09-16', '2005-09-16', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3564, '2005-09-16', 'Matthew', 'Starr', '', '', '', '', NULL, '', NULL, 'msgolions@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-09-16', '2005-09-16', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3599, '2005-10-26', 'Connie', 'Braun', '', '', '', '', NULL, '', NULL, 'cbraunmd@msn.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3568, '2005-09-16', 'Michelle', 'Tripp', '', '', '', '', NULL, '', NULL, 'mtripp@ameritech.net', NULL, NULL, true, NULL, NULL, '', '2005-09-16', '2005-09-16', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7588, '2008-11-13', 'Bobby', 'Schroeder', '', '', '', '', NULL, '', NULL, 'bobbyschroeder@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-11-13', '2008-11-13', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3570, '2005-09-16', 'Michelle', 'Weidenbenner', '', '', '', '', NULL, '', NULL, 'mweidenbenner@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-09-16', '2005-09-16', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3572, '2005-09-16', 'James', 'Wheaton', '', '', '', '', NULL, '', NULL, 'mwwheato@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2005-09-16', '2005-09-16', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3574, '2005-09-16', 'Kathleen', 'Dawson', '', '', '', '', NULL, '', NULL, 'nanakafy@adelphia.net', NULL, NULL, true, NULL, NULL, '', '2005-09-16', '2005-09-16', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3577, '2005-10-01', 'Pamela', 'Grigsby', '17650 Lakevie Circle', 'Northville', 'Michigan', '48168', NULL, '248-348-3944', NULL, 'PGrigsby3338@yahoo.com', NULL, NULL, true, NULL, NULL, '', NULL, NULL, 'Just updating our address since our recent move.\r
+Look forward to visiting your resort this winter.\r
+The Grigsby''s\r
+', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3185, '2005-08-29', 'Carol', 'Neuman', '', '', '', '', NULL, '', NULL, 'carol.neumann@delphi.com', NULL, NULL, false, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8080, '2009-05-22', 'Paul', 'Shaffstall', '', '', '', '', NULL, '', NULL, 'pshaffst@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-05-22', '2009-05-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3585, '2005-10-26', 'Gail', 'Altekruse', '', '', '', '', NULL, '', NULL, 'gail.altekruse@parkview.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3586, '2005-10-26', 'Graham', 'Andrews', '', '', '', '', NULL, '', NULL, 'gandpat@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8258, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'jpgklein@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3590, '2005-10-26', 'Sylvia', 'Bashi', '', '', '', '', NULL, '', NULL, 'sb91581@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3591, '2005-10-26', 'Bruce', 'Billes', '', '', '', '', NULL, '', NULL, 'phbilles@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3592, '2005-10-26', 'Steve', 'Black', '', '', '', '', NULL, '', NULL, 'sblack01@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3594, '2005-10-26', 'Bill', 'Blaine', '', '', '', '', NULL, '', NULL, 'gramps925@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3595, '2005-10-26', 'Ron', 'Boisclair', '', '', '', '', NULL, '', NULL, 'ron_boisclair@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3607, '2005-10-26', 'Lynell', 'Bussiere', '', '', '', '', NULL, '', NULL, 'lynellb@traversemotors.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3597, '2005-10-26', 'Nicholas', 'Bomber', '', '', '', '', NULL, '', NULL, 'wmfb19@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3598, '2005-10-26', 'Joshua', 'Bova', '', '', '', '', NULL, '', NULL, 'jjbova@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3602, '2005-10-26', 'Dorothy', 'Bridges', '', '', '', '', NULL, '', NULL, 'rodesh@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3603, '2005-10-26', 'Ben', 'Brinks', '', '', '', '', NULL, '', NULL, 'ben@distinctivehomesltd.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3604, '2005-10-26', 'Loretta', 'Bruce', '', '', '', '', NULL, '', NULL, 'lrbruce1001@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3606, '2005-10-26', 'Roma', 'Bugenhagen', '', '', '', '', NULL, '', NULL, 'romabug@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3611, '2005-10-26', 'Steve', 'Carey', '', '', '', '', NULL, '', NULL, 'nmugrad88@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3613, '2005-10-26', 'Shawn', 'Carver', '', '', '', '', NULL, '', NULL, 'pahalpin@charter.net', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3617, '2005-10-26', 'Margaret', 'Chouinard', '', '', '', '', NULL, '', NULL, 'plchouinard@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3618, '2005-10-26', 'Randy', 'Chudler', '', '', '', '', NULL, '', NULL, 'rmchuds@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3619, '2005-10-26', 'Ugo', 'Cicchello', '', '', '', '', NULL, '', NULL, 'ucicchello@shaw.ca', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3622, '2005-10-26', 'Norm', 'Colamecco', '', '', '', '', NULL, '', NULL, 'ncolameco@sympatico.ca', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3624, '2005-10-26', 'Yvonne', 'Connelly', '', '', '', '', NULL, '', NULL, 'yconnelly@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3625, '2005-10-26', 'Carol', 'Connolly', '', '', '', '', NULL, '', NULL, 'tomcon1@accesstoledo.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3628, '2005-10-26', 'Susan', 'Conway', '', '', '', '', NULL, '', NULL, 'sconway@suburbancollection.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3629, '2005-10-26', 'Robert', 'Coppolino', '', '', '', '', NULL, '', NULL, 'rjcoppol@zoominternet.net', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3632, '2005-10-26', 'Cheryl', 'Costeiu', '', '', '', '', NULL, '', NULL, 'ccosteiu@misd.net', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7794, '2009-02-03', 'Mona', 'Beydoun', '', '', '', '', NULL, '', NULL, 'mona_beydoun@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-02-03', '2009-02-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3636, '2005-10-26', 'Kate', 'Dally', '', '', '', '', NULL, '', NULL, 'info@wildswanspa.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3637, '2005-10-26', 'Tolan', 'Danko', '', '', '', '', NULL, '', NULL, 'ttdanko@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3638, '2005-10-26', 'Patty', 'Darin', '', '', '', '', NULL, '', NULL, 'pdarin@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3639, '2005-10-26', 'Steven ', 'Daudlin', '', '', '', '', NULL, '', NULL, 'sdaudlin@wolverineoil.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3641, '2005-10-26', 'Patricia', 'DeLang', '', '', '', '', NULL, '', NULL, 'tdelang@wideopenwest.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3642, '2005-10-26', 'Cathy', 'DeLave', '', '', '', '', NULL, '', NULL, 'cdelave@wideopenwest.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3643, '2005-10-26', 'Stephane', 'DiTullio', '', '', '', '', NULL, '', NULL, 'sditullio@nyc.rr.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3645, '2005-10-26', 'Susan', 'Duncan', '', '', '', '', NULL, '', NULL, 'sue.duncan@charter.net', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3646, '2005-10-26', 'Suzanne and Glen', 'Dykas', '', '', '', '', NULL, '', NULL, 's_dykas@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3647, '2005-10-26', 'Brian', 'Dykema', '', '', '', '', NULL, '', NULL, 'travelwb1@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3650, '2005-10-26', 'Scott', 'Fairty', '', '', '', '', NULL, '', NULL, 'scottfairty@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3652, '2005-10-26', 'John', 'Ferres', '', '', '', '', NULL, '', NULL, 'ferres@msu.edu', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3653, '2005-10-26', 'Tom', 'Foster', '', '', '', '', NULL, '', NULL, 'tomfoster@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3655, '2005-10-26', 'Renny', 'Franceschi', '', '', '', '', NULL, '', NULL, 'rennyf@umich.edu', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3657, '2005-10-26', 'Jill ', 'Fuller', '', '', '', '', NULL, '', NULL, 'rob.fuller@shaw.ca', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8087, '2009-06-03', '', '', '', '', '', '', NULL, '', NULL, 'ab.golder@shaw.ca', NULL, NULL, true, NULL, NULL, '', '2009-06-03', '2009-06-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7883, '2009-02-09', 'Melissa', 'Dawes', '', '', '', '', NULL, '', NULL, 'dawes_m@stjohns.edzone.net', NULL, NULL, true, NULL, NULL, '', '2009-02-09', '2009-02-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3660, '2005-10-26', 'Jo Ellen', 'Gauche', '', '', '', '', NULL, '', NULL, 'thegauches@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3663, '2005-10-26', 'Terry', 'Geisler', '', '', '', '', NULL, '', NULL, 't_geisler@msn.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7959, '2009-03-18', 'Henry ', 'Werksma ', '', '', '', '', NULL, '', NULL, 'lnw@iserv.net', NULL, NULL, true, NULL, NULL, '', '2009-03-18', '2009-03-18', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8901, '2009-10-26', 'Wendy ', 'Stewart', '', '', '', '', NULL, '', NULL, 'jwstew61@charter.net ', NULL, NULL, true, NULL, NULL, '', '2009-10-26', '2009-10-26', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3670, '2005-10-26', 'Ron', 'Hayes', '', '', '', '', NULL, '', NULL, 'ron.hayes@jus.gov.on.ca', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3685, '2005-10-26', 'Cynthia', 'Janis', '', '', '', '', NULL, '', NULL, 'spartans11@prodigy.net', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8178, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'eric@theprescriptionstore.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3680, '2005-10-26', 'Robin', 'Inscho', '', '', '', '', NULL, '', NULL, 'rinscho@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3682, '2005-10-26', 'Bernadette', 'Issa', '', '', '', '', NULL, '', NULL, 'nadettemj@bigfoot.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3683, '2005-10-26', 'Daniel', 'Izenson', '', '', '', '', NULL, '', NULL, 'pizenson@cinci.rr.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3686, '2005-10-26', 'John', 'Jaynes', '', '', '', '', NULL, '', NULL, 'gjaynes@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3687, '2005-10-26', 'Scott', 'Jenkins', '', '', '', '', NULL, '', NULL, 'scottheidij@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3689, '2005-10-26', 'Nora', 'Kadolph', '', '', '', '', NULL, '', NULL, 'ngkadolph@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3690, '2005-10-26', 'Lori', 'Kahila', '', '', '', '', NULL, '', NULL, 'kahilatribe@juno.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3693, '2005-10-26', 'Christine', 'Krause', '', '', '', '', NULL, '', NULL, 'surferdak49@netscape.net', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3697, '2005-10-26', 'Debra', 'LaFontaine', '', '', '', '', NULL, '', NULL, 'lafontaine5@wowway.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8259, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'jratliffmoss@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3699, '2005-10-26', 'David', 'Langendorfer', '', '', '', '', NULL, '', NULL, 'langendorferdavid@msn.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3701, '2005-10-26', 'Tami', 'Leffingwell', '', '', '', '', NULL, '', NULL, 'tami.leffingwell@raymondjames.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3702, '2005-10-26', 'Linda', 'Leibold', '', '', '', '', NULL, '', NULL, 'rll2204@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3703, '2005-10-26', 'Karen', 'Lentine', '', '', '', '', NULL, '', NULL, 'normkar@wideopenwest.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3704, '2005-10-26', 'Steve', 'Leversee', '', '', '', '', NULL, '', NULL, 'skileversee@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3705, '2005-10-26', 'Theresa', 'Linenger', '', '', '', '', NULL, '', NULL, 'tlinenger@highlandparkbaptist.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7795, '2009-02-03', 'Moon', 'Joh', '', '', '', '', NULL, '', NULL, 'moonhjoh@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-02-03', '2009-02-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3707, '2005-10-26', 'Teri', 'List', '', '', '', '', NULL, '', NULL, 'tlist@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3709, '2005-10-26', 'Stephen', 'MacDonald', '', '', '', '', NULL, '', NULL, 'steve.macdonald@archom.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3710, '2005-10-26', 'Ronald', 'Macinnis', '', '', '', '', NULL, '', NULL, 'r.a.macinnis@shaw.ca', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3711, '2005-10-26', 'Sonal', 'Makim', '', '', '', '', NULL, '', NULL, 'smakim@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3712, '2005-10-26', 'Lori', 'Malm', '', '', '', '', NULL, '', NULL, 'lorirx@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3714, '2005-10-26', 'Sarah', 'Maniaci', '', '', '', '', NULL, '', NULL, 'skmaniaci@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3715, '2005-10-26', 'Michelle', 'Marcelletti', '', '', '', '', NULL, '', NULL, 'nmarcellet@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3717, '2005-10-26', 'Tim', 'Mariner', '', '', '', '', NULL, '', NULL, 'tpmariner@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9316, '2010-01-21', '', '', '', '', '', '', NULL, '', NULL, 'info@goskimichigan.com', NULL, NULL, true, NULL, NULL, '', '2010-01-21', '2010-01-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3719, '2005-10-26', 'Lisa', 'Mazur', '', '', '', '', NULL, '', NULL, 'lrmazur@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3721, '2005-10-26', 'Michael', 'McCarney', '', '', '', '', NULL, '', NULL, 'mamoo705@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3722, '2005-10-26', 'Terry', 'McCloskey', '', '', '', '', NULL, '', NULL, 'rebeccalanders@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3723, '2005-10-26', 'Shirley', 'McIllmurray', '', '', '', '', NULL, '', NULL, 'riley@byron.k12.mi.us', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3724, '2005-10-26', 'Timothy', 'McKenna', '', '', '', '', NULL, '', NULL, 'tim@timothyjmckenna.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3725, '2005-10-26', 'Larry', 'McPhedrain', '', '', '', '', NULL, '', NULL, 'rusty@marymaxim.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3728, '2005-10-26', 'Patricia', 'Minadeo', '', '', '', '', NULL, '', NULL, 'trish.minadeo@motion-ind.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3729, '2005-10-26', 'Judy', 'Minello', '', '', '', '', NULL, '', NULL, 'r.andj.minello@sympatico.ca', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3730, '2005-10-26', 'Ron', 'Mistor', '', '', '', '', NULL, '', NULL, 'rmistor@wideopenwest.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3731, '2005-10-26', 'Hillary', 'Moga', '', '', '', '', NULL, '', NULL, 'yosadhara@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3732, '2005-10-26', 'Mike', 'Monette', '', '', '', '', NULL, '', NULL, 'mmonette9@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3733, '2005-10-26', 'Nancy', 'Mulder', '', '', '', '', NULL, '', NULL, 'nancymulder@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3773, '2005-10-26', 'Loriann', 'Rickard', '', '', '', '', NULL, '', NULL, 'larickard@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3737, '2005-10-26', 'Susan', 'Neyens', '', '', '', '', NULL, '', NULL, 'sue.neyens@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3740, '2005-10-26', 'Todd', 'Norling', '', '', '', '', NULL, '', NULL, 'tnexpress3@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3747, '2005-10-26', 'Thomas', 'Orlowsky', '', '', '', '', NULL, '', NULL, 'torlowsky@detroitchassis.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3748, '2005-10-26', 'Ray', 'Orozco', '', '', '', '', NULL, '', NULL, 'morozco@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3749, '2005-10-26', 'Blair', 'Osborn', '', '', '', '', NULL, '', NULL, 'osockey2@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3751, '2005-10-26', 'Yoon-Bae', 'Park', '', '', '', '', NULL, '', NULL, 'yoonbaep@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3754, '2005-10-26', 'Pamela', 'Pelfrey', '', '', '', '', NULL, '', NULL, 'pkpelfrey@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3755, '2005-10-26', 'Catherine', 'Pelland', '', '', '', '', NULL, '', NULL, 'tina@healthdecisions.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3757, '2005-10-26', 'Suzanne', 'Pighin', '', '', '', '', NULL, '', NULL, 'suzpighin@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3743, '2005-10-26', 'Janet', 'Oconnor', '', '', '', '', NULL, '', NULL, 'janeteoconnor@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3763, '2005-10-26', 'Jamie', 'Preussell', '', '', '', '', NULL, '', NULL, 'prdtrbk@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3765, '2005-10-26', 'William', 'Putnam', '', '', '', '', NULL, '', NULL, 'tylerp@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8179, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'erich.kuhlman@zehnders.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3767, '2005-10-26', 'Tom', 'Quoss', '', '', '', '', NULL, '', NULL, 'tarlac4@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3768, '2005-10-26', 'Joseph', 'Ramos', '', '', '', '', NULL, '', NULL, 'ramosdental@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3769, '2005-10-26', 'Richard', 'Ratka', '', '', '', '', NULL, '', NULL, 'richr@det.citation.net', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3770, '2005-10-26', 'Earl', 'Reese', '', '', '', '', NULL, '', NULL, 'sunnn13@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3774, '2005-10-26', 'Janelle', 'Ringger', '', '', '', '', NULL, '', NULL, 'vringger@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3775, '2005-10-26', 'Wilfredeo', 'Rivera', '', '', '', '', NULL, '', NULL, 'zenico1@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3776, '2005-10-26', 'Kirk', 'Roell', '', '', '', '', NULL, '', NULL, 'lynnroell@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3777, '2005-10-26', 'Rhonda', 'Roelofs', '', '', '', '', NULL, '', NULL, 'rroelofs777@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3778, '2005-10-26', 'Reed', 'Rollins', '', '', '', '', NULL, '', NULL, 'lrollins@chartermi.net', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8260, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'jrj710@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3785, '2005-10-26', 'Jack', 'Segal', '', '', '', '', NULL, '', NULL, 'jsegal_kpuschel@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7960, '2009-03-18', 'Dennis', 'Baker ', '', '', '', '', NULL, '', NULL, 'denbake@iserv.net', NULL, NULL, true, NULL, NULL, '', '2009-03-18', '2009-03-18', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3788, '2005-10-26', 'Sherri', 'Seniff', '', '', '', '', NULL, '', NULL, 'shersen@mchsi.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3790, '2005-10-26', 'Robin', 'Servo', '', '', '', '', NULL, '', NULL, 'rservojr260445mi@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8374, '2009-06-07', 'Richard', 'Ansell ', '', '', '', '', NULL, '', NULL, 'ransell1@visteon.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7885, '2009-02-09', 'David', 'Breuch', '', '', '', '', NULL, '', NULL, 'dbreuch@clarkhill.com', NULL, NULL, true, NULL, NULL, '', '2009-02-09', '2009-02-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3794, '2005-10-26', 'Barbara', 'Shutler', '', '', '', '', NULL, '', NULL, 'bshutler@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3795, '2005-10-26', 'Lisa', 'Sieradski', '', '', '', '', NULL, '', NULL, 'sierads1@msu.edu', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3855, '2005-10-29', 'Rob ', 'Wallace', '37096', 'Avon', 'Ohio', '44011', NULL, '440-934-2321', NULL, 'wallacesue80@hotmail.com', NULL, NULL, true, 8, 5, '', NULL, NULL, 'web search researching condo with rental program', ':19:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8008, '2009-05-22', 'Stephen', 'Wilson', '', '', '', '', NULL, '', NULL, 'swilson112@cogeco.ca', NULL, NULL, true, NULL, NULL, '', '2009-05-22', '2009-05-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3800, '2005-10-26', 'Dianne', 'Spieker', '', '', '', '', NULL, '', NULL, 'dspieker3@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3803, '2005-10-26', 'Trevor', 'Steer', '', '', '', '', NULL, '', NULL, 'tsteer@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8902, '2009-10-26', 'Laurie', 'Gatza', '', '', '', '', NULL, '', NULL, 'lagatza@charter.net ', NULL, NULL, true, NULL, NULL, '', '2009-10-26', '2009-10-26', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3807, '2005-10-26', 'Ned', 'Suddendorf', '', '', '', '', NULL, '', NULL, 'sandysmail@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3808, '2005-10-26', 'Patrick', 'Sughroue', '', '', '', '', NULL, '', NULL, 'prspc@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3810, '2005-10-26', 'Minna', 'Sung', '', '', '', '', NULL, '', NULL, 'minnasung@gmail.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8180, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'erickson.m@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3812, '2005-10-26', 'Gloria', 'Swift', '', '', '', '', NULL, '', NULL, 'pgswifty@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3813, '2005-10-26', 'Kevin', 'Syrek', '', '', '', '', NULL, '', NULL, 'kevinbapi@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3814, '2005-10-26', 'Sherry', 'Taubitz', '', '', '', '', NULL, '', NULL, 'sherry_taubitz@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3818, '2005-10-26', 'Patricia', 'Town', '', '', '', '', NULL, '', NULL, 'mishenks@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3819, '2005-10-26', 'Ryan', 'Tracht', '', '', '', '', NULL, '', NULL, 'ryantracht@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3806, '2005-10-26', 'Rene', 'Strzelecki', '', '', '', '', NULL, '', NULL, 'rstrzelecki@att.com', NULL, NULL, false, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3821, '2005-10-26', 'Rosalind', 'Tvedten', '', '', '', '', NULL, '', NULL, 'roz@safesolutionsinc.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3823, '2005-10-26', 'Vickie', 'VanHorn', '', '', '', '', NULL, '', NULL, 'skibumsfour@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3825, '2005-10-26', 'Brooke', 'Vanderwater', '', '', '', '', NULL, '', NULL, 'vanderbr@wwwinc.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3826, '2005-10-26', 'Robert', 'Vanderwiele', '', '', '', '', NULL, '', NULL, 'rvdw@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8261, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'jroartymd@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3832, '2005-10-26', 'Darcy', 'Vergis', '', '', '', '', NULL, '', NULL, 'runninfine1@juno.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3833, '2005-10-26', 'Umesh', 'Verma', '', '', '', '', NULL, '', NULL, 'uverma@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8316, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'lkrapp@hrc.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3836, '2005-10-26', 'Loyce', 'Wascher', '', '', '', '', NULL, '', NULL, 'pwasc2000@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3839, '2005-10-26', 'Catherine', 'Waynick', '', '', '', '', NULL, '', NULL, 'raw918@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3841, '2005-10-26', 'Bryan', 'West', '', '', '', '', NULL, '', NULL, 'bewest@chartermi.net', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3842, '2005-10-26', 'Mark', 'Whitted', '', '', '', '', NULL, '', NULL, 'mark@whitted.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3843, '2005-10-26', 'Mark', 'Wichlinski', '', '', '', '', NULL, '', NULL, 'wichlinmtw@msn.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9749, '2012-06-23', 'Harry', 'Matonic', '450 Taylor Rd', 'Brighton', 'MI', '48114', NULL, NULL, NULL, 'diharmat1@yahoo.com', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:12.0) Gecko/20100101 Firefox/12.0', '68.43.70.224', true, NULL, NULL, NULL, NULL, NULL, NULL, ':6:11:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3845, '2005-10-26', 'Siane', 'Wilks', '', '', '', '', NULL, '', NULL, 'scottdianewilks@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3846, '2005-10-26', 'Penelope', 'Willey', '', '', '', '', NULL, '', NULL, 'pennywilley@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3849, '2005-10-26', 'Brigette', 'Wolin', '', '', '', '', NULL, '', NULL, 'wolinb@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3851, '2005-10-26', 'Sam', 'Yamin', '', '', '', '', NULL, '', NULL, 'patyamin@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3872, '2006-01-11', 'Jodie', 'Bissonette', '', '', '', '', NULL, '', NULL, 'jodie@gaslightmedia.com', NULL, NULL, true, NULL, NULL, '', '2006-01-11', '2006-01-11', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3852, '2005-10-26', 'Steve', 'Yarbrough', '', '', '', '', NULL, '', NULL, 'sayarbama1@msn.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3676, '2005-10-26', 'Carl', 'Holstein', '', '', '', '', NULL, '', NULL, 'cholstein8494@wowway.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3315, '2005-08-30', 'Rebecca and Greg', 'Sparks', '', '', '', '', NULL, '', NULL, 'greg.sparks@martinmarietta.com', NULL, NULL, false, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3392, '2005-08-30', 'Joan', 'Baas', '', '', '', '', NULL, '', NULL, 'joanierodgers@buckeye-express.com', NULL, NULL, false, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3630, '2005-10-26', 'Susan', 'Corsetti', '', '', '', '', NULL, '', NULL, 'scorsett@ford.com', NULL, NULL, false, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3862, '2005-12-07', 'Michael', 'Seltzer', '', '', '', '', NULL, '', NULL, 'Mike@skmmarketing.com', NULL, NULL, true, 9, 0, 'Looking for availability before Christmas for perhaps two condos - week of 12/19 for 2 to 3 days...\r
+Availability and rates please', NULL, NULL, '5 bedroom condo', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3870, '2006-01-08', 'Debra', 'Mikolajczyk', '4316 Resort Pike', 'Petoskey', 'MI', '49770', NULL, 'Cell 586-630-1188', NULL, 'gkoddo@yahoo.com', NULL, NULL, false, 6, NULL, 'Seeking Live-on presmises management emplopyment for my husband and self.  If any opportunities available please contact us.  Thank you for any consideration.\r
+\r
+Sincerely, Debra Mikolajczyk', '2006-01-07', NULL, '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3449, '2005-08-30', 'Kevin', 'Shaughnessy', '', '', '', '', NULL, '', NULL, 'kmshaug6@gmail.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8422, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'shaw.rhonda@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3873, '2006-01-11', 'TRISH', 'CEASE', '125 WEST LAKEVIEW ROAD', 'LEVERING', 'MI', '49755', NULL, '231-758-0834', NULL, 'LUVABOYDSBEAR@HOTMAIL.COM', NULL, NULL, true, 8, NULL, 'I SEE YOU ARE HAVING A SCRAPBOOKING RETREAT. I WOULD LIKE TO TALK WITH THE DIRECTOR THE THE RETREAT PLEASE.\r
+THANK YOU\r
+TRISH', NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3896, '2006-04-18', 'Lyle  JR.', 'Ankrapp', '', 'Gaithsburg', 'MD', '20878', NULL, '301-977-8166', NULL, 'lankrapp@hotmail.com', NULL, NULL, true, 4, 3, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3940, '2006-04-18', 'Mark', 'Borin', '', 'Plymouth', 'MI', '48170', NULL, '734-455-3995', NULL, 'borinfamily@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', ':23:', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3901, '2006-04-18', 'Ronald', 'Arturi', '', 'Willow Springs', 'IL', '60480', NULL, '708-839-0038', NULL, 'aceistheplace@excite.com', NULL, NULL, true, NULL, 0, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9317, '2010-01-21', 'KATE', 'FRIGO', '', '', '', '', NULL, '', NULL, 'kfrigo@gmail.com', NULL, NULL, false, 9, NULL, 'I recently stayed at Trout Creek. I was curious if you have a lost and found for items left. I stayed in unit 24 I believe. Thank you.', NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3908, '2006-04-18', 'Elizabeth', 'Banks', '', 'Birmingham', 'MI', '48009', NULL, '248-593-1073', NULL, 'ericandels@comcast.net', NULL, NULL, true, 4, 4, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3905, '2006-04-18', 'Gail', 'Baker', '', 'Highland', 'MI', '48356', NULL, '248-887-3303', NULL, 'Ryrabaker@aol.com', NULL, NULL, true, 9, 3, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3906, '2006-04-18', 'Carol', 'Bale', '', 'Farmington Hills', 'MI', '48333', NULL, '248-788-1567', NULL, 'pupandponylover@aol.com', NULL, NULL, true, NULL, 3, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3910, '2006-04-18', 'Kim', 'Bartuch', '', 'Clarendon Hills', 'IL', '60514', NULL, '630-654-3991', NULL, 'kbbartuch@sbcglobal.net', NULL, NULL, true, 8, 1, '', '2006-04-18', '2006-04-18', 'vrbo.com', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3911, '2006-04-18', 'Michael', 'Baruzzini', '', 'Livonia', 'MI', '48152', NULL, '734-260-1788', NULL, '187.mike@gmail.com', NULL, NULL, true, 0, 1, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3912, '2006-04-18', 'John', 'Baysore', '', 'Grosse Pte. Farm', 'MI', '48236', NULL, '313-886-5976', NULL, 'jbaysore@comcast.net', NULL, NULL, true, 9, 0, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3916, '2006-04-18', 'Shawn', 'Berger', '', 'Chesdterfield', 'MI', '48051', NULL, '586-948-1463', NULL, 'msd3563@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3917, '2006-04-18', 'Ira', 'Berkowitz', '', 'West Bloomfield', 'MI', '48323', NULL, '248-737-8818', NULL, 'irab7863@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3918, '2006-04-18', 'Barbara', 'Berthaume', '', 'Gladstone', 'Mi', '49873', NULL, '906-428-4315', NULL, 'jberthaume@chartermi.net', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7797, '2009-02-03', 'Mark', 'Smogor', '', '', '', '', NULL, '', NULL, 'msmogor@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-02-03', '2009-02-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3923, '2006-04-18', 'Kyle', 'Beyett', '', 'Bay City', 'MI', '48708', NULL, '989-894-5464', NULL, 'kabeyett1275@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3922, '2006-04-18', 'Deborah', 'Beverly', '', 'Kalamazoo', 'MI', '49009', NULL, '269-375-7866', NULL, 'beverly2000@prodigy.net', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3924, '2006-04-18', 'Donna', 'Bickerton', '', 'Tecumseh', 'ON', 'N8N 4M9', NULL, '519-735-8413', NULL, 'dnolanbi@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3925, '2006-04-18', 'Tina', 'Bildstein', '', 'Medina', 'OH', '44256', NULL, '440-779-7210', NULL, 'rcbnet@earthlink.net', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3926, '2006-04-18', 'Dody', 'Billideau', '', 'Concord', 'CA', '94521', NULL, '925-672-6499', NULL, 'Billideau@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3929, '2006-04-18', 'Cathy', 'Blake', '', 'Grand Rapids', 'MI', '49546', NULL, '616-954-7057', NULL, 'dablakes@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3932, '2006-04-18', 'Bruce', 'Blinkhorn', '', 'Grand Rapids', 'MI', '49544', NULL, '616-443-9127', NULL, 'bblinkhorn@glfasteners.com', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3933, '2006-04-18', 'Elizabeth', 'Block', '', 'Fishers', 'IN', '46037', NULL, '317-578-8903', NULL, 'blockhome@ameritech.net', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3935, '2006-04-18', 'Kevin', 'Bock', '', 'Lansing', 'Mi', '48917', NULL, '517-886-0388', NULL, 'bocklava@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3936, '2006-04-18', 'Dru', 'Bocvarov', '', 'Toledo', 'OH', '43606', NULL, '419-427-0859', NULL, 'drubanners@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3939, '2006-04-18', 'Canice', 'Boran', '', 'Northville', 'MI', '48168', NULL, '248-380-5337', NULL, 'canice.boran@autoliv.com', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8090, '2009-06-03', '', '', '', '', '', '', NULL, '', NULL, 'aglo510@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-03', '2009-06-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3941, '2006-04-18', 'Cheryl', 'Borowski', '', 'Marysville', 'MI', '48040', NULL, '810-364-5297', NULL, 'markbowslinger@prodigy.net', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3943, '2006-04-18', 'James', 'Brading', '', 'Kokmo', 'IN', '46902', NULL, '765-453-9438', NULL, 'challenger53@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3944, '2006-04-18', 'Susan', 'Brainovich', '', 'Rochester', 'MI', '48307', NULL, '248-656-6875', NULL, 'brainovich@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3945, '2006-04-18', 'Jason', 'Brand', '', 'Canton', 'MI', '48187', NULL, '', NULL, 'jasonbrand@gmail.com', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3947, '2006-04-18', 'Catherine', 'Brooks', '', 'Holland ', 'MI', '49424', NULL, '616-339-4057', NULL, 'cathy_brooks@hermanmiller.com', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3949, '2006-04-18', 'Edward ', 'Brown', '', 'Grand Blanc', 'MI', '48439', NULL, '810-694-2958', NULL, 'edbrown3772@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3951, '2006-04-18', 'Kip ', 'Brown', '', 'Bay City', 'Mi', '48706', NULL, '989-757-5360', NULL, 'kipandkats@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3953, '2006-04-18', 'Terri', 'Brown', '', 'Durand', 'MI', '48429', NULL, '989-634-8355', NULL, 'tlbrown@tir.com', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3954, '2006-04-18', 'Michael', 'Bruns', '', 'Cincinnati', 'OH', '45247', NULL, '513-741-2075', NULL, 'm.p.bruns@fuse.net', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3955, '2006-04-18', 'Chad', 'Buchannan', '', 'Washington Twp. ', 'Mi', '48094', NULL, '586-855-6253', NULL, 'lindseynicole2102@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3957, '2006-04-18', 'Justin', 'Buchhop', '', 'Conton', 'MI', '48188', NULL, '734-347-8676', NULL, 'jeliotbuchhop@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3958, '2006-04-18', 'Susan', 'Buck', '', 'Plainfield', 'IL', '60544', NULL, '734-347-8676', NULL, 'bucksgs1@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3959, '2006-04-18', 'Todd', 'Buhs', '', 'Okemos', 'MI', '48864', NULL, '517-449-3346', NULL, 'Tab5534@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3960, '2006-04-18', 'Laurie', 'Bulson', '', 'Inverness', 'Il', '60010', NULL, '847-934-2175', NULL, 'lhbulson@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8181, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'etrim@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8262, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'jroddy@umd.umich.edu', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3963, '2006-04-18', 'Donald', 'Burch', '', 'Northville', 'MI', '48168', NULL, '248-380-9293', NULL, 'dlburch@ameritech.net', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3964, '2006-04-18', 'Kate', 'Burkhardt', '', 'Ann Arbor', 'Mi', '48103', NULL, '734-930-9261', NULL, 'kburkhardt@datastat.com', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7798, '2009-02-03', 'Matt', 'Simons', '', '', '', '', NULL, '', NULL, 'mtt_simons@yahoo.com ', NULL, NULL, true, NULL, NULL, '', '2009-02-03', '2009-02-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3985, '2006-04-18', 'David', 'Chasco', '', 'Huntington Woods', 'MI', '48070', NULL, '248-399-2135', NULL, 'dchasco@uiuc.edu', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3970, '2006-04-18', 'William', 'Bryne', '', 'Dayton', 'OH', '45459', NULL, '937-436-1271', NULL, 'wbyrne38@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3971, '2006-04-18', 'Brad ', 'Caldwell', '', 'Hamtramck', 'MI', '48212', NULL, '586-524-8079', NULL, 'bcaldwell96@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3975, '2006-04-18', 'Aidan', 'Canning', '', 'Sarnia', 'ON', 'N0N1C0', NULL, '519-869-8665', NULL, 'cannster@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3976, '2006-04-18', 'Fidel', 'Carino', '', 'Fenton', 'MI', '48430', NULL, '810-714-0772', NULL, 'FKCarino@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3978, '2006-04-18', 'Jim', 'Carnacchi', '', 'Auburn Hills', 'MI', '48326', NULL, '248-853-5188', NULL, 'jcarnacchi@roncelli-inc.com', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3979, '2006-04-18', 'Bruce', 'Carpenter', '', 'Lawton', 'MI', '49065', NULL, '269-624-6953', NULL, 'becarpen@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3981, '2006-04-18', 'Teri ', 'Carroll', '', 'Macomb', 'MI', '48042', NULL, '586-786-7328', NULL, 'teri.carroll@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3982, '2006-04-18', 'Phlip', 'Caruso', '', 'Grosse Ile', 'MI', '48138', NULL, '561-704-6273', NULL, 'grosseille@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3984, '2006-04-18', 'Dean', 'Cataford', '', 'Sarnia', 'ON', 'N7V 2S3', NULL, '519-542-3024', NULL, 'dcataford@cogeco.ca', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7887, '2009-02-09', 'Debbie', 'Wisniewski', '', '', '', '', NULL, '', NULL, 'dbwisniewski@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-02-09', '2009-02-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3987, '2006-04-18', 'Querag', 'Cho', '', 'Novi', 'MI', '48375', NULL, '248-344-2586', NULL, 'QUECHO@gmail.com', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5727, '2007-07-09', 'Jennifer', 'VanderKlok', '', '', '', '', NULL, '', NULL, 'jentennrn@gmail.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3990, '2006-04-18', 'Christopher', 'Clabuesch', '', 'East Lansing', 'MI', '48823', NULL, '517-490-8922', NULL, 'clabues1@msu.edu', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7962, '2009-03-26', 'Thomas', 'Fletcher', '', '', '', '', NULL, '', NULL, 'fletcherstewart@msn.com', NULL, NULL, true, NULL, NULL, '', '2009-03-26', '2009-03-26', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3992, '2006-04-18', 'Linda', 'Clargo', '', 'Sault Ste. Marie', 'ON', 'P6A 5K6', NULL, '705-779-2736', NULL, 'clargo.reed@sympatico.ca', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8551, '2009-07-17', 'Adam', 'McLain', '', '', '', '', NULL, '', NULL, 'mclainadam@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3998, '2006-04-18', 'Jim', 'Clevenger', '', 'Flint', 'MI', '48506', NULL, '810-250-0076', NULL, 'Spliff13@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4001, '2006-04-18', 'John', 'Collins', '', 'Naperville', 'IL', '60563', NULL, '630-778-1775', NULL, 'jclc5@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4005, '2006-04-18', 'Chris', 'Cook', '', 'Groose Pointe', 'MI', '48230', NULL, '313-331-3329', NULL, 'cook2dtour@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4007, '2006-04-18', 'Richard', 'Counsman', '', 'Grosse Pointe', 'MI', '48230', NULL, '313-303-5226', NULL, 'rcounsman@thurswell.com', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4010, '2006-04-18', 'Mike', 'Crossk', '', 'Troy', 'MI', '48084', NULL, '248-939-3764', NULL, 'purdue_boiler97@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4011, '2006-04-18', 'Mike ', 'Crowley', '', 'Jackson', 'MI', '49203', NULL, '517-782-3281', NULL, 'mcrowley@greatlakesind.com', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4013, '2006-04-18', 'Joseph', 'Custer', '', 'Ann Arbor', 'MI', '48103', NULL, '734-663-2014', NULL, 'jcuster@med.umich.edu', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4014, '2006-04-18', 'Beth', 'Czada', '', 'Kalamazoo', 'MI', '49048', NULL, '269-382-1581', NULL, 'dreamsbeth@gmail.com', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4019, '2006-04-18', 'Tom', 'Dabrow', '', 'Farmington Hills', 'MI', '48336', NULL, '248-478-0653', NULL, 'HDABROWA@twmi.rr.com', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4020, '2006-04-18', 'Mark', 'Dagostino', '', 'Huntsville', 'AL', '35802', NULL, '256-461-7854', NULL, 'mdagostino@knology.net', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8182, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'expovinny@earthlink.net', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8263, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'jsandman@zoomtown.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4025, '2006-04-18', 'Jamie', 'Davis', '', 'Farmington Hills', 'MI', '48331', NULL, '248-592-0899', NULL, 'njdavis1@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4026, '2006-04-18', 'Leah', 'Davis', '', 'Lima', 'OH', '45805', NULL, '419-303-7014', NULL, 'godbludgeon@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4027, '2006-04-18', 'Peter', 'Dawidowicz', '', 'Troy', 'MI', '48098', NULL, '248-388-5834', NULL, 'peterd234@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4028, '2006-04-18', 'TRUDY', 'DAY', '', 'PETOSKEY', 'MI', '49770', NULL, '231-348-5834', NULL, 'tellenday@charter.net', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4029, '2006-04-18', 'Lisa', 'Dean', '', 'Rochester Hills', 'MI', '48307', NULL, '248-853-6484', NULL, 'larc888@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4030, '2006-04-18', 'Lloyd', 'Dean', '', 'Kingsville', 'ON', 'N9Y 3R1', NULL, '519-817-7385', NULL, 'lloyddean@sympatico.ca', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8317, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'lpg7@msn.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8375, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'raydalrymple@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4034, '2006-04-19', 'John', 'Deradoorian', '', '', '', '', NULL, '', NULL, 'dorianjb@earthlink.net', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8423, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'siannaco@nycap.rr.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4038, '2006-04-19', 'Serge', 'Devolder', '', '', '', '', NULL, '', NULL, 'sergedevolder@gmail.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4039, '2006-04-19', 'Amy', 'DeWitt', '', '', '', '', NULL, '', NULL, 'DeWitt6@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8465, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'tjbrown1966@ejourney.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8500, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'WRodenbe@dps.k12.oh.us', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8587, '2009-07-17', 'Robbin', 'Barnes', '', '', '', '', NULL, '', NULL, 'barnro@mirealsource.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4042, '2006-04-19', 'Martin', 'Difiore', '', '', '', '', NULL, '', NULL, 'mdifi1104@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7963, '2009-03-26', 'Alex', 'Gray', '', '', '', '', NULL, '', NULL, 'gray.a@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-03-26', '2009-03-26', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4046, '2006-04-19', 'Philip', 'Dooley', '', '', '', '', NULL, '', NULL, 'pdooley@locl.net', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4048, '2006-04-19', 'Brian', 'Doughty', '', '', '', '', NULL, '', NULL, 'bdoughty@umich.edu', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4037, '2006-04-19', 'Rita', 'Deutsche', '', '', '', '', NULL, '', NULL, 'ritad949@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7888, '2009-02-09', 'Danielle', 'Wong', '', '', '', '', NULL, '', NULL, 'dbwong@umich.edu', NULL, NULL, true, NULL, NULL, '', '2009-02-09', '2009-02-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4052, '2006-04-19', 'David', 'Drinan', '', '', '', '', NULL, '', NULL, 'davedrinan1@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4053, '2006-04-19', 'Sheila', 'Drouin', '', '', '', '', NULL, '', NULL, 'tsheila@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4054, '2006-04-19', 'Chantal', 'Dube', '', '', '', '', NULL, '', NULL, 'jtarabas@sympatico.ca', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4055, '2006-04-19', 'Gary', 'Duffett', '', '', '', '', NULL, '', NULL, 'gduffett@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4057, '2006-04-19', 'Chad', 'Dunkle', '', '', '', '', NULL, '', NULL, 'chad@thedunkles.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8011, '2009-05-22', 'Dennis', 'Zaski', '', '', '', '', NULL, '', NULL, 'dzaski@librami.com', NULL, NULL, true, NULL, NULL, '', '2009-05-22', '2009-05-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4060, '2006-04-19', 'Thomas', 'Emmerich', '', '', '', '', NULL, '', NULL, 'temmerich@schupan.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4063, '2006-04-19', 'Stephen', 'english', '', '', '', '', NULL, '', NULL, 'steveandisabel@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4064, '2006-04-19', 'Sue', 'Erickson', '', '', '', '', NULL, '', NULL, 'suee866@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8092, '2009-06-03', '', '', '', '', '', '', NULL, '', NULL, 'ahrens2@verizon.net', NULL, NULL, true, NULL, NULL, '', '2009-06-03', '2009-06-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4066, '2006-04-19', 'Melissa', 'Fabits', '', '', '', '', NULL, '', NULL, 't_fabits@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4067, '2006-04-19', 'Carolyn', 'Falcone', '', '', '', '', NULL, '', NULL, 'falconep@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8183, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'favulus@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4088, '2006-04-19', 'Bernie', 'Frye', '', '', '', '', NULL, '', NULL, 'bernie@fryebrokerage.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4072, '2006-04-19', 'Valerie', 'Filek', '', '', '', '', NULL, '', NULL, 'vfilek@lssu.edu', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4074, '2006-04-19', 'Gwen', 'Fisher', '', '', '', '', NULL, '', NULL, 'fishg73@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4075, '2006-04-19', 'Hiram', 'Fitzgerald', '', '', '', '', NULL, '', NULL, 'fitzger9@msu.edu', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4077, '2006-04-19', 'Randy', 'Flood', '', '', '', '', NULL, '', NULL, 'rsflood2112@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4079, '2006-04-19', 'Joan', 'Ford', '', '', '', '', NULL, '', NULL, 'joanford2@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8318, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'lsquatrito@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4081, '2006-04-19', 'Domenick', 'Forgione', '', '', '', '', NULL, '', NULL, 'dfclgc@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8376, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'raymond.mmje@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4083, '2006-04-19', 'Bev', 'Foubister', '', '', '', '', NULL, '', NULL, 'dfoubist@rivernet.net', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4086, '2006-04-19', 'Brenda', 'Frantz', '', '', '', '', NULL, '', NULL, 'b.frantz@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8424, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'skeetrgolf@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4089, '2006-04-19', 'Peter ', 'Frye', '', '', '', '', NULL, '', NULL, 'peter_frye@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4091, '2006-04-19', 'Mark', 'Gardner', '', '', '', '', NULL, '', NULL, 'mga874@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4092, '2006-04-19', 'Sharon', 'Gardner', '', '', '', '', NULL, '', NULL, 'washgardner@juno.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4093, '2006-04-19', 'Carol', 'Garland', '', '', '', '', NULL, '', NULL, 'carolgarland123@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4094, '2006-04-19', 'Gene', 'Gaudino', '', '', '', '', NULL, '', NULL, 'gdgaudino@wowway.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4095, '2006-04-19', 'Carol', 'Gehringer', '', '', '', '', NULL, '', NULL, '121050311@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4097, '2006-04-19', 'Mark', 'Gentilia', '', '', '', '', NULL, '', NULL, 'indy601man@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4098, '2006-04-19', 'Stefan', 'Georgiev', '', '', '', '', NULL, '', NULL, 'stefan_g_g@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4099, '2006-04-19', 'Gail', 'Gielegham', '', '', '', '', NULL, '', NULL, 'ggieleghem@msn.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4103, '2006-04-19', 'Cindy', 'Hubbell', '', '', '', '', NULL, '', NULL, 'shubbell@chartermi.net', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8903, '2009-10-26', 'Lisa', 'Gross', '', '', '', '', NULL, '', NULL, 'lgross213@yahoo.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-26', '2009-10-26', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4105, '2006-04-19', 'Alison', 'Kraai-McKee', '', '', '', '', NULL, '', NULL, 'alikraai@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4109, '2006-04-19', 'Nancy', 'Kubal', '', '', '', '', NULL, '', NULL, 'nkubal@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4111, '2006-04-19', 'Mark', 'LaBelle', '', '', '', '', NULL, '', NULL, 'mlabelle@wowway.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4112, '2006-04-19', 'Larry', 'Laginess', '', '', '', '', NULL, '', NULL, 'explosivo2k2@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4114, '2006-04-19', 'Mark', 'Landschulz', '', '', '', '', NULL, '', NULL, 'mlandschulz@ofllc.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4115, '2006-04-19', 'Audrey', 'Leblanc', '', '', '', '', NULL, '', NULL, 'johnaudr1@netzero.net', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4117, '2006-04-19', 'Gavin', 'Levin', '', '', '', '', NULL, '', NULL, 'gavinlevin@chartermi.net', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4118, '2006-04-19', 'Mark', 'Leybunz', '', '', '', '', NULL, '', NULL, 'M1992L@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4119, '2006-04-19', 'Joanne', 'Lincoln', '', '', '', '', NULL, '', NULL, 'joli82@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8501, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'wromatz@live.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8552, '2009-07-17', 'Anna', 'Mclester', '', '', '', '', NULL, '', NULL, 'janamclester@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4121, '2006-04-19', 'Andrew', 'Litynskyj', '', '', '', '', NULL, '', NULL, 'andrew.litynskyj@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4123, '2006-04-19', 'Hilary', 'Livesey', '', '', '', '', NULL, '', NULL, 'liveseyfamily@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4126, '2006-04-19', 'Lynne', 'Martin', '', '', '', '', NULL, '', NULL, 'lynnemartin@cablespeed.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4128, '2006-04-19', 'Cherie', 'Maurer', '', '', '', '', NULL, '', NULL, 'cheriemaurer@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4129, '2006-04-19', 'Stephanie', 'Mazaris', '', '', '', '', NULL, '', NULL, 'steph0385@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4130, '2006-04-19', 'Scott', 'McBain', '', '', '', '', NULL, '', NULL, 'svmcbain@earthlink.net', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7800, '2009-02-03', 'Jill', 'Murray', '', '', '', '', NULL, '', NULL, 'murrayjil@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-02-03', '2009-02-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4133, '2006-04-19', 'Margaret', 'McCann', '', '', '', '', NULL, '', NULL, 'maizeanz@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4134, '2006-04-19', 'Mike', 'McCardell', '', '', '', '', NULL, '', NULL, 'lmmccardell@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4138, '2006-04-19', 'Alice', 'McGuire', '', '', '', '', NULL, '', NULL, 'alice.mcguire@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4139, '2006-04-19', 'Martin', 'McKendry', '', '', '', '', NULL, '', NULL, 'mark_5248846@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4141, '2006-04-19', 'Jennifer', 'Melchi', '', '', '', '', NULL, '', NULL, 'mmelchi@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7964, '2009-03-26', 'Vito', 'Wasniewski', '', '', '', '', NULL, '', NULL, 'vitowas2000@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-03-26', '2009-03-26', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4145, '2006-04-19', 'Phyllis', 'Miles', '', '', '', '', NULL, '', NULL, 'pmiles@twmi.rr.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4146, '2006-04-19', 'Lisa', 'Miller', '', '', '', '', NULL, '', NULL, 'ckmmiller@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4147, '2006-04-19', 'Ryan', 'Miller', '', '', '', '', NULL, '', NULL, 'ryan.miller3@usbank.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4162, '2006-04-19', 'Ann', 'Oxender', '', '', '', '', NULL, '', NULL, 'aoxender@wowway.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', ':12:', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4150, '2006-04-19', 'Linda', 'Mitchell', '', '', '', '', NULL, '', NULL, 'ljd1104@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4151, '2006-04-19', 'Toby', 'Monforton', '', '', '', '', NULL, '', NULL, 'tmonforton99@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4152, '2006-04-19', 'Mary', 'Monk', '', '', '', '', NULL, '', NULL, 'monklkorn@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4154, '2006-04-19', 'Jessica', 'Nancarrow', '', '', '', '', NULL, '', NULL, 'jleenancarrow@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4159, '2006-04-19', 'Mark', 'Nichols', '', '', '', '', NULL, '', NULL, 'menichols@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7889, '2009-02-09', 'Deborah', 'Carcus', '', '', '', '', NULL, '', NULL, 'dcarcus@bex.net', NULL, NULL, true, NULL, NULL, '', '2009-02-09', '2009-02-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4161, '2006-04-19', 'Nancy', 'Otto', '', '', '', '', NULL, '', NULL, 'notto@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4163, '2006-04-19', 'Nancy', 'Padilla', '', '', '', '', NULL, '', NULL, 'padillan@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8553, '2009-07-17', 'Tom', 'McNally', '', '', '', '', NULL, '', NULL, 'tb105@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4166, '2006-04-19', 'Brant', 'Pekkala', '', '', '', '', NULL, '', NULL, 'brantp5@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4167, '2006-04-19', 'Marcia', 'Penn', '', '', '', '', NULL, '', NULL, 'bernesemom@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4168, '2006-04-19', 'Richard', 'Portnoy', '', '', '', '', NULL, '', NULL, 'portnoy@epi.umn.edu', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4170, '2006-04-19', 'Glenn', 'Purvis', '', '', '', '', NULL, '', NULL, 'gpbonsai@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4173, '2006-04-19', 'Carolyn', 'Rater', '', '', '', '', NULL, '', NULL, 'ckrater@wi.rr.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4174, '2006-04-19', 'Riley', 'Rees', '', '', '', '', NULL, '', NULL, 'rreese@umich.edu', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4175, '2006-04-19', 'Martin', 'Reidilla', '', '', '', '', NULL, '', NULL, 'mredilla@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4176, '2006-04-19', 'Nick and Wendy', 'Relich', '', '', '', '', NULL, '', NULL, 'wendylkr@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4177, '2006-04-19', 'David', 'Reyna', '', '', '', '', NULL, '', NULL, 'dreyna98@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4178, '2006-04-19', 'Liz', 'Richard', '', '', '', '', NULL, '', NULL, 'lizr0406@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4181, '2006-04-19', 'John', 'Robinson', '', '', '', '', NULL, '', NULL, 'jwrchelsea@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8093, '2009-06-03', '', '', '', '', '', '', NULL, '', NULL, 'ajabjarrett@att.net', NULL, NULL, true, NULL, NULL, '', '2009-06-03', '2009-06-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4185, '2006-04-19', 'Roma', 'Shukla', '', '', '', '', NULL, '', NULL, 'romashukla@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4049, '2006-04-19', 'Brad', 'Downs', '', '', '', '', NULL, '', NULL, 'bdowns72@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4188, '2006-04-19', 'Melissa', 'Simmons', '', '', '', '', NULL, '', NULL, 'simmerdwn@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4189, '2006-04-19', 'Rosanne', 'Simpson', '', '', '', '', NULL, '', NULL, 'diann.garagiola@eds.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4190, '2006-04-19', 'Brian', 'Smith', '', '', '', '', NULL, '', NULL, 'bjsmith1313@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4191, '2006-04-19', 'Christin', 'Suhy', '', '', '', '', NULL, '', NULL, 'csuhy2@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4192, '2006-04-19', 'Mary', 'Sullivan', '', '', '', '', NULL, '', NULL, 'sullivancity@msn.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4196, '2006-04-19', 'Dave', 'Swain', '', '', '', '', NULL, '', NULL, 'rdswain@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4050, '2006-04-19', 'Joann', 'Doyle', '', '', '', '', NULL, '', NULL, 'joanndoyle1956@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', ':2:', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4198, '2006-04-19', 'Scott', 'Swartz', '', '', '', '', NULL, '', NULL, 'deebabe379@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4199, '2006-04-19', 'Mark', 'Taylor', '', '', '', '', NULL, '', NULL, 'cathylee6@juno.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4200, '2006-04-19', 'Nancy', 'Vanoyen', '', '', '', '', NULL, '', NULL, 'nancyvanoyen@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4202, '2006-04-19', 'Juliana', 'Williams', '', '', '', '', NULL, '', NULL, 'jjwms211@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4203, '2006-04-19', 'Peter', 'Wilson', '', '', '', '', NULL, '', NULL, 'p.wilson@charter.net', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4204, '2006-04-19', 'Mercedes', 'Wirsing', '', '', '', '', NULL, '', NULL, 'mercedw@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4205, '2006-04-19', 'Robert', 'Wismer', '', '', '', '', NULL, '', NULL, 'lwismer@chartermi.net', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4206, '2006-04-19', 'Patrick', 'Witt', '', '', '', '', NULL, '', NULL, 'patrickwitt@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4209, '2006-04-19', 'Angela', 'Wrozek', '', '', '', '', NULL, '', NULL, 'wrozek@earthlink.net', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4149, '2006-04-19', 'Chelsea', 'Mills', '', '', '', '', NULL, '', NULL, 'chelseajaiemills@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4212, '2006-04-19', 'Steven', 'Zane', '', '', '', '', NULL, '', NULL, 'sazane@magellanhealth.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4213, '2006-04-19', 'Michael', 'Zawacki', '', '', '', '', NULL, '', NULL, 'MZawacki@twmi.rr.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3633, '2005-10-26', 'David', 'Crace', '', '', '', '', NULL, '', NULL, 'david@contract-dewatering.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2921, '2005-06-03', 'Dan', 'Hernandez', '', '', '', '', NULL, '', NULL, 'mherna92@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-06-03', '2005-06-03', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2905, '2005-06-02', 'Tamera', 'Duffield', '', '', '', '', NULL, '', NULL, 'tamera.duffield@gpschools.org', NULL, NULL, true, NULL, NULL, '', '2005-06-02', '2005-06-02', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3099, '2005-08-28', 'Mike', 'Golberg', '', '', '', '', NULL, '', NULL, 'mike@freedmangoldberg.com', NULL, NULL, true, NULL, NULL, '', '2005-08-28', '2005-08-28', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3252, '2005-08-29', 'Joe', 'Mercadante', '', '', '', '', NULL, '', NULL, 'diamondback23@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (914, '2003-11-29', 'Christine ', 'Carson', '', '', '', '', NULL, '', NULL, 'ccarson1@ameritech.net', NULL, NULL, true, NULL, NULL, '', '2003-11-29', '2003-11-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3761, '2005-10-26', 'Steven', 'Polidori', '', '', '', '', NULL, '', NULL, 'steve.polidori@hap.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3986, '2006-04-18', 'Kim', 'Childress', '', 'Goode', 'VA', '24556', NULL, '540-587-0375', NULL, 'KAHRN03@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2867, '2005-06-02', 'Jim', 'Reinhart', '', '', '', '', NULL, '', NULL, 'jacdreinhart@netzero.com', NULL, NULL, true, NULL, NULL, '', '2005-06-02', '2005-06-02', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3931, '2006-04-18', 'Arnold', 'Blam', '', 'Hudson', 'OH', '44236', NULL, '330-528-0375', NULL, 'arnie31879@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3270, '2005-08-30', 'Dale', 'Stol', '', '', '', '', NULL, '', NULL, 'dstol1@wideopenwest.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4208, '2006-04-19', 'Eric', 'Wright', '', '', '', '', NULL, '', NULL, 'eandjwright@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4084, '2006-04-19', 'Janice', 'Fouts', '', '', '', '', NULL, '', NULL, 'foutsmail@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3318, '2005-08-30', 'Pam', 'Hankins', '', '', '', '', NULL, '', NULL, 'gsafko@ermanteicher.com ', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3654, '2005-10-26', 'Katherine', 'Foy', '', '', '', '', NULL, '', NULL, 'irishkfoy@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3343, '2005-08-30', 'James and Jackie', 'Hagan', '', '', '', '', NULL, '', NULL, 'jamesjhagan@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7801, '2009-02-03', 'Matthew', 'Wiegand', '', '', '', '', NULL, '', NULL, 'mwiegand81@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-02-03', '2009-02-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4108, '2006-04-19', 'Linda', 'Kreuger', '', '', '', '', NULL, '', NULL, 'lskrueger@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4101, '2006-04-19', 'Melanie', 'Hosler', '', '', '', '', NULL, '', NULL, 'melhosler@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3796, '2005-10-26', 'Carmen', 'Sietz', '', '', '', '', NULL, '', NULL, 'sietzcl@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2968, '2005-07-07', 'Shirley', 'Freedman', '', '', '', '', NULL, '', NULL, 'snpoppy@fuse.net', NULL, NULL, true, NULL, NULL, '', '2005-07-07', '2005-07-07', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3805, '2005-10-26', 'Ann', 'Steinmetz', '', '', '', '', NULL, '', NULL, 'steinmetz313@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2998, '2005-07-22', 'Michelle', 'Martin', '', '', '', '', NULL, '', NULL, 'bbmartin@mei.net', NULL, NULL, true, NULL, NULL, '', '2005-07-22', '2005-07-22', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3889, '2006-04-18', 'Greg', 'Adamo', '', 'Clinton Twp. ', 'MI ', '48036', NULL, '586-783-3551', NULL, 'gadamo@wowway.com', NULL, NULL, true, 4, 3, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3371, '2005-08-30', 'Jill', 'Slaght', '', '', '', '', NULL, '', NULL, 'jillslaght@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8738, '2009-10-13', 'Patti', 'Payne', '', '', '', '', NULL, '', NULL, 'paynepj@bellsouth.net', NULL, NULL, true, NULL, NULL, '', '2009-10-13', '2009-10-13', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4217, '2006-05-28', 'Michael', 'Graham', '6400 West Surrey', 'Bloomfield Hills', 'MI', '48301', NULL, '248-626-0632', NULL, 'magraham@newsguy.com', NULL, NULL, true, 9, NULL, '', NULL, NULL, 'Inquiry about Unit #88; listed as "for Sale" on Trout Creek website.  Is this unit still on the market?  Is this unit an "end" unit in this cluster?', ':2:12:13:15:16:19:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3938, '2006-04-18', 'Stacey', 'Bollan', '', 'Center Line', 'MI', '48015', NULL, '586-758-9621', NULL, 'mbollan3207@wowway.com', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8904, '2009-10-26', 'June', 'Windt', '', '', '', '', NULL, '', NULL, 'jewindt@yahoo.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-26', '2009-10-26', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4220, '2006-06-07', 'mike', 'pastorino', '', '', '', '', NULL, '', NULL, 'mpastorino@flintjournal.com', NULL, NULL, true, 1, NULL, 'last week I booked a trip for 8 gentlemen June 07. Is there anything I can do to reduce the price. we are scheduled to arrive on a Saturday and depart Tuesday AM.\r
+Thanks\r
+(Nicki booked the trip)', NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4221, '2006-06-14', 'Nick', 'Arcaro', '834 Halstead Blvd.', 'Jackson', 'Michigan', '49203', NULL, '517/784-0986', NULL, 'nick834@comcast.net', NULL, NULL, true, 9, NULL, 'I have a confirmation # 71415.  I will not be arriving until after 5pm.  How do I get the key to the condo, what is the procedure?  Also, are towels, etc provided or should I bring my own?  Any other info that is helpfull, please let me know.\r
+\r
+Nick Arcaro', NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4223, '2006-07-05', 'Lisa', 'Drayton', '11066 W Glen Dr', 'Clio', 'Mii', '48420', NULL, '810-496-9532', NULL, 'lhydedrayton@hotmail.com', NULL, NULL, true, 9, NULL, 'I have a reservation for Friday July 7 - Tues July 11.  My parents will be staying with us and they will probably be arriving before us.  The reservation is in my name, will they be able to check in before we arrive?', NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4224, '2006-07-06', 'Kristen', 'Farrar', '', '', '', '', NULL, '', NULL, 'kristenfarrar98@yahoo.com', NULL, NULL, true, 4, NULL, 'My family has a reservation at Trout Creek Aug. 3-7 and we wanted to rent a boat on an inland lake. Can you suggest an boat rental companies? Thanks for you help.\r
+\r
+Kristen Farrar', NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8094, '2009-06-03', '', '', '', '', '', '', NULL, '', NULL, 'ajanson@hansonlogistics.com', NULL, NULL, true, NULL, NULL, '', '2009-06-03', '2009-06-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4068, '2006-04-19', 'Roger', 'Faulkenberry', '', '', '', '', NULL, '', NULL, 'jackief@columbus.rr.com', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4234, '2006-08-17', 'Debbie', 'Yadon', '6596 Basswood Dr', 'Troy', 'Mi', '48098', NULL, '248-879-4809', NULL, 'debbie_yadon@decoma.com', NULL, NULL, true, NULL, NULL, '', NULL, NULL, 'We have reservations for Sept 8& 9 for a soccer tournment - We would like to use our free night for Thursday Sept 7 - Please advise if that is available- Thanks, Debbie Yadon', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4286, '2006-09-25', 'Alfred', 'Hearne', '', '', '', '', NULL, '', NULL, 'ahearne@wowway.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8184, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'fefelady@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4268, '2006-09-22', 'Wayne', 'Fort', '', '', '', '', NULL, '', NULL, 'roger48640@chartermi.net', NULL, NULL, true, NULL, NULL, '', '2006-09-22', '2006-09-22', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2880, '2005-06-02', 'Nancy', 'Lewandowski', '', '', '', '', NULL, '', NULL, 'nancylewandowski@comcast.net', NULL, NULL, true, NULL, NULL, '', '2005-06-02', '2005-06-02', '', '', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4280, '2006-09-25', 'John', 'Watson', '', '', '', '', NULL, '', NULL, 'a1cottages@a1cottages.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4282, '2006-09-25', 'Al', 'Choma', '', '', '', '', NULL, '', NULL, 'achoma@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4285, '2006-09-25', 'Andrew', 'Cohen', '', '', '', '', NULL, '', NULL, 'AHC100@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4287, '2006-09-25', 'Al', 'Yanosik', '', '', '', '', NULL, '', NULL, 'alfic76@msn.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7577, '2008-11-13', 'Sara', 'Alchin', '', '', '', '', NULL, '', NULL, 'sbalchin@cablespeed.com', NULL, NULL, true, NULL, NULL, '', '2008-11-13', '2008-11-13', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4291, '2006-09-25', 'Amy', 'Hojnacki', '', '', '', '', NULL, '', NULL, 'amylynn_48167@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7057, '2008-06-17', 'Charles', 'May', '', '', '', '', NULL, '', NULL, 'cmay@beckwithgroup.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4293, '2006-09-25', 'Mary', 'Anderson', '', '', '', '', NULL, '', NULL, 'andrsnma@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4295, '2006-09-25', 'Ann', 'Poosuthasee', '', '', '', '', NULL, '', NULL, 'annpoos@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4296, '2006-09-25', 'Ann Marie', 'Simsarian', '', '', '', '', NULL, '', NULL, 'annsimsarian@cox.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4297, '2006-09-25', 'Antonio', 'Todaro', '', '', '', '', NULL, '', NULL, 'antoniotodaro98@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4298, '2006-09-25', 'Ashley', 'Pope', '', '', '', '', NULL, '', NULL, 'appope@svsu.edu', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4299, '2006-09-25', 'Alvin', 'Sallen', '', '', '', '', NULL, '', NULL, 'asallen994@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4300, '2006-09-25', 'April', 'Gordon', '', '', '', '', NULL, '', NULL, 'aslupski@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7891, '2009-02-09', 'Bill', 'Simpson', '', '', '', '', NULL, '', NULL, 'ddkerr33@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-02-09', '2009-02-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8905, '2009-10-26', 'Angela', 'Zoes', '', '', '', '', NULL, '', NULL, 'aazoes@gmail.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-26', '2009-10-26', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4306, '2006-09-25', 'Daniel', 'Barrons', '', '', '', '', NULL, '', NULL, 'barrons1@xcelco.on.ca', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4307, '2006-09-25', 'Elizabeth', 'Gunther', '', '', '', '', NULL, '', NULL, 'baycitybeth@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4308, '2006-09-25', 'John & Barb', 'Hall', '', '', '', '', NULL, '', NULL, 'bblucas@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4309, '2006-09-25', 'David', 'Mikolajczak', '', '', '', '', NULL, '', NULL, 'bccfan@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7965, '2009-03-26', 'Duane', 'Stokes', '', '', '', '', NULL, '', NULL, 'du_stokes@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-03-26', '2009-03-26', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8554, '2009-07-17', 'Robert', 'Mills', '', '', '', '', NULL, '', NULL, 'rmills48@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4315, '2006-09-25', 'Ellen', 'Merrill', '', '', '', '', NULL, '', NULL, 'bemerrill@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4316, '2006-09-25', 'Benjamin', 'Saltsman', '', '', '', '', NULL, '', NULL, 'bensaltsman@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4317, '2006-09-25', 'Bruce', 'Schubiner', '', '', '', '', NULL, '', NULL, 'Beth.Schubiner@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4318, '2006-09-25', 'Ronald', 'Bethune', '', '', '', '', NULL, '', NULL, 'bethune@wyan.org', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8185, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'firemanfitz65@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4320, '2006-09-25', 'Beverly', 'Coombs', '', '', '', '', NULL, '', NULL, 'bevsfc@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4321, '2006-09-25', 'Bill', 'Holtman', '', '', '', '', NULL, '', NULL, 'bholtman@rehmann.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8319, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'lundbergs@acd.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4323, '2006-09-25', 'Andrew & Kristi', 'Haberl', '', '', '', '', NULL, '', NULL, 'bilanssi@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4324, '2006-09-25', 'William', 'Piontkowski', '', '', '', '', NULL, '', NULL, 'bill.piontkowski@ge.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8377, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'rbreece88@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4330, '2006-09-25', 'Bonnie', 'Marcinkowski', '', '', '', '', NULL, '', NULL, 'bmarcinkowski@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4331, '2006-09-25', 'Donald & Cindy', 'McGee', '', '', '', '', NULL, '', NULL, 'bmcgee@betco.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4332, '2006-09-25', 'Eric', 'Kimmel', '', '', '', '', NULL, '', NULL, 'bne93@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4334, '2006-09-25', 'Robert', 'Cowen', '', '', '', '', NULL, '', NULL, 'bobcowen@earthlink.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8425, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'skendrick@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4336, '2006-09-25', 'Robert F.', 'Smith', '', '', '', '', NULL, '', NULL, 'bobsmith533@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4337, '2006-09-25', 'Daniel', 'Bowen', '', '', '', '', NULL, '', NULL, 'bowenx3@gmail.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4338, '2006-09-25', 'Brad', 'Neumann', '', '', '', '', NULL, '', NULL, 'bradfordjn@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4342, '2006-09-25', 'Bryan', 'Porritt', '', '', '', '', NULL, '', NULL, 'bryan_porritt@spartanstores.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4343, '2006-09-25', 'Brian', 'Trudeau', '', '', '', '', NULL, '', NULL, 'btrudeau@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4344, '2006-09-25', 'Shirley', 'Frederick', '', '', '', '', NULL, '', NULL, 'buffalogal@wideopenwest.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4348, '2006-09-25', 'Christine', 'Zondervan', '', '', '', '', NULL, '', NULL, 'bzonde8137@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4351, '2006-09-25', 'Bryan & Carri', 'Kistner', '', '', '', '', NULL, '', NULL, 'carrikistner@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4352, '2006-09-25', 'Peter', 'Gray', '', '', '', '', NULL, '', NULL, 'caryn.gray@mecglobal.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4353, '2006-09-25', 'Cathi', 'Rhynard', '', '', '', '', NULL, '', NULL, 'cathi_rhynard@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4354, '2006-09-25', 'Chris', 'Blain', '', '', '', '', NULL, '', NULL, 'cblain1963@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4355, '2006-09-25', 'Craig', 'Conklin', '', '', '', '', NULL, '', NULL, 'cconklin7@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4356, '2006-09-25', 'Chris', 'Pratt', '', '', '', '', NULL, '', NULL, 'ccp@voyager.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4357, '2006-09-25', 'Chris', 'Stefans', '', '', '', '', NULL, '', NULL, 'ccs10@alumnimail.albion.edu', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4359, '2006-09-25', 'Charolette', 'Westbrook', '', '', '', '', NULL, '', NULL, 'cdwestbrook@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4360, '2006-09-25', 'Carroll', 'Whitney', '', '', '', '', NULL, '', NULL, 'cewhit@msn.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4363, '2006-09-25', 'Charles', 'Johnson', '', '', '', '', NULL, '', NULL, 'charles.johnson@safelite.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7039, '2008-06-17', 'Andrew', 'Kim', '', '', '', '', NULL, '', NULL, 'ahkfutures@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4366, '2006-09-25', 'Cheryl', 'Schrage', '', '', '', '', NULL, '', NULL, 'cherylschrage@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4368, '2006-09-25', 'Craig', 'Hisey', '', '', '', '', NULL, '', NULL, 'chisey@umich.edu', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4369, '2006-09-25', 'Cory', 'Hissong', '', '', '', '', NULL, '', NULL, 'chissong12@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7892, '2009-02-09', 'David', 'Drinan', '', '', '', '', NULL, '', NULL, 'ddrinan@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-02-09', '2009-02-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4371, '2006-09-25', 'Charles', 'Butler', '', '', '', '', NULL, '', NULL, 'chuckbutler@usa.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4372, '2006-09-25', 'Chuck', 'Pappas', '', '', '', '', NULL, '', NULL, 'chuckpappas@wideopenwest.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7966, '2009-03-26', 'Don', 'Slavin', '', '', '', '', NULL, '', NULL, 'dslavin@gmail.com', NULL, NULL, true, NULL, NULL, '<p>Don</p>', '2009-03-26', '2009-03-26', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4374, '2006-09-25', 'Chuck', 'Rozema', '', '', '', '', NULL, '', NULL, 'cjrozema@charter.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4375, '2006-09-25', 'Cherie', 'Dozier', '', '', '', '', NULL, '', NULL, 'cld92786@netzero.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4376, '2006-09-25', 'Craig', 'Mulhinch', '', '', '', '', NULL, '', NULL, 'cm@boscospizza.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8096, '2009-06-03', '', '', '', '', '', '', NULL, '', NULL, 'alanmcrawford@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-03', '2009-06-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4378, '2006-09-25', 'John ', 'Sheppard', '', '', '', '', NULL, '', NULL, 'cobrashep@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4381, '2006-09-25', 'Lynne', 'Cowlishaw', '', '', '', '', NULL, '', NULL, 'cowlidr@kellyservices.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8186, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'fitzenreiter@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4383, '2006-09-25', 'Mark', 'Pochodylo', '', '', '', '', NULL, '', NULL, 'cpochodylo@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4385, '2006-09-25', 'Caroline', 'Smith', '', '', '', '', NULL, '', NULL, 'csmith@rayder.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8320, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'lynettesqueaky@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8378, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'rdeobis@juno.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4388, '2006-09-25', 'Cyrus', 'Warshaw', '', '', '', '', NULL, '', NULL, 'cwcabernet@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4428, '2006-09-25', 'Don and Jan', 'Nawrocki', '', '', '', '', NULL, '', NULL, 'donaldnawrocki@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4391, '2006-09-25', 'David', 'Allen', '', '', '', '', NULL, '', NULL, 'dallen5@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4392, '2006-09-25', 'Mark', 'Webb', '', '', '', '', NULL, '', NULL, 'danirwebb@verizon.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4393, '2006-09-25', 'Dave', 'Kaunisto', '', '', '', '', NULL, '', NULL, 'dave@eccv.org', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4394, '2006-09-25', 'David', 'Weston', '', '', '', '', NULL, '', NULL, 'david_1724@charter.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4397, '2006-09-25', 'David', 'Stile', '', '', '', '', NULL, '', NULL, 'davidstile@forestcity.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4398, '2006-09-25', 'Daniel', 'Gillis', '', '', '', '', NULL, '', NULL, 'dbgillis@sympatico.ca', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4399, '2006-09-25', 'Denise', 'Bither', '', '', '', '', NULL, '', NULL, 'dbither.commerce@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8426, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'skidogsc@netzero.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4404, '2006-09-25', 'Deborah', 'White', '', '', '', '', NULL, '', NULL, 'debwhite98@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4405, '2006-09-25', 'Carron', 'Koester', '', '', '', '', NULL, '', NULL, 'decacon54@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4406, '2006-09-25', 'Deborah', 'Erickson', '', '', '', '', NULL, '', NULL, 'DErickson123@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8906, '2009-10-26', 'Karen', 'Endlein ', '', '', '', '', NULL, '', NULL, 'peso08@charter.net ', NULL, NULL, true, NULL, NULL, '', '2009-10-26', '2009-10-26', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4410, '2006-09-25', 'Gerry', 'Feeman', '', '', '', '', NULL, '', NULL, 'dfeeman@barrettpaving.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4411, '2006-09-25', 'Donald', 'Stephanic', '', '', '', '', NULL, '', NULL, 'dfscommerce@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4412, '2006-09-25', 'Dennis', 'Grosskopf', '', '', '', '', NULL, '', NULL, 'dg1@att.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4413, '2006-09-25', 'Diana', 'Guibord', '', '', '', '', NULL, '', NULL, 'dguibord@charter.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4414, '2006-09-25', 'Holly', 'Clemans', '', '', '', '', NULL, '', NULL, 'dhclemans@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4416, '2006-09-25', 'Dino & Kim', 'Lalama', '', '', '', '', NULL, '', NULL, 'dinolalama@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4417, '2006-09-25', 'Brad', 'Vorpahl', '', '', '', '', NULL, '', NULL, 'divorpahl@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4418, '2006-09-25', 'Diane', 'Wilks', '', '', '', '', NULL, '', NULL, 'diwilks@wowway.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4420, '2006-09-25', 'Donald', 'Kenney', '', '', '', '', NULL, '', NULL, 'dkenneyjr@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4423, '2006-09-25', 'Dan', 'Massey', '', '', '', '', NULL, '', NULL, 'dmassey@twmi.rr.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4424, '2006-09-25', 'Kelly', 'Mukomel', '', '', '', '', NULL, '', NULL, 'dmukomel@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8467, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'tkokales@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4426, '2006-09-25', 'Stacey', 'Dobbin', '', '', '', '', NULL, '', NULL, 'dobbins@sofsurfaces.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4427, '2006-09-25', 'Seung Jun', 'Lee', '', '', '', '', NULL, '', NULL, 'dolflee@empal.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4430, '2006-09-25', 'Douglas', 'Roby', '', '', '', '', NULL, '', NULL, 'doug.roby@gpschools.org', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4432, '2006-09-25', 'Doug', 'Tomayko', '', '', '', '', NULL, '', NULL, 'dougtomayko@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4433, '2006-09-25', 'Douglas', 'Campbell', '', '', '', '', NULL, '', NULL, 'dpcampbell@prodigy.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4435, '2006-09-25', 'Diane', 'Shepherd', '', '', '', '', NULL, '', NULL, 'drrubicz@umich.edu', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4437, '2006-09-25', 'Vijay', 'DSouza', '', '', '', '', NULL, '', NULL, 'dsouza.vijay@gmail.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4438, '2006-09-25', 'Deborah', 'Steingold', '', '', '', '', NULL, '', NULL, 'dsrs5@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4439, '2006-09-25', 'David', 'Sanders', '', '', '', '', NULL, '', NULL, 'dssanders@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7802, '2009-02-04', 'Arthur', 'DeMonte', '', '', '', '', NULL, '', NULL, 'apdemonte@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-02-04', '2009-02-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4441, '2006-09-25', 'Deborah', 'Valice', '', '', '', '', NULL, '', NULL, 'dvd0216@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4442, '2006-09-25', 'Dennis', 'Winkler', '', '', '', '', NULL, '', NULL, 'dwink01@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8097, '2009-06-03', '', '', '', '', '', '', NULL, '', NULL, 'andyv@keiprototype.com', NULL, NULL, true, NULL, NULL, '', '2009-06-03', '2009-06-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4466, '2006-09-25', 'Derek and barb', 'Gentile', '', '', '', '', NULL, '', NULL, 'gentile261@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4445, '2006-09-25', 'Elana', 'Weisberg', '', '', '', '', NULL, '', NULL, 'elanarealtor@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8187, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'floydfamilyof5@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4447, '2006-09-25', 'Ed', 'VanDeneynde', '', '', '', '', NULL, '', NULL, 'emajvan@xcelco.on.ca', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4448, '2006-09-25', 'Larry', 'Emerling', '', '', '', '', NULL, '', NULL, 'emerlingl@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8014, '2009-05-22', 'Angela', 'Zuiderveen', '', '', '', '', NULL, '', NULL, 'angiezuiderveen@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-05-22', '2009-05-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4452, '2006-09-25', 'Earl', 'Smith', '', '', '', '', NULL, '', NULL, 'esmith@dtl-inc.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4453, '2006-09-25', 'Paula', 'Staperfenne', '', '', '', '', NULL, '', NULL, 'estaperfenne@rochester.k12.mi.us', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8321, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'lynncarbo@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4456, '2006-09-25', 'Leah', 'Davis', '', '', '', '', NULL, '', NULL, 'evergreen05@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4457, '2006-09-25', 'Brian', 'Swiech', '', '', '', '', NULL, '', NULL, 'eyesound@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8015, '2009-05-22', 'John', 'Lynn', '', '', '', '', NULL, '', NULL, 'jlynnruns2@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-05-22', '2009-05-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4460, '2006-09-25', 'Jill', 'Bacic', '', '', '', '', NULL, '', NULL, 'fbacic1@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4461, '2006-09-25', 'Gary', 'Francis', '', '', '', '', NULL, '', NULL, 'francisg5@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4463, '2006-09-25', 'Gail', 'Trendler', '', '', '', '', NULL, '', NULL, 'gail.trendler@gm.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4464, '2006-09-25', 'Julie', 'Gallagher', '', '', '', '', NULL, '', NULL, 'gall1954@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4467, '2006-09-25', 'Jennifer', 'VanderWeele', '', '', '', '', NULL, '', NULL, 'gigiv@wowway.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4468, '2006-09-25', 'Tim', 'Homer', '', '', '', '', NULL, '', NULL, 'gina@bbsbradys.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4469, '2006-09-25', 'Nancy', 'Juszczyk', '', '', '', '', NULL, '', NULL, 'gjuszczyk@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4470, '2006-09-25', 'Gary', 'Kendell', '', '', '', '', NULL, '', NULL, 'gkendell@mchsi.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4472, '2006-09-25', 'Greg', 'Mendrek', '', '', '', '', NULL, '', NULL, 'gmendrek@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4473, '2006-09-25', 'Gary', 'Olson', '', '', '', '', NULL, '', NULL, 'golson@serena.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4474, '2006-09-25', 'Ron', 'Behl', '', '', '', '', NULL, '', NULL, 'gomad2@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4476, '2006-09-25', 'Laurie', 'Graham', '', '', '', '', NULL, '', NULL, 'GRAHALL@KELLYSERVICES.COM', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4477, '2006-09-25', 'Grant', 'Holmes', '', '', '', '', NULL, '', NULL, 'grant@glmf.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4478, '2006-09-25', 'Connie', 'Schwepe', '', '', '', '', NULL, '', NULL, 'greconpc@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4479, '2006-09-25', 'Todd', 'Griffin', '', '', '', '', NULL, '', NULL, 'griffintw@ameritech.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4481, '2006-09-25', 'Frederic', 'Slete', '', '', '', '', NULL, '', NULL, 'gringuy1@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4483, '2006-09-25', 'Traci', 'Elliott', '', '', '', '', NULL, '', NULL, 'gtelliott@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4484, '2006-09-25', 'Gary', 'Elrod', '', '', '', '', NULL, '', NULL, 'gtesr2000@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4486, '2006-09-25', 'Kathleen', 'Rutherford', '', '', '', '', NULL, '', NULL, 'gwr22@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4487, '2006-09-25', 'Craig', 'Hall', '', '', '', '', NULL, '', NULL, 'hallcraig@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4492, '2006-09-25', 'Harry & Joann', 'Winston', '', '', '', '', NULL, '', NULL, 'harfour@bellsouth.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4488, '2006-09-25', 'Allen', 'Hanawalt', '', '', '', '', NULL, '', NULL, 'hanawalt@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4491, '2006-09-25', 'Eric', 'Hanson', '', '', '', '', NULL, '', NULL, 'hansone@msu.edu', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4494, '2006-09-25', 'Ronald', 'Hatlin', '', '', '', '', NULL, '', NULL, 'hatbuild@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4495, '2006-09-25', 'Matthew', 'Hilliard', '', '', '', '', NULL, '', NULL, 'hilliardmj@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4497, '2006-09-25', 'Lynne', 'Hollbacher', '', '', '', '', NULL, '', NULL, 'hollbacher@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4498, '2006-09-25', 'Holly', 'Drayfahl', '', '', '', '', NULL, '', NULL, 'hollyandblaine@usfamily.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4499, '2006-09-25', 'Greg', 'Hoops', '', '', '', '', NULL, '', NULL, 'hoopster655@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4501, '2006-09-25', '', 'Houghton-Rahrig', '', '', '', '', NULL, '', NULL, 'houghtol@gvsu.edu', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4503, '2006-09-25', 'Brian', 'Hubbell', '', '', '', '', NULL, '', NULL, 'hubs@perceptron.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4504, '2006-09-25', 'Robert', 'Iaquiniello', '', '', '', '', NULL, '', NULL, 'iaquaniello@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4506, '2006-09-25', 'Susan', 'Hathaway', '', '', '', '', NULL, '', NULL, 'info@heatherlanepottery.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4507, '2006-09-25', 'Tammy', 'Inglis', '', '', '', '', NULL, '', NULL, 'inglis111@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4508, '2006-09-25', 'Jeffery', 'Weber', '', '', '', '', NULL, '', NULL, 'j3weber1@wmich.edu', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4510, '2006-09-25', 'Bryan', 'Pepp', '', '', '', '', NULL, '', NULL, 'jakegervais@pioneersurgical.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4511, '2006-09-25', 'Janet', 'Labond', '', '', '', '', NULL, '', NULL, 'jalthefungal@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8427, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'sky_ski_blue@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4512, '2006-09-25', 'Jim', 'Mickiewicz', '', '', '', '', NULL, '', NULL, 'james.mickiewicz@wkbdtv.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8098, '2009-06-03', '', '', '', '', '', '', NULL, '', NULL, 'armstrong.mikej@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-03', '2009-06-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4515, '2006-09-25', 'Janice', 'Gould', '', '', '', '', NULL, '', NULL, 'jangould@ciaccess.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4516, '2006-09-25', 'Michelle', 'Jarrard', '', '', '', '', NULL, '', NULL, 'jarrard@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4518, '2006-09-25', 'Allen', 'Berman', '', '', '', '', NULL, '', NULL, 'jberman@dmc.org', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4519, '2006-09-25', 'James', 'Steele', '', '', '', '', NULL, '', NULL, 'jbsteele1@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4520, '2006-09-25', 'Linden', 'Buck', '', '', '', '', NULL, '', NULL, 'jcbllb@chartermi.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7803, '2009-02-04', 'Adrian', 'Rogier', '', '', '', '', NULL, '', NULL, 'arogier@siua.com', NULL, NULL, true, NULL, NULL, '', '2009-02-04', '2009-02-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4523, '2006-09-25', 'Joseph', 'Conte', '', '', '', '', NULL, '', NULL, 'jconte187044@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4525, '2006-09-25', 'Jonathon', 'Deneau', '', '', '', '', NULL, '', NULL, 'jdeneau@linksim.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4528, '2006-09-25', 'Jeff', 'Hansen', '', '', '', '', NULL, '', NULL, 'Jeff.Hansen@xerox.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4530, '2006-09-25', 'Jennifer', 'Merrill', '', '', '', '', NULL, '', NULL, 'jennifer@kaleidoscopeassoc.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4531, '2006-09-25', 'Jennifer', 'Streeter', '', '', '', '', NULL, '', NULL, 'jenniferstreeter@msn.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4532, '2006-09-25', 'Jessica', 'Prentice', '', '', '', '', NULL, '', NULL, 'jessica_prentice@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4534, '2006-09-25', 'William', 'Gehrke', '', '', '', '', NULL, '', NULL, 'JGehrke100@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4535, '2006-09-25', 'Janis', 'Gorelick', '', '', '', '', NULL, '', NULL, 'jgorelick@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4536, '2006-09-25', 'James', 'Goulet', '', '', '', '', NULL, '', NULL, 'jgoulet@umich.edu', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4537, '2006-09-25', 'James', 'Hagberg', '', '', '', '', NULL, '', NULL, 'JHAGBERG5@MSN.COM', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4538, '2006-09-25', 'Joshua', 'Honeycutt', '', '', '', '', NULL, '', NULL, 'jhoneycutt1062@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4540, '2006-09-25', 'Jill', 'McCrary', '', '', '', '', NULL, '', NULL, 'jillmc80@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4541, '2006-09-25', 'James', 'Menzie', '', '', '', '', NULL, '', NULL, 'jim.menzie@sysdesinc.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4542, '2006-09-25', 'James', 'Harrington', '', '', '', '', NULL, '', NULL, 'jim_harrington@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4543, '2006-09-25', 'James', 'Lane', '', '', '', '', NULL, '', NULL, 'jimmylane11@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7894, '2009-02-09', 'Christian', 'Dersidan', '', '', '', '', NULL, '', NULL, 'dersidc@mac.com', NULL, NULL, true, NULL, NULL, '', '2009-02-09', '2009-02-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4545, '2006-09-25', 'Jeong', 'Kim', '', '', '', '', NULL, '', NULL, 'jin108@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7967, '2009-03-28', 'Susan', 'Hammer', '4900 Warblers Way', 'Midland', 'MI', '48640', NULL, '9898358757', NULL, 'seh630@yahoo.com', NULL, NULL, true, 4, 5, 'Please let me know the rate will be at the petoskey soccer tournament', '2009-06-19', '2009-06-21', '', ':Soccer Weekend:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4548, '2006-09-25', 'Russel', 'Knister', '', '', '', '', NULL, '', NULL, 'JKNISTER@COMCAST.NET', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4550, '2006-09-25', 'Daniel', 'Seeds', '', '', '', '', NULL, '', NULL, 'jm4seeds@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4553, '2006-09-25', 'Janet', 'Kijek', '', '', '', '', NULL, '', NULL, 'jmrsk@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4554, '2006-09-25', 'Jose', 'Villarreal', '', '', '', '', NULL, '', NULL, 'jnv033@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4555, '2006-09-25', 'Joe', 'Ferrell', '', '', '', '', NULL, '', NULL, 'joe.elin@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4557, '2006-09-25', 'Mark', 'Johnston', '', '', '', '', NULL, '', NULL, 'johnstonm@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4558, '2006-09-25', 'Joshua', 'Sherbin', '', '', '', '', NULL, '', NULL, 'joshuasherbin@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4561, '2006-09-25', 'Richard', 'Kosek', '', '', '', '', NULL, '', NULL, 'jrfkosek@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4562, '2006-09-25', 'John', 'Ricci', '', '', '', '', NULL, '', NULL, 'JRICCI5901@AOL.COM', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8188, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'frenchy45616@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4564, '2006-09-25', 'J.R.', 'Whitby', '', '', '', '', NULL, '', NULL, 'jrw@gospelcom.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4565, '2006-09-25', 'Jerriann', 'Pica', '', '', '', '', NULL, '', NULL, 'js7pica@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4568, '2006-09-25', 'John', 'Sternfels', '', '', '', '', NULL, '', NULL, 'jsternfels@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4569, '2006-09-25', 'Anne', 'Webb', '', '', '', '', NULL, '', NULL, 'jtwebb4@airadvantage.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4570, '2006-09-25', 'Julie', 'Stark', '', '', '', '', NULL, '', NULL, 'juliestark@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4571, '2006-09-25', 'Jeff', 'Anderson', '', '', '', '', NULL, '', NULL, 'justinjaguar@netzero.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8322, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'm.sweeney@wowway.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4574, '2006-09-25', 'John', 'Weston', '', '', '', '', NULL, '', NULL, 'jweston@gp.lib.mi.us', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8428, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'smannnard@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4576, '2006-09-25', 'Joanne', 'Yung', '', '', '', '', NULL, '', NULL, 'jyung92@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4577, '2006-09-25', 'Teressa', 'Zettelmaier', '', '', '', '', NULL, '', NULL, 'jzettelmaier@tds.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4578, '2006-09-25', 'Kevin', 'Smith', '', '', '', '', NULL, '', NULL, 'k4msmith@msn.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4580, '2006-09-25', 'Karen', 'Heiser', '', '', '', '', NULL, '', NULL, 'karen@heiserfamily.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4581, '2006-09-25', 'Kathleen', 'Kerch', '', '', '', '', NULL, '', NULL, 'kathleen.kerch@spcorp.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4583, '2006-09-25', 'Karen', 'Batia', '', '', '', '', NULL, '', NULL, 'kbatia@gmail.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4584, '2006-09-25', 'Kenneth', 'Blasius', '', '', '', '', NULL, '', NULL, 'kbind@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4585, '2006-09-25', 'Kelley', 'Bretz', '', '', '', '', NULL, '', NULL, 'kbretz@phm.k12.in.us', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4587, '2006-09-25', 'Keith', 'Kallen', '', '', '', '', NULL, '', NULL, 'keithk@crosswindsus.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4588, '2006-09-25', 'Kelli', 'Cain', '', '', '', '', NULL, '', NULL, 'kelli.cain@bissell.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4589, '2006-09-25', 'Kathryn', 'Logan', '', '', '', '', NULL, '', NULL, 'kewlkat2020@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4591, '2006-09-25', 'Kelly', 'Gawron', '', '', '', '', NULL, '', NULL, 'kgawron@ford.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4592, '2006-09-25', 'Chris', 'Wagner', '', '', '', '', NULL, '', NULL, 'kiawags@mac.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4594, '2006-09-25', 'Kirsten', 'Vilona', '', '', '', '', NULL, '', NULL, 'kjvilona@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4595, '2006-09-25', 'Tim & Karen', 'Zera', '', '', '', '', NULL, '', NULL, 'kjzera@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7804, '2009-02-04', 'Arthur', 'Noey', '', '', '', '', NULL, '', NULL, 'art.noey@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-02-04', '2009-02-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4597, '2006-09-25', 'Kristen', 'Kapelanski', '', '', '', '', NULL, '', NULL, 'kkapelanski@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4598, '2006-09-25', 'Jean', 'Kennedy', '', '', '', '', NULL, '', NULL, 'kkenn84208@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4599, '2006-09-25', 'Karen', 'Kohut', '', '', '', '', NULL, '', NULL, 'kkohutod@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4601, '2006-09-25', 'Kathryn', 'Laethem', '', '', '', '', NULL, '', NULL, 'klaethem@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4602, '2006-09-25', 'Kristine', 'Clubine', '', '', '', '', NULL, '', NULL, 'klclub217@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8907, '2009-10-26', 'Susan', 'Bourque', '', '', '', '', NULL, '', NULL, 'susanne.bourque@trane.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-26', '2009-10-26', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (103, '2003-08-11', 'Mary', 'Yates', '3303 N. Lakewood Ave', 'Chicago', 'Il ', '60657', NULL, '630 227-3314', NULL, 'mamie.yates@gm.com', NULL, NULL, true, 7, 5, '', '2003-12-27', '2003-12-30', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (104, '2003-08-12', 'Sharon', 'Kanya', '20269 Woodcreek Blvd', 'Northville', 'mi', '48167', NULL, '248-449-6768', NULL, 'sharon@kanyafamily.com', NULL, NULL, true, 9, 2, '', '2004-01-01', '2004-01-04', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (259, '2003-08-17', 'Bruce', 'Allen', '825 Stoneham', 'Saginaw', 'MI', '48603', NULL, '(989) 792-1154', NULL, 'ballen@shelti.com', NULL, NULL, true, 9, 3, 'We stayed with you last year and had a wonderful time.  If available plese locate us near the pool.  Thank you, \r
+Bruce Allen', '2003-12-27', '2003-12-30', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (289, '2003-08-18', 'Gordon', 'Konyndyk', '', 'Grand Rapids', 'MI', '49506', NULL, '', NULL, 'gkonyndyk@hotmail.com', NULL, NULL, true, 9, NULL, '', '2003-08-18', '2003-08-18', '', ':12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (298, '2003-08-18', 'John ', 'Arnold', '824 Three Mile Dr.', 'Grosse Pointe Park', 'MI', '48230', NULL, '313-822-0376', NULL, 'johnarnold@comcast.net', NULL, NULL, true, 9, 1, '', '2003-12-27', '2003-12-30', 'Plans are to check-in on Sunday, Dec. 27 and check-out Tuesday, Dec. 31st.', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (299, '2003-08-18', 'Mary', 'Steffel', '4124 Oak Tree Court', 'loveland', 'OH', '45140', NULL, '513-697-9717', NULL, 'msteffel@cinci.rr.com', NULL, NULL, false, 6, 2, 'Are looking for TWO condos, each w/either 2 or 3 bedrooms + loft. Have 8 people in each party. Can you quote a rate for both condos, if available? THANK YOU!', '2003-12-27', '2004-01-02', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (565, '2003-08-27', 'Cheryl', 'Bederka', '', '', '', '', NULL, '', NULL, 'cbederka@visteon.com', NULL, NULL, false, 9, 0, 'We''ll be in the area for Biketoberfest, but need pet friendly accommodations this year.  One dog who will be supervised and crated.  Willing to pay "pet deposit" or additional fees.', '2003-10-03', '2003-10-05', '', ':15:17:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7968, '2009-04-02', 'Allan', 'Harris ', '', '', '', '', NULL, '', NULL, 'harrispole@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-04-02', '2009-04-02', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (574, '2003-09-08', 'Richard', 'Hughes', '601 Beech Street', 'Clare', 'MI', '48617', NULL, '989-544-3632', NULL, 'rwhughes@voyager.net', NULL, NULL, true, 9, 5, '', '2003-12-29', '2004-01-01', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7895, '2009-02-10', 'Yun', 'Lu', '', '', '', '', NULL, '', NULL, 'yunlugu@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-02-10', '2009-02-10', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (580, '2003-09-14', 'Anthony ', 'Kanakri', '', '', '', '', NULL, '', NULL, 'anth00736@hotmail.com', NULL, NULL, false, 9, 2, '', '2003-12-20', '2003-12-24', '', ':2:12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (292, '2003-08-18', 'Kari', 'Kreft', '', 'Solon', 'OH', '44139', NULL, '', NULL, 'kckreft@yahoo.com', NULL, NULL, true, 9, NULL, '', '2003-08-18', '2003-08-18', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (582, '2003-09-14', 'Darlene Marsh', '', '8378 Potter Road', 'Flushing', 'Michigan', '48433', NULL, '659-0293', NULL, 'Darlenema@uawlsp.com', NULL, NULL, true, 9, 0, 'We would be leaving Sunday, 11/30/2003.  We have been up there at this time during Thanksgiving and you aren''t busy.  What kind of special rate can you give us?  ', '20003-11-27', '2003-11-30', '', ':12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (586, '2003-09-16', 'McNash', 'Connie', '719 Upper Scotsborough Way', 'Bloomfield Hills', 'MI', '48304', NULL, '248-454-8867', NULL, 'cmmcnash@comcast.net', NULL, NULL, false, 6, 5, '', '2003-10-10', '2003-10-12', '', ':18:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (588, '2003-09-17', 'Frank', 'Mustazza', '1151 Arbroak CT', 'Lake Orion', 'MI', '48362', NULL, '248-269-9988', NULL, 'frankmustazza@jawood.com', NULL, NULL, false, 9, 0, 'I know 3 people who own cond''s in Trout Creek and have stayed there many times overthe last 10 years.  I am looking for a 3 bedroom condo, to rent & use.  I am not in a hurry, and looking for a motivated seller.  I have the funds availble for a fast deal.\r
+\r
+Thanks\r
+\r
+Frank Mustazza', NULL, NULL, '', ':19:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (589, '2003-09-17', 'Heather', 'Bobel', '203 1/2 S. Findlay Street', 'Haskins', 'Ohio', '43525', NULL, '419-351-1131', NULL, 'heatherbobel@hotmail.com', NULL, NULL, true, 6, 5, '', '2003-12-31', '2004-01-04', '', ':2:13:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (590, '2003-09-17', 'Russ Rice', '', '46299 Winston Dr.', 'Shelby Township', 'MI', '48315', NULL, '586 247 4935', NULL, 'rrice55@wowway.com', NULL, NULL, true, 9, 0, 'Please identifiy the price for these three nights as well as the option of staying for three nights beginning January 30, 2004 departing February 2, 2004', '2003-12-31', '2004-03-01', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (594, '2003-09-20', 'Ron', 'Wernette', '949 James K Blvd', 'Pontiac', 'MI', '48341', NULL, '313/871-4419', NULL, 'rwernett@bowman-brooke.com', NULL, NULL, false, 6, 4, 'Please contact me within 7 days.  I will be making reservations within that time.', '2004-01-16', '2004-01-19', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (597, '2003-09-21', 'Marianne', 'Schlick', '2700 Oakwood SE', 'East Grand Rapids', 'Michigan', '49506', NULL, '616 949 9444', NULL, 'rmschlick@aol.com', NULL, NULL, true, 9, 0, 'Are there any packages this year with Boyne Highlands, Nubs Nob, or Boyne?  ', '2003-12-31', '2003-01-03', '', ':2:12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (600, '2003-09-22', 'Cathy', 'McKenzie', '', '', '', '', NULL, '', NULL, 'cmck659@comcast.net', NULL, NULL, true, NULL, NULL, '', '2003-09-22', '2003-09-22', '', ':12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (603, '2003-09-22', '', 'Norris', '', '', '', '', NULL, '', NULL, 'norris@pcs.k12.mi.us', NULL, NULL, true, NULL, NULL, '', '2003-09-22', '2003-09-22', '', ':12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (606, '2003-09-22', 'Paul and Pam', 'Derby', '', '', '', '', NULL, '', NULL, 'derbydd@msn.com', NULL, NULL, true, NULL, NULL, '', '2003-09-22', '2003-09-22', '', ':12:14:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (608, '2003-09-22', 'Scott', 'Weber', '', '', '', '', NULL, '', NULL, 'sw00@aol.com', NULL, NULL, true, NULL, NULL, '', '2003-09-22', '2003-09-22', '', ':12:14:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (615, '2003-09-23', 'J', 'FRIS', '2031 LAKEWAY', 'HOLLAND', 'MI', '49423', NULL, '616-335-8801', NULL, 'j@frisoffice.com', NULL, NULL, true, 8, 0, '', '2003-12-31', '2004-01-03', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8099, '2009-06-03', '', '', '', '', '', '', NULL, '', NULL, 'aspajb@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-03', '2009-06-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (616, '2003-09-23', 'Ray', 'Browers', '18755 Winding Brook Place', 'Big Rapids', 'Michigan', '49307', NULL, '231/796-8546', NULL, 'rgbrowers@yahoo.com', NULL, NULL, true, 0, 1, '', '2004-01-04', '2004-01-09', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9318, '2010-01-24', 'Andrea', 'Simard', '2856 Intertown Road', 'Petoskey', 'MI', '49770', NULL, '231-439-0636', NULL, 'andreasimard03@gmail.com', NULL, NULL, true, 8, 6, 'Beginning to plan a 40-60 person family reunion for summer of 2011 and interested in room rates, availability, etc.  People traveling from Florida and California.  Thank you.  ', '2011-07-28', '2011-07-31', 'Live in area and been in condos ', ':Biking:Family Reunion:Fishing:Golf Packages:Tennis:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (653, '2003-09-26', 'Sallie', 'Hutton', '', 'Champagne', 'IL', '61821', NULL, '', NULL, 'dshutton@sbcglobal.net', NULL, NULL, true, 6, NULL, '', '2003-09-26', '2003-09-26', '', ':2:12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (663, '2003-09-26', 'Jaackie', 'Masich', '', 'Tawas', 'MI', '48730', NULL, '', NULL, 'jackie@tawasbayagency.com', NULL, NULL, true, 7, NULL, '', '2003-09-26', '2003-09-26', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (690, '2003-09-26', 'Sandra', 'Tkac', '', 'Brighton', 'MI', '48114', NULL, '', NULL, 'stkac@comcast.net', NULL, NULL, true, 4, NULL, '', '2003-09-26', '2003-09-26', '', ':14:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (695, '2003-09-26', 'Francis', 'Villarreal', '', 'Canton', 'MI', '48187', NULL, '', NULL, 'jnvillarreal@comcast.net', NULL, NULL, true, 4, NULL, '', '2003-09-26', '2003-09-26', '', ':12:14:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (703, '2003-09-26', 'Pamela', 'Nalley', '17337 Mountain Plat', 'Grand Haven', 'MI', '49417', NULL, '616-844-5178', NULL, 'pjnalley@chartermi.net', NULL, NULL, true, 8, 4, '', '2003-12-19', '2003-12-27', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (706, '2003-09-29', 'sydney', 'kenyon', '', '', '', '', NULL, '', NULL, 'sydney_kenyon@hotmail.com', NULL, NULL, false, 6, 5, 'What is your availability fr these dates? Do you offer ski lift tickets? What are the additional charges? Thanks!', '2003-12-27', '2004-01-03', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (707, '2003-09-30', 'Tom', 'Wolski', '7315 Emanon', 'Dearborn', 'MI', '48126', NULL, '2483718817', NULL, 'twolski@hotmail.com', NULL, NULL, true, 9, 0, '', '2003-12-30', '2004-01-02', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (711, '2003-10-02', 'louanne ', 'saenz', '30244 kingsway', 'farmington hills', 'mi', '48331', NULL, '248-956-4007', NULL, 'saenzl@walledlake.k12.mi.us', NULL, NULL, true, NULL, 0, 'this is for up to 20 people so how ever you can accomodate that would be fine', '2003-12-26', '2004-01-02', 'forme owner', ':12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (713, '2003-10-03', 'Kristina', 'Haberl', '1000 Triangle Lk Rd', 'Howell', 'MI ', '48843', NULL, '517-548-7935', NULL, 'kostepp@umich.edu', NULL, NULL, true, 9, 0, '', '2004-02-14', '2004-02-16', 'If possible we would like a unit close to the swimming pool, non-smoking...Please.  This is our 3rd time here and have never had close to the swimming area.', ':2:12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (716, '2003-10-06', 'Michal', 'Meissner', '6306 Beaver Creek Court', 'Fort Wayne', 'IN ', '46814', NULL, '260-459-0959', NULL, 'michal.meissner@eu.effem.com', NULL, NULL, false, 9, 1, '', '2004-03-01', '2004-09-01', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (719, '2003-10-06', 'Alana', 'Rabedioux', '1598 Dawn Marie Ct.', 'Auburn', 'MI', '48611', NULL, '(989) 964-4423', NULL, 'arabedio@svsu.edu', NULL, NULL, true, 9, 1, '', '2003-12-30', '2004-01-02', '', ':2:12:19:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (721, '2003-10-07', 'Karen', 'Moore', '43805 Cherry Grove Ct. E.', 'Canton', 'MI', '48188', NULL, '734-667-3774', NULL, 'kcook10@comcast.net', NULL, NULL, true, 6, 5, '', '2003-10-17', '2003-10-19', '', ':13:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (724, '2003-10-13', 'erin', 'crocker', '600 30 th st   #723', 'boulder', 'colorado', '80310', NULL, '734 945 1557', NULL, 'erin.crocker@colorado.edu', NULL, NULL, true, 4, 3, '', '2003-12-30', '2004-01-01', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (727, '2003-10-15', 'Elizabeth', 'Warner', '2003 Stearns', 'Kalamazoo', 'MI', '49008', NULL, '269-385-6248', NULL, 'warnere@bronsonhg.org', NULL, NULL, true, 9, 1, '', '2003-12-20', '2003-12-23', '', ':2:3:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (734, '2003-10-15', 'Cindy', 'Clough', '', 'Rochester Hills', 'MI', '48306', NULL, '', NULL, 'cindyclough@aol.com', NULL, NULL, true, 4, NULL, '', '2003-10-15', '2003-10-15', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7805, '2009-02-04', 'Arvin', 'Singla', '', '', '', '', NULL, '', NULL, 'arvin.singla@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-02-04', '2009-02-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (777, '2003-10-18', 'Jean Burton', '', '359 Pinetree Drive NE', 'Atlanta', 'GA', '30305', NULL, '404-231-1909', NULL, 'jeanburton2002@yahoo.com', NULL, NULL, true, 9, 3, '', '2003-12-30', '2004-01-04', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7896, '2009-02-10', 'Kathleen', 'Blazoff', '', '', '', '', NULL, '', NULL, 'skblaze@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-02-10', '2009-02-10', '', ':12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (781, '2003-10-21', 'Ken', 'Danaj', '', '', '', '', NULL, '', NULL, 'benbeth@comcast.net', NULL, NULL, true, NULL, NULL, '', '2003-10-21', '2003-10-21', '', ':12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (782, '2003-10-21', 'Tina', 'Galloway', '', '', '', '', NULL, '', NULL, 'rtg2years@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2003-10-21', '2003-10-21', '', ':17:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (810, '2003-10-21', 'Laurel', 'Stemper', '1685 Greenbrier Drive', 'Libertyville', 'IL', '60048', NULL, '(847)680-9117', NULL, 'LStem1685@aol.com', NULL, NULL, true, 7, 5, '', '2003-12-31', '2004-01-04', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (812, '2003-10-22', 'Cindy', 'Bixby', '24724 Highlands', 'Novi', 'MI', '48375', NULL, '', NULL, 'cbixby@twmi.rr.com', NULL, NULL, true, 0, 4, '', '2003-11-26', '2003-11-30', '', ':12:18:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (814, '2003-10-23', 'Don ', 'Maine', '550 Overbrook Lane SE', 'Grand Rapids', 'MI', '49507', NULL, '616-452-2741', NULL, 'd.maine@comcast.net', NULL, NULL, true, 2, 3, '', '2003-12-27', '2003-12-29', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (815, '2003-10-24', 'Adam ', 'Enterkin', '196 Cherry', 'Troy', 'MI', '48083', NULL, '248-524-1539', NULL, 'tfdae122@yahoo.com', NULL, NULL, true, 6, 5, 'Do you have ski packages for Nubs or Boyne or discounts', '2003-12-27', '2003-12-30', '', ':2:13:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (624, '2003-09-25', 'Tom', 'Clark', '', '', '', '', NULL, '', NULL, 'tclark@pgatourhq.com', NULL, NULL, true, NULL, NULL, '', '2003-09-25', '2003-09-25', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (824, '2003-10-27', 'Doug', 'Burroughs', '2000 Fairway Glen', 'St. Clair', 'MI', '48079', NULL, '810-329-4635', NULL, 'DMB419@comcast.net', NULL, NULL, true, 6, 5, '', '2003-11-27', '2003-11-30', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8100, '2009-06-03', '', '', '', '', '', '', NULL, '', NULL, 'aviz3@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-03', '2009-06-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (835, '2003-11-02', 'Cheryl', 'Gilpin', ' 216 N. Wisner', 'Jackson', 'MI', '49202', NULL, '517 783-5244', NULL, '15.cgilpin@heritageacademies.com', NULL, NULL, true, 9, 0, '', '2004-02-01', '2004-04-01', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (837, '2003-11-02', 'JAMES', 'CALDERARO', '1029 GLENMORE CIRCLE', 'LOCKPORT', 'IL', '60441', NULL, '815-834-1228', NULL, 'JFCALDERARO@JUNO.COM', NULL, NULL, true, 9, 0, '', '2004-02-13', '2004-02-16', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (838, '2003-11-03', 'carl', 'patron', '', '', '', '', NULL, '', NULL, 'carl@bhamcc.com', NULL, NULL, false, 9, NULL, '', NULL, NULL, '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (839, '2003-11-03', 'John', 'Murray', '507 Grove', 'Hudson', 'MI', '49247', NULL, '517.448.7768', NULL, 'landjmurray@aol.com', NULL, NULL, true, 6, 4, '', '2003-12-26', '2003-12-28', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (840, '2003-11-03', 'tom', 'luke', '1033 audubon rd.', 'grosse pointe', 'MI', '48230', NULL, '3138829788', NULL, 'tomluke@comcast.net', NULL, NULL, false, 8, 3, '', '2003-12-26', '2003-12-28', 'have stayed at trout creek before', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (843, '2003-11-04', 'Greg', 'Hamilton', '251 North Main', 'Cedarville', 'OH', '45314', NULL, '586-491-0279', NULL, 'ghamilton@cedarville.edu', NULL, NULL, true, 4, 0, '', '2003-12-14', '2003-12-16', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (847, '2003-11-05', 'joyce', 'horn', '8611 calumet way', 'CINCINNATI', 'OH', '45249', NULL, '513 489-3082', NULL, 'jtasset@pol.net', NULL, NULL, true, 6, 0, '', '2003-12-27', '2003-01-02', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8189, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'fsass01@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8323, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'madel@verizon.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8380, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'rebekah56@charter.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (851, '2003-11-08', 'Kevin', 'Trigalet', '', '', '', '', NULL, '248-431-7391', NULL, 'trig50@yahoo.com', NULL, NULL, true, 4, 4, '', '2004-01-08', '2004-01-11', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (852, '2003-11-09', 'Jim', 'Mitte', '8479 Colgate St', 'Oak Park', 'MI', '48237', NULL, '248-763-4270', NULL, 'jim@turtlehut.com', NULL, NULL, false, 8, 0, 'I am looking for a larger place for a ski trip during or around New Years.  Do you have any places.  Ski -in, ski out is prefered. Thanks.', '2003-12-28', '2004-01-01', 'Google', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (853, '2003-11-09', 'Sherry ', 'Wainz', '4650 Ginger Hill Road', 'Toledo', 'OH', '43623', NULL, '419-475-2997', NULL, 'sdwainz@yahoo.com', NULL, NULL, true, 9, 0, 'Change of plans since my last inquiry. Travelling with another family for a different date.  Any 3 BRs available?  Hope so!', '2003-12-26', '2003-12-31', '', ':12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7719, '2008-12-15', 'Stanley', 'Granger', '5375 Pembooke Crossing Ct', 'W. Bloomfield', 'MI', '48322', NULL, '', NULL, 'R1000yzf@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-12-15', '2008-12-15', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (856, '2003-11-11', 'Cynthia', 'Wisner', '', '', '', '', NULL, '', NULL, 'cindywisner@aol.com', NULL, NULL, true, NULL, NULL, '', '2003-11-11', '2003-11-11', '', ':14:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7806, '2009-02-04', 'Barbara', 'Dawes', '', '', '', '', NULL, '', NULL, 'badawes@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-02-04', '2009-02-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (863, '2003-11-12', 'Peter', 'Hanson', '897 Ludwig Drive', 'Columbus', 'OH', '43230', NULL, '614-775-0255', NULL, 'hanson.5@osu.edu', NULL, NULL, true, 6, 5, '', '2003-12-27', '2003-12-31', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (867, '2003-11-14', 'William', 'Logan', '313 Droste', 'East Lansing', 'mi', '48823', NULL, '517-374-9158', NULL, 'wlogan@dykema.com', NULL, NULL, true, 6, 1, 'Also need info for a smaller unit for 2 adults/2 children', '2003-12-19', '2003-12-21', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (869, '2003-11-16', 'Christopher ', 'DeValk', '3540 Harwwod', 'Sault Ste. Marie', 'MI', '49783', NULL, '9064406939', NULL, 'C_devalk@hotmail.com', NULL, NULL, true, 7, 0, '', '2003-12-20', '2003-12-21', '', ':12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (870, '2003-11-16', 'Linda', 'Stockner', '1055 Louisiana Ave.', 'Perrysburg', 'OH', '43551', NULL, '419-874-6159', NULL, 'las1055@hotmail.com', NULL, NULL, true, 9, 0, '', '2003-12-20', '2003-12-22', '', ':2:12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (871, '2003-11-16', 'Lori', 'London', '707 Suffield Ave', 'Birmingham', 'MI', '48009', NULL, '248 6469372 ', NULL, 'Londonfam@aol.com', NULL, NULL, true, 9, 3, 'Non smoking unit only ...\r
+we are a bit flexible with our dates (+/-) a day', '2003-12-31', '2004-03-01', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (872, '2003-11-16', 'Kim', 'Hemphill', '3309 Devon Dr. NE', 'Grand Rapids', 'MI', '49546', NULL, '616-942-0067', NULL, 'khemphill7@yahoo.com', NULL, NULL, true, 9, 1, '', '2003-02-13', '2003-02-16', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (875, '2003-11-17', 'Nancy', 'Quay', '920 S Seventh', 'Ann Arbor', 'MI', '48103', NULL, '734-665-0630', NULL, 'nquay@umich.edu', NULL, NULL, true, 9, 0, '', '2004-02-13', '2004-02-15', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (876, '2003-11-17', 'Terry', 'Krueger', '30700 Longcrest', 'Southfield', 'MI', '48076', NULL, '(248) 646-9075', NULL, 'tkrueg2@comcast.net', NULL, NULL, true, 9, 1, '', '2004-02-20', '2004-02-22', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (878, '2003-11-17', 'cynthia', 'gohlke', '2 Island Lane', 'Grosse Pointe', 'MI', '48230', NULL, '313-884-0071', NULL, 'cyd412@comcast.net', NULL, NULL, true, 9, 5, '', '2003-12-29', '2004-01-02', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (879, '2003-11-17', 'Lars', 'Anderson', '', '', '', '', NULL, '', NULL, 'larz88@hotmail.com', NULL, NULL, false, 4, 0, 'hello sir/madam,\r
+I am planning a ski vacation and I was wondering how much 3 nights would cost during the dates mentioned above. Thanks a lot for your help.', '2003-12-20', '2003-12-22', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (881, '2003-11-18', 'Vincent', 'Pavone', '2452 Devon lane', 'Birmingham', 'mi', '48009', NULL, '248-203-9283', NULL, 'VPavone245@aol.com', NULL, NULL, true, 7, 0, '', '2003-12-28', '2003-01-01', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (883, '2003-11-18', 'John', 'Freshley', '1513 Brooklyn Ave', 'Ann Arbor', 'MI', '48104', NULL, '734-996-0557', NULL, 'john@freshley.net', NULL, NULL, true, 6, 1, '', '2004-01-16', '2004-01-19', '', ':2:12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (888, '2003-11-20', 'Jeff', 'Reynolds', '2998 Wetmore Dr.', 'Allegan', 'MI', '49010', NULL, '(269)686-2226', NULL, 'jeff.reynolds@trelleborg.com', NULL, NULL, true, 6, 4, '', '2003-12-22', '2003-12-24', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (891, '2003-11-20', 'Jerry W.', 'Rohen', '2115  Onekama S.E.', 'Grand Rapids', 'Mi.', '49506', NULL, '616-245-8262', NULL, 'jerry.w.rohen@smithbarney.com', NULL, NULL, true, 9, 1, '', '2003-12-30', '2004-01-03', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (894, '2003-11-22', 'leslie', 'green', '1029 walloon court', 'lake orion', 'mi', '48360', NULL, '248-693-3250', NULL, 'onthebeachnow48360@yahoo.com', NULL, NULL, true, 8, 1, '', '2004-02-16', '2004-02-19', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (896, '2003-11-25', 'keith', '', '', '', '', '', NULL, '', NULL, 'ksyum@hotmail.com', NULL, NULL, true, 6, 5, 'We are 2. Just one person want to ski for 2 days (12/24 Wed & 12/25 Thur)', '2003-12-23', '2003-12-26', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (899, '2003-11-27', 'Ellen', 'Taylor', '523 Sunset', 'Ann Arbor', 'Mi', '48103', NULL, '(734) 665-6564', NULL, 'ebtaylor@umich.edu', NULL, NULL, true, 4, 0, '', '2003-12-21', '2003-12-22', '2 bedroom & loft', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (900, '2003-11-28', 'DIXIE', 'MCKEAN', '8958 SAWMILL COURT', 'INDIANAPOLIS', 'IN', '46236', NULL, '317-823-8894', NULL, 'DIXIEMCKEAN@AOL.COM', NULL, NULL, true, 6, 5, '', '2004-01-01', '2004-01-04', 'WE WOULD ALSO BE INTERESTED IN THE 2 BEDROOM PRICE. WE ARE 2 ADULTS AND 2 CHILDREN.', ':2:12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (901, '2003-11-28', 'Lindsay', 'DeMoss', '5025 Stonehenge', 'Rochester', 'MI', '48036', NULL, '(248)656-6640', NULL, 'LEDeMoss@aol.com', NULL, NULL, false, 8, 1, '', '2003-12-30', '2004-01-02', 'internet search', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (999, '2003-12-02', 'Keith', 'Branoff', '', '', '', '', NULL, '', NULL, 'DPBranoff@aol.com', NULL, NULL, false, 9, 4, '', '2003-12-31', '2004-01-02', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1000, '2003-12-03', 'Paula', 'Cadwell', '902 Oneida Woods Trail', 'Grand Ledge', 'MI', '48837', NULL, '517-627-5905', NULL, 'PJJLCAD@aol.com', NULL, NULL, true, 4, 4, '', '2004-01-09', '2004-01-11', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1001, '2003-12-03', 'Brittany', 'Waybright', '7680 w 800 s ', 'South Whitley', 'Indiana', '46787', NULL, '260 723 4383', NULL, 'blwaybright@hotmail.com', NULL, NULL, true, 6, 0, 'Pricing per person please.', '2004-01-16', '2004-01-18', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8101, '2009-06-03', '', '', '', '', '', '', NULL, '', NULL, 'awildman@xplornet.com', NULL, NULL, true, NULL, NULL, '', '2009-06-03', '2009-06-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7897, '2009-02-10', 'M. Annabelle', 'Alberts ', '', '', '', '', NULL, '', NULL, 'a113bell@aol.com ', NULL, NULL, true, NULL, NULL, '', '2009-02-10', '2009-02-10', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1004, '2003-12-04', 'Norb', 'Madison', '', '', '', '', NULL, '', NULL, 'ntmadison@anqey.com', NULL, NULL, true, 4, 2, 'I need accomodations for my wife and I and 3 children, a 11 year old boy, a 17 year old girl and an 18 year old boy.', '2004-01-01', '2004-01-04', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1005, '2003-12-04', 'Collin', 'Byrnes', '36000 24 mile road', 'New Baltimore', 'MI', '48047', NULL, '586-202-6977', NULL, 'cbyrnes02@hotmail.com', NULL, NULL, true, 6, 5, '', '2003-12-26', '2003-12-28', '', ':2:13:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1007, '2003-12-05', 'Dana', 'Chapman', '5 Cambridge Ct #6', 'Michigan City', 'Indiana', '46360', NULL, '(757) 753 6001', NULL, 'coasty7248@hotmail.com', NULL, NULL, false, 6, 5, '', '2003-12-29', '2003-12-30', '', ':13:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1013, '2003-12-06', 'Olga Chvykova', '', '1678  Murfin ave., #11', 'Ann Arbor', 'MI', '48105', NULL, '734-763-7064', NULL, 'chvykova@hotmail.com', NULL, NULL, true, 6, 5, '', '2004-01-02', '2004-01-04', '', ':2:3:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8190, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'g2gaylor@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8324, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'mail4gls@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8381, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'redwing19@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7807, '2009-02-04', 'Belinda', 'Friis', '', '', '', '', NULL, '', NULL, 'bafriis@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-02-04', '2009-02-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1015, '2003-12-07', 'Jeff', 'Keuneke', '216 W Rugg Street', 'Decatur', 'Indiana', '46733', NULL, '260-701-0846', NULL, 'jeff.keuneke@fleetwood.com', NULL, NULL, true, 9, 1, 'If there are none of the 2 bed/loft/2 bath I would be intrested in the size smaller', '2004-01-23', '2004-01-24', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1019, '2003-12-08', 'Raquel', 'Marquesi', '1868 Kirts Blvd., apt. 207', 'Troy', 'Mi', '48084', NULL, '248 813 2528', NULL, 'raquel_caselli@hotmail.com', NULL, NULL, false, 6, 5, '', '2003-12-24', '2004-02-01', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1021, '2003-12-08', 'brooke', 'milnes', '917 w lovell', 'kalamazoo', 'MI', '49007', NULL, '(248)3965231', NULL, 'trout3683@aol.com', NULL, NULL, true, 4, 2, '', '2003-12-30', '2004-01-01', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1022, '2003-12-09', 'Toby', 'Monforton', '19948 William Court West', 'Grosse Pointe Woods', 'MI', '48236', NULL, '313-640-3930', NULL, 'toby.monforton@danahertool.com', NULL, NULL, true, NULL, 4, '', NULL, NULL, 'Please call', ':2:12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7160, '2008-09-22', 'Yu-Hui ', 'Wang', '', '', '', '', NULL, '', NULL, 'a221149041@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1025, '2003-12-09', 'Janet', 'Ledford', '14914 Rotunda', 'Sterling Heights', 'MI', '48313', NULL, '5865667269', NULL, 'jledford@wideopenwest.com', NULL, NULL, true, 4, 1, '', '2004-02-15', '2004-02-18', 'please give me a price for 2bed/2bath and 2 bedroom/1 bath-Thanks', ':2:12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1026, '2003-12-10', 'Jeremy', 'Goldsworthy', '333 Fort Street', 'Port Huron', 'MI', '48060', NULL, '8104342331', NULL, 'jeremy@fkbpc.com', NULL, NULL, true, 7, 5, 'I am looking for rate and availablity for the night of the 6th with lift tickets for the 6th and 7th at Nubs Nob.', '2003-01-06', '2003-01-07', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7720, '2008-12-15', 'Kenneth', 'Johnson', '26057 Penn', 'Inkster', 'MI', '48141', NULL, '', NULL, 'Johnsonk359@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-12-15', '2008-12-15', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1030, '2003-12-11', 'Jean', 'Dylong', '', '', '', '', NULL, '', NULL, 'jdylong@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2003-12-11', '2003-12-11', '', ':2:12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1044, '2003-12-12', 'William', 'McIntosh', '', '', '', '', NULL, '', NULL, 'wmcintos@ford.com', NULL, NULL, false, 4, 4, '', '2003-12-26', '2003-12-28', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1046, '2003-12-12', 'john', 'fincher', '20610 83rd place', 'Bristol', 'WI', '53104', NULL, '7049052245', NULL, 'john.fincher@btol.com', NULL, NULL, false, 6, 5, 'Please advise rate and availability', '2003-12-27', '2003-12-30', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1051, '2003-12-14', 'David ', 'Walsh', '2940 Tamwood', 'Commerce Township', 'Michigan', '48382', NULL, '248-684-1557', NULL, 'walsh78@aol.com', NULL, NULL, true, 8, 4, 'We would like to overlook a wooded area, close to the clubhouse', '2004-02-17', '2004-02-20', 'We are former owners of one of the units', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1052, '2003-12-14', 'kathy', 'kelly', '2458 Barnsbury Rd.', 'East Lansing', 'MI', '48823', NULL, '517/339-0771', NULL, 'mkkirish@aol.com', NULL, NULL, true, 4, 1, '', '2003-12-28', '2003-12-30', '', ':2:12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1053, '2003-12-14', 'Paula Leach', 'Paula Leach', '2783 Hogan way', 'canton', 'michigan', '48188', NULL, '734 495 1625', NULL, 'paulamleach@hotmail.com', NULL, NULL, true, 6, 5, '', '2004-01-23', '2004-01-25', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1054, '2003-12-15', 'Michael', 'Hayden', '263 Cloverly', 'Grosse Pointe Farms', 'MI', '48236', NULL, '(313) 886-7221', NULL, 'northpt1@aol.com', NULL, NULL, true, 9, 2, '', '2003-12-30', '2004-01-02', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1057, '2003-12-17', 'Janine', 'Braum', '54363 Pocahontas Dr.', 'Shelby Twp.', 'MI', '48315', NULL, '586-786-0846', NULL, 'JBraum3@comcast.net', NULL, NULL, true, 6, 2, 'We have two adults and 3 children. What would the grand total be?', '2003-12-28', '2004-01-02', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1058, '2003-12-17', 'chris ', 'robinson', '', '', '', '', NULL, '', NULL, 'crob67@yahoo.com', NULL, NULL, true, 6, 1, '', '2004-02-20', '2004-02-23', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8921, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'acatallo@beaumonthospitals.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1068, '2003-12-21', 'wendy', 'wilson', '7400 windsor woods dr. Apt d-2', 'canton', 'michigan', '48187', NULL, '', NULL, 'wswilson40@aol.com', NULL, NULL, true, 6, 5, '', '2004-01-16', '2004-01-18', '', ':13:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1071, '2003-12-22', 'Scott', 'Lewless', '5136 Dundee', 'Saginaw', 'MI', '48603', NULL, '989 792-8904', NULL, 'lewless@sbcglobal.net', NULL, NULL, true, 6, 1, 'We would be interested in any 2-bedroom that is available if the ones with a loft are unavailable.  Also, what do you require for a deposit?', '2004-03-05', '2004-03-07', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1073, '2003-12-24', 'Dave', 'Rash', '3305 Bewell Ave. S.E.', 'Lowell', 'MI', '49331', NULL, '', NULL, 'steelheadr64@aol.com', NULL, NULL, true, 9, 4, '', '2003-12-29', '2003-12-31', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1074, '2003-12-25', 'yasunori', 'shino', '9658 ringle rd', 'findlay', 'oh', '45840', NULL, '419-422-1640', NULL, 'ykshino1@aol.com', NULL, NULL, true, 6, 2, '', '2003-12-28', '2003-12-30', 'i want with a jaguzzi room', ':2:12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1078, '2003-12-27', 'Mark', 'Guzzardo', '27826 Ursuline', 'Saint Clair Shores', 'MI ', '48081', NULL, '734-341-4717', NULL, 'guzza1ma@cmich.edu', NULL, NULL, true, 7, 1, '', '2003-12-30', '2004-03-01', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1080, '2003-12-28', 'Cindy', 'Hynan', '', '', '', '', NULL, '', NULL, 'chynan@misd.net', NULL, NULL, true, 9, 3, 'Looking for 2 rooms at the size indicated OR one of the large 3 bedroom units.  Thank you.  Is there a tobaggon run also?', '2004-02-13', '2004-02-15', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7898, '2009-02-10', 'Patrick', 'Walsh', '', '', '', '', NULL, '', NULL, 'p_walsh@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-02-10', '2009-02-10', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1084, '2003-12-29', 'april', 'reem', '', '', '', '', NULL, '', NULL, 'davidreem@aol.com', NULL, NULL, true, 9, 5, 'Would like to know the rates for these dates.', '2004-02-16', '2004-02-20', '', ':2:3:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1088, '2003-12-30', 'sue', 'haack', '1439 chanticlair circle', 'wixom', 'mi', '48393', NULL, '248-981-7236', NULL, 'suehaack@sbcglobal.net', NULL, NULL, true, 4, 4, '', '2004-02-16', '2004-02-18', '', ':2:12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8017, '2009-05-22', 'Stephen', 'Koinis', '', '', '', '', NULL, '', NULL, 'arsenalkicker@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-05-22', '2009-05-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1100, '2004-01-01', 'DIANE', 'SMITH', '', '', '', '', NULL, '2696714374', NULL, 'DMSEBI@AOL.COM', NULL, NULL, true, 0, 5, '', '2001-03-04', '2001-04-04', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1104, '2004-01-02', 'fred ', 'Minturn', '50 Renaud Rd, ', 'Grosse Pointe Shores', 'Mi', '48236', NULL, '3138856125', NULL, 'fredmsx@aol.com', NULL, NULL, true, 4, 1, '', '2004-02-14', '2004-02-17', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1108, '2004-01-04', 'Tony', 'Ross', '1975 Tiverton Rd.', 'Bloomfield Hills', 'MI', '48304', NULL, '248-593-0373', NULL, 'tross@supersteeltreating.com', NULL, NULL, true, 9, 5, '', '2004-02-13', '2004-02-18', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1111, '2004-01-05', 'Lorri', 'Pebbles', '62869 Hidden Pond Drive', 'Washington', 'MI', '48094', NULL, '', NULL, 'klpebbs@aol.com', NULL, NULL, true, 4, 4, '', '2004-02-15', '2004-02-17', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1116, '2004-01-06', 'James D', 'Velleman', '1911 Alhambra Dr.', 'Ann Arbor', 'MI', '48103', NULL, '734-662-7857', NULL, 'velleman@umich.edu', NULL, NULL, true, 6, 5, '', '2003-01-21', '2003-01-23', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7168, '2008-09-22', 'Bruce', 'Baringer', '', '', '', '', NULL, '', NULL, 'bbaringer@vesco-oil.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8102, '2009-06-03', '', '', '', '', '', '', NULL, '', NULL, 'barberkms@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-03', '2009-06-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8191, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'gafleming1@cox.net', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8925, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'aharder1791@wowway.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1119, '2004-01-06', 'Brian', 'Ferrilla', '', '', '', '', NULL, '', NULL, 'bferrilla@wideopenwest.com', NULL, NULL, true, 6, 4, '', '2004-02-16', '2004-02-19', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9290, '2009-11-23', 'Jenni', 'Whitney', '615 n Cass AVe', 'Vassar', 'MI ', '48768', NULL, '989-823-2709', NULL, 'jlfillhard@hotmail.com', NULL, NULL, false, NULL, NULL, '', NULL, NULL, ' The Vassar Athletic Association is hosting our annual Reverse Raffle on February 20, 2010. During this raffle we will also have a live auction. We are wondering if your resort would be willing to donate an overnight package to our organization.\r
+The Vassar Athletic Association is a group of dedicated parents, coaches, community members that raise funds to help provide equiptment, uniforms, etc to athletic programs at Vassar High School. We provide what is not in the school districts budget. Your help would benefit many athletes at VHS. Thank you. \r
+', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1129, '2004-01-11', 'Gary', 'Pitre', '3248 Turnberry Lane', 'Port Huron', 'MI', '48060', NULL, '810-987-6988', NULL, 'pitre@comcast.net', NULL, NULL, true, 6, 0, '', '2004-01-23', '2004-01-25', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1134, '2004-01-13', 'Laura', 'Baker', '5220 Belmonte Drive', 'Rochester Hills', 'Michigan', '48306', NULL, '248-891-2679', NULL, 'tomygrl564@aol.com', NULL, NULL, true, 9, 1, 'Any two bed room place would work. I need a request soon. Thank you. ', '2004-01-17', '2004-01-19', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1142, '2004-01-15', 'Paul', 'Twa', '16247 Pinewood', 'Spring Lake', 'MI', '49456', NULL, '616-842-2146', NULL, 'fivetwas@novagate.com', NULL, NULL, false, 6, 5, '', '2004-01-02', '2004-03-02', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1143, '2004-01-16', 'Angela', 'Quinn', '703 Oxford Rd', 'Ypsilanti', 'MI', '48197', NULL, '734-483-3488', NULL, 'patangquinn@comcast.net', NULL, NULL, true, 9, 5, '', '2004-01-22', '2004-01-25', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1147, '2004-01-16', 'Michael', 'McCord', '1591 Humphrey ave.', 'Birmingham', 'MI', '48009', NULL, '248-388-3132', NULL, 'mccordbmwm3@yahoo.com', NULL, NULL, true, 7, 2, '', '2004-01-30', '2004-01-02', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1148, '2004-01-17', 'jeffery', 'speweike', '4627 hannaford dr', 'toledo', 'ohio', '43623', NULL, '419-471-9907', NULL, 'speweike@msn.com', NULL, NULL, true, 9, 0, '', '2004-06-02', '2004-08-02', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1151, '2004-01-19', 'Brittany', 'Waybright', '6876 S Raber Rd.', 'Columbia City', 'Indiana', '46725', NULL, '260-396-2555', NULL, 'bwaybright@8020inc.com', NULL, NULL, true, 6, 0, 'What would the total cost be for these three nights?', '2004-02-19', '2004-02-22', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7899, '2009-02-10', 'John ', 'Donatelli ', '', '', '', '', NULL, '', NULL, 'jdonatelli8@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-02-10', '2009-02-10', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1161, '2004-01-20', 'Rick ', 'Willis', '29570 Armada Ridge', 'Richmond ', 'MI.', '48062', NULL, '', NULL, 'rickangelawillis@comcast.net', NULL, NULL, true, 5, 5, 'two night stay, either February 15 & 16 or 28 & 29.', '2004-02-15', '2004-02-16', '', ':13:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8103, '2009-06-03', '', '', '', '', '', '', NULL, '', NULL, 'barbjfletch@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-03', '2009-06-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1163, '2004-01-20', 'lynn', 'uveges', '34703 Huron River Dr.', 'New Boston', 'Michigan', '48164', NULL, '734-753-3105', NULL, 'lynn.uveges@oakwood.org', NULL, NULL, false, 6, 3, '', '2004-02-06', '2004-02-09', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1165, '2004-01-20', 'Laura', 'Michaud', '7201 Driftwood Drive South', 'Fenton', 'Michigan', '48430', NULL, '810-750-8193', NULL, 'meshow4@chartermi.net', NULL, NULL, false, 9, 5, '', '2004-02-13', '2004-02-17', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7808, '2009-02-04', 'Lyle', 'Brooks', '', '', '', '', NULL, '', NULL, 'bandman21@msn.com', NULL, NULL, true, NULL, NULL, '', '2009-02-04', '2009-02-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1171, '2004-01-21', 'jon', 'sutherland', '1962 W. Liberty #11', 'Ann Arbor', 'MI', '48103', NULL, '734-649-5282', NULL, 'jonsouthman@netzero.com', NULL, NULL, true, 3, 0, '', '2004-02-16', '2004-02-19', 'we have been staying with you over the past several years, right about this time of year', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1180, '2004-01-25', 'Bruce', 'Mattson', '302 Central Ave.', 'Wilmette', 'IL', '60091', NULL, '8478531953', NULL, 'ty678@attbi.com', NULL, NULL, false, 6, 2, '', '2004-02-12', '2004-02-16', '', ':2:12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1183, '2004-01-25', 'MaryJo', 'Taft', '6025 Cramlane Drive', 'Clarkston', 'MI', '48346', NULL, '248-620-6290', NULL, 'mtaft02@comcast.net', NULL, NULL, true, 8, 5, '', '2004-03-03', '2004-03-07', 'internet search', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1188, '2004-01-26', 'salvatore', 'ciaramitaro', '901 moorland', 'grosse pointe woods', 'mi', '48236', NULL, '313-640-8994', NULL, 'sciaramita@aol.com', NULL, NULL, true, 9, 1, '', '2004-08-01', '2004-08-08', '', ':12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1190, '2004-01-26', 'Janet', 'Skinner', '52850 Florence Drive', 'Shelby Township', 'MI', '48315', NULL, '586 254-2943', NULL, 'skinner@msu.edu', NULL, NULL, true, 9, 3, 'We have stayed before - but have new address.  Thanks for your response.', '2004-02-29', '2004-03-02', 'Would need 2 beds in 2nd bedroom or else we could go with "2+" or 2 bedroom loft if that would get us that ...it''s not that much more - what do you recommend?  It''s mom and dad and two adult children.', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8018, '2009-05-22', 'Izzy', 'DiMaggio', '', '', '', '', NULL, '', NULL, 'izzydimag@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-05-22', '2009-05-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1195, '2004-01-27', 'Rebecca', 'Robinson', '', '', '', '', NULL, '', NULL, 'ramr55@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-01-27', '2004-01-27', '', ':2:12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9319, '2010-01-25', 'Angie', 'Grabiec', '11739 M-68', 'Onaway', 'Mi', '49765', NULL, '989-733-2011', NULL, 'engineering@moraniron.com', NULL, NULL, false, 6, 5, 'Can we supply our own band. Please e-mail me menu and bar info. \r
+We would like the party catered and a bartender.', '2010-12-11', '2010-12-12', 'Christmas party for 86-10. 42-50 rooms.', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8192, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'gary.wichman@nationalcity.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1287, '2004-04-07', 'Cara ', 'Bishop', '1200 Spruce St.', 'Winnetka', 'IL', '60093', NULL, '(847) 441-6559', NULL, 'cbbishop@comcast.net', NULL, NULL, true, 6, 4, '', '2004-08-15', '2004-08-21', '', ':12:15:6:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1288, '2004-04-08', 'Nanci', 'Markowitz', '', '', '', '', NULL, '', NULL, 'nm3djs@aol.com', NULL, NULL, false, 6, 0, 'We are also interested in your homes for rent.', '2004-08-07', '2004-08-14', '', ':12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1290, '2004-04-11', 'Robin', 'Schmidt', '2804 Graham Road', 'Imlay City', 'MI', '48444', NULL, '810-724-6416', NULL, 'rlds36@msn.com', NULL, NULL, true, 6, 3, '', '2004-06-10', '2004-06-13', '', ':6:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1293, '2004-04-13', 'Lynn', 'Compton', '', '', '', '', NULL, '', NULL, 'lc@creditacceptance.com', NULL, NULL, true, 6, 5, 'I am planning a summer trip for my family.  This will be 2 adults and 2 children (ages 10 and 5).  Please let me know if you have a weekly rate and what it is.  Also, are you near any beaches?  Thank you.', '2004-06-20', '2004-06-27', '', ':12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1294, '2004-04-13', 'donna', 'booth', '', '', '', '', NULL, '2485886924', NULL, 'donnab_944@msn.com', NULL, NULL, true, 9, 4, '', NULL, NULL, '', ':12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1301, '2004-04-16', 'bob', 'krisniski', '3838 Christopher', 'Brighton', 'MI', '48114', NULL, '810-220-2105', NULL, 'bobkris@comcast.net', NULL, NULL, true, 9, 3, '', '2004-07-02', '2004-07-06', 'We would like a unit in section 12 or 13 on the diagram map. We have stayed in this area before and really enjoyed it.', ':12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1303, '2004-04-21', 'marc', 'hackman', '1944 dorchester', 'commerce twp', 'mi', '48390', NULL, '248-926-5621', NULL, 'hackman0521@yahoo.com', NULL, NULL, true, 6, 5, '', '2004-06-28', '2004-07-02', '', ':12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1305, '2004-04-22', 'Greg', 'Kernosek', '6520 Spring Meadows Lane', 'Plymouth', 'MI', '48170', NULL, '734 320 7619', NULL, 'gkernosek@envirosolutionsinc.net', NULL, NULL, true, 9, 5, '', '2004-06-18', '2004-06-20', '', ':14:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8325, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'marcia@lambton.on.ca', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8382, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'rfinch007@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9320, '2010-02-01', 'jeanine', 'lunghamer', '4849 east strong ct', 'orchard lake', 'mi', '48323', NULL, '248 343 4719', NULL, 'jeanine@lunghamer.com', NULL, NULL, true, 4, 0, '', '2010-02-19', '2010-02-22', 'We may be able to fit in a smaller unit.  Marian High School girls ski team would need lodging if the qualify for States.  We won''t know if they qualify until 2/11.  Please quote a price. Thank you.', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1314, '2004-04-28', 'Mark', 'Boothe', '4364 Longmeadow Drive', 'Gurnee', 'Illinois', '60031', NULL, '847-625-8295', NULL, 'mboothe@lakecountypress.com', NULL, NULL, true, 8, 1, 'Please let me know pricing on the 2 bedroom with loft and also on the 3 bedroom with loft', '2004-08-01', '2004-08-07', 'We are planning a trip with Rick Sabol and family who found out about your lodge. He thought you had openings the 1st week of August.  We would like our rooms to be close together if possible.  ', ':11:12:15:6:16:18:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1315, '2004-04-28', 'Dennis', 'Krawzak', '', '', '', '', NULL, '', NULL, 'denniskrawzak@sbcglobal.net', NULL, NULL, true, 9, 2, 'We were at your location about five years ago. Rented a condo for one week. Do any have waher and dryers and are all units air conditioned. Are there any water front units', '2004-07-31', '2004-08-07', '', ':12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1323, '2004-05-05', 'S', 'Crittendon', '', '', '', '', NULL, '', NULL, 'CRITTENDONS366@dpdhq.ci.detroit.mi.us', NULL, NULL, true, 9, 1, 'please give me a rate for using AAA. Are the prices per loft? Are there any package deals for a group of people or that include discounts for the loft and ski''s? ', '2004-11-12', '2004-11-14', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8104, '2009-06-03', '', '', '', '', '', '', NULL, '', NULL, 'benkay727@charter.net', NULL, NULL, true, NULL, NULL, '', '2009-06-03', '2009-06-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1312, '2004-04-28', 'Timothy', 'Dutcher', '1517 Alta Vista Drive', 'Owosso', 'Michigan', '48867', NULL, '989 277-0542', NULL, 'timdutcher@michonline.net', NULL, NULL, true, 9, 2, '', '2004-07-02', '2004-07-05', '', ':18:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9291, '2009-11-24', 'Susan', 'Bauer', '', '', '', '', NULL, '', NULL, 'suebauer@sympatico.ca', NULL, NULL, true, NULL, NULL, '', '2009-11-24', '2009-11-24', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1336, '2004-05-15', 'Cathy', 'Barry', '8077 Hillside Lakes Place', 'Brighton', 'MI', '48116', NULL, '810-231-0041', NULL, 'mcbarry@chartermi.net', NULL, NULL, true, 9, 1, 'we will need 3 condo''s', '2004-07-31', '2004-06-08', '', ':3:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1341, '2004-05-18', 'Bryan', 'Copple', '', '', '', '', NULL, '', NULL, 'bcopple@kumc.edu', NULL, NULL, true, 6, 5, '', '2004-07-13', '2004-07-19', '', ':13:4:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1342, '2004-05-18', 'Inyang', 'Telfair', '', '', '', '', NULL, '', NULL, 't_ekpe@yahoo.com', NULL, NULL, true, 0, 5, '', '2004-07-02', '2004-07-04', '', ':13:4:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1343, '2004-05-20', 'Dolores', 'Ribble', '', '', '', '', NULL, '', NULL, 'doloresr@bserv.com', NULL, NULL, true, 6, 5, 'can you give us the rates for the time requested and also the approximate distance to \r
+Birchwood Farm\r
+518 West Townline Road\r
+Harbor Springs, MI 49740\r
+With thanks', '2004-01-10', '2004-03-10', '', ':12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1346, '2004-05-24', 'Thomas ', 'Demetriou', '3360 Foss Drive', 'SAginaw', 'MI', '48603', NULL, '9897994433', NULL, 'karenkritz@hotmail.com', NULL, NULL, true, 9, 5, '', '2004-02-07', '2004-06-07', '', ':12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1348, '2004-05-26', 'Michael', 'Wolfe', '', '', '', '', NULL, '', NULL, 'mlwslw2@aol.com', NULL, NULL, true, 8, 5, '', '2004-09-06', '2004-11-06', '', ':18:10:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1349, '2004-05-27', 'Kristen', 'Nichols', '900 Washington Rd.', 'Grosse Pointe', 'MI', '48230', NULL, '313 417-8414', NULL, 'kristennichols@comcast.net', NULL, NULL, true, 3, 4, '', '2004-08-04', '2004-08-06', '', ':12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1350, '2004-06-01', 'Kim', 'Johnson-Crisanti', '5109 Springbrook Rd.', 'Jackson', 'MI', '49201', NULL, '', NULL, 'kim.johnson@wafoote.org', NULL, NULL, false, 6, 5, '', '2004-12-26', '2004-12-30', 'also rate for 2bedbroom, 1bath', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8193, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'garychris624@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1356, '2004-06-06', 'Charlotte', 'Lane', '162 Crestview Lane', 'Dyer', 'IN', '46311', NULL, '219-865-1962', NULL, 'ctlanefamily@yahoo.com', NULL, NULL, true, 6, 4, '', '2004-07-19', '2004-07-22', '', ':12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1357, '2004-06-08', 'Jane', 'Goldberg', '408 Woodbridge Drive', 'Grand Blanc', 'Michigan', '48439', NULL, '810-694-2091', NULL, 'jegoldberg@yahoo.com', NULL, NULL, true, 8, 0, '', '2004-07-16', '2004-07-19', '', ':12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1358, '2004-06-12', 'Joyce', 'Yarnell', '115 California Blvd.', 'Toledo', 'OH', '43612', NULL, '419-476-7497', NULL, 'Jtyarnell@aol.com', NULL, NULL, true, 4, 0, '1  Other options interested in:  2 bedroom/2 bath/loft or 2 bedroom/2 bath or 2 bedroom/2 bath + and 1 bedroom/1 bath\r
+2.  availablility & rates\r
+3.  Do you have any package deals for 3 or 5 nights?\r
+4.  We want non-smoking!\r
+\r
+We are looking forward to a prompt reply because this looks like a dream vacation for our family!', '2004-07-26', '2004-07-30', '', ':12:15:17:18:10:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1361, '2004-06-14', 'Elizabeth', 'Fraser', '113 Echo Spring Circle', 'Trafford', 'PA', '15085', NULL, '412-856-7728', NULL, 'Fraser@ppg.com', NULL, NULL, true, 4, 5, '', '2004-03-07', '2004-06-07', '', ':12:15:16:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1362, '2004-06-14', 'Mohammed', 'Qureshi', '', 'Farmington Hills', 'MI', '', NULL, '248.840.0184', NULL, 'ma_q@yahoo.com', NULL, NULL, true, 5, 1, 'Hello,\r
+\r
+I am intersted in finding out if you have availability for July 16 - 18th for a group of about 30 in / around the Petoskey / Traverse City area. \r
+\r
+If you could please get back to me with rates / availability info, I would appreciate it much!\r
+\r
+Thanx! MQ', '2004-07-16', '2004-07-18', '', ':15:6:18:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1363, '2004-06-14', 'Lesley', 'Maier', '658 W. Emerson', 'Seattle', 'WA', '98119', NULL, '206-963-8577', NULL, 'lesleym50@hotmail.com', NULL, NULL, true, 6, 5, '', '2004-07-29', '2004-07-31', '', ':4:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1364, '2004-06-16', 'Vickie', 'Kolpin', '34883 Knoll Circle', 'Waseca', 'MN', '56093', NULL, '507-835-7780', NULL, 'kolpin1@mchsi.com', NULL, NULL, true, 9, 1, '', '2004-07-27', '2004-07-30', '', ':12:16:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1369, '2004-06-17', 'Judy', 'Stemley', '4281 North Star Road.', 'New Weston', 'Ohio', '45348', NULL, '', NULL, 'njstem@bright.net', NULL, NULL, true, NULL, NULL, '', '2004-06-17', '2004-06-17', '', ':12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1404, '2004-06-20', 'P', 'McClellan', '', '', '', '', NULL, '', NULL, 'pmcclellan@ameritech.net', NULL, NULL, false, 6, 2, 'Do you allow pets at any of your locations?Specifically, two small cats.', NULL, NULL, '  ', ':13:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1405, '2004-06-21', 'dave', 'abate', '48597 tremont', 'MACOMB', 'mi', '48044', NULL, ' 586 598 4928', NULL, 'dsjem@comcast.net', NULL, NULL, true, 9, 4, '', '2004-07-02', '2004-07-04', '', ':12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1407, '2004-06-21', 'Alicia', 'Blaney', '527 Monroe St', 'Dolton', 'Il', '60419', NULL, '708-841-8171', NULL, 'hersheybsmooth@msn.com', NULL, NULL, true, 6, 5, 'comment: we would probably arrive after midnight Friday night and would be leaving early Monday morning between 2am and 4am.', '2004-07-02', '2004-07-05', '', ':13:15:6:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8326, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'margbrain@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8383, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'rflinn@korthaseflinn.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1415, '2004-06-28', 'Judith', 'Church', '2465 Pebble Ridge Ct.', 'Davison', 'MI', '48423', NULL, '810 658-2432', NULL, 'judithjlc@aol.com', NULL, NULL, true, 9, 5, '', '2004-07-05', '2004-07-10', '', ':18:17:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9321, '2010-02-03', 'David', 'Brendtke', '', '', '', '', NULL, '', NULL, 'dbrendtke@yahoo.com', NULL, NULL, true, 6, NULL, 'Did not get my confirmation in my email. Please confirm my email account.', NULL, NULL, '', ':Winter - Ski/Boarding:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7810, '2009-02-04', 'Kimberly', 'Simon', '', '', '', '', NULL, '', NULL, 'bckjsimon@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-02-04', '2009-02-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8739, '2009-10-13', 'Kris', 'Lomas', '', '', '', '', NULL, '', NULL, 'kmlomas@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-10-13', '2009-10-13', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1422, '2004-07-05', 'Steve ', 'Fraley', '1310 Upson Place', 'Kettering', 'Ohio', '45409', NULL, '937-296-9357', NULL, 'mfraley3@woh.rr.com', NULL, NULL, true, 8, 5, '', '2004-07-17', '2004-07-24', 'Dayton Daily News', ':12:15:16:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1437, '2004-07-08', 'Deana', 'Koritnik', '9811 Homestead Ridge Pkwy', 'Leo', 'Indiana', '46765', NULL, '260-627-0921', NULL, 'koritnid@ipfw.edu', NULL, NULL, true, 6, 3, '', '2004-08-08', '2004-08-10', '', ':12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1718, '2004-07-15', 'Mony', 'Newton', '752 Wilson st.', 'South Haven', 'MI', '49090', NULL, '269-637-4490', NULL, 'mamarnew@hotmail.com', NULL, NULL, false, 6, 5, 'We could come 7/26-7/28 also.  ', '2004-07-18', '2004-07-21', '', ':12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1721, '2004-07-16', 'Michael', 'Monahan', '1328 Berkshire', 'Grosse Pointe Park', 'MI ', '48230', NULL, '', NULL, 'jem1020@comcast.net', NULL, NULL, true, 9, 1, '', '2004-12-28', '2005-01-01', '', ':2:12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1724, '2004-07-18', 'denise', 'hall', '21430 parker', 'farmington', 'mi', '48336', NULL, '248 476 0938', NULL, 'sublimejen6@yahoo.com', NULL, NULL, true, 3, 4, '', '2004-08-10', '2004-08-15', '', ':12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1725, '2004-07-18', 'Brian ', 'Schindler', '25745 Cook Road', 'Olmsted Falls', 'OH', '44138', NULL, '440-235-3268', NULL, 'bpsgoal@sbcglobal.net', NULL, NULL, true, 8, 0, 'My family would need two of these units, preferably near to each other. Please let me know if you have units available on or about the dates above. Thank You !', '2005-07-31', '2005-08-06', '', ':12:3:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1726, '2004-07-19', 'David', 'Halloran', '3612 Robinhood', 'Midland', 'MI', '48642', NULL, '9896000664', NULL, 'oasis009@yahoo.com', NULL, NULL, true, 4, 5, '', '2004-07-25', '2004-07-26', '', ':13:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1728, '2004-07-22', 'Vicki', 'Gorton', '1558 Emerson Dr.', 'St. joseph', 'MI', '49085', NULL, '', NULL, 'gorton.family@sbcglobal.net', NULL, NULL, false, 6, 4, '', '2004-12-22', '2004-12-26', 'Also pricing on the 2 BR & Loft/ 2 bathrooms', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1733, '2004-07-26', 'Jamie', 'Guise', '4808 Oak Hollow Court', 'Dexter', 'MI', '48130', NULL, '7344267022', NULL, 'guise@chartermi.net', NULL, NULL, true, 9, 0, '', '2004-09-03', '2004-09-07', '', ':12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7901, '2009-02-10', 'Kuyng & Pyo', 'Hong', '', '', '', '', NULL, '', NULL, 'hongsook01@hotmail.com ', NULL, NULL, true, NULL, NULL, '', '2009-02-10', '2009-02-10', '', ':12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1799, '2004-09-01', 'Julie', 'Schafer', '8192 Hearthway Avenue', 'Jenison', 'MI', '49428', NULL, '6166670045', NULL, 'schafermom5@yahoo.com', NULL, NULL, true, 5, 5, 'Can you please advise as to what condos are available for the time selected, and provide any pictures if you hav e them.  Thank you.', '2004-09-29', '2004-10-03', '', ':13:4:17:18:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1889, '2004-09-27', 'Ryan', 'Pietras', '15736 Valerie Ct', 'Macomb', 'Mi', '48044', NULL, '', NULL, 'rpetey26@hotmail.com', NULL, NULL, true, 9, 0, '', NULL, NULL, 'Could you please send me an updated price and room information sheet so our group can decide on a week and book early so we can get the week we want! Thanks Ryan Pietras', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2041, '2004-10-16', 'Jeanne ', 'Stierwalt', '418 County Road 300N', 'Sadorus', 'IL', '61872', NULL, '', NULL, 'billsad@prairieinet.net', NULL, NULL, true, 6, 4, '', '2004-12-19', '2004-12-23', '', ':2:12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2043, '2004-10-17', 'Ben', 'Robinson', '76 Muskoka Road', 'Grosse Pointe Farms', 'MI', '48236', NULL, '313-333-1339', NULL, 'benyr@aol.com', NULL, NULL, true, 9, 4, 'Please send pricing and availability for 2br 1 bath and 2 br 2 bath, 4 nights departing 1/2/05', '2004-12-29', '2005-01-02', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2047, '2004-10-21', 'Ron', 'Menges', '2050 windsor pl', 'Findlay', 'oh', '45840', NULL, '', NULL, 'roarmenges@aol.com', NULL, NULL, true, 6, 0, '', NULL, NULL, 'could you please send info regarding 4 day golf packages.  Looking to set up a tripnest year.\r
+\r
+Thanks', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2500, '2004-11-08', 'george', 'donnelly', '28016 alger', 'madison heights', 'MI', '48071-4548', NULL, '248-542-8795', NULL, 'headgeo@yahoo.com', NULL, NULL, true, 9, 5, '', '2004-11-25', '2004-11-28', '', ':13:18:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2507, '2004-12-16', 'Debra', 'Katz', '5467 Ardon CT', 'West Bloomfield', 'MI', '48323', NULL, '248.682.0271', NULL, 'lonkatz@comcast.net', NULL, NULL, true, 9, 4, 'I am unable to open the reservations page to check availability.  Thanks', '2004-12-29', '2005-01-01', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2508, '2004-12-17', 'Thomas', 'Kilgore', '541 S. Union', 'Parma', 'MI', '49269', NULL, '', NULL, 'tkilgore@hillsdaleschools.org', NULL, NULL, true, 8, 5, '', '2005-02-19', '2005-02-20', 'King with two-person jacuzzi', ':11:13:10:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2510, '2004-12-19', 'jeffrey', 'rogowski', '4457 helmond ct', 'TOLEDO', 'OHIO', '42611', NULL, '419-727-4480', NULL, 'jrogo99@toast.net', NULL, NULL, true, 9, NULL, '', '2004-12-29', '2004-12-30', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2511, '2004-12-19', 'Natalie', 'Escandon', 'P.O. Box 57', 'Richland', 'MI', '49083', NULL, '(269)629-9014', NULL, 'Natalando@aol.com', NULL, NULL, false, 9, 4, '', '2004-12-27', '2004-12-30', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2514, '2004-12-20', 'elizabeth', 'vandenbussche', '356 mill pond lane', 'milford', 'mi', '48381', NULL, '2486858022', NULL, 'lvandenbussche@comcast.net', NULL, NULL, true, 4, 0, 'we''d like a unit that we can WALK to the lift...do you have any? Thanks', '2004-02-18', '2004-02-21', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2518, '2004-12-21', 'Traci ', 'Morrill', '4967 Lore Drive', 'Waterford', 'MI', '48329', NULL, '(248) 623-8972', NULL, 'morrillhouse@aol.com', NULL, NULL, true, 9, 2, '', '2004-12-26', '2004-12-28', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2520, '2004-12-21', 'Kim', 'Frisinger', '15244 Forest Park', 'Grand Haven', 'MI', '49417', NULL, '616-842-2025', NULL, 'jkfri15244@chartermi.net', NULL, NULL, true, 9, 5, '', '2005-01-28', '2025-01-30', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2523, '2004-12-22', 'Jason', 'Hall', '2346 Timberlee Dr.', 'Holland', 'MI', '49424', NULL, '616-836-1802', NULL, 'jhall@lamarconstruction.com', NULL, NULL, false, 9, 0, 'Is the hot tub fixed?', '2005-02-17', '2005-02-20', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2711, '2004-12-31', 'Scott', 'Kosachuk', '', '', '', '', NULL, '', NULL, 'kosachuk6@ameritech.net', NULL, NULL, true, 8, 4, '', '2005-02-18', '2005-02-20', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2715, '2005-01-03', 'steven', 'moerner', '', '', '', '', NULL, '', NULL, 'steven.moerner@pioneer-usa.com', NULL, NULL, true, 9, 3, '', '2005-02-11', '2005-02-15', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2717, '2005-01-03', 'Tom', 'Siwajek', '30612 Dowdy Lane', 'Chesterfield Twp.', 'Michigan', '48051', NULL, '586-749-7737', NULL, 'thomas.m.siwajek@jci.com', NULL, NULL, true, 9, 0, '', '2005-01-27', '2005-01-30', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8327, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'maverickandgoose@verizon.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8749, '2009-10-16', 'Frank', 'Sebest', '', '', '', '', NULL, '', NULL, 'fsebest@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-10-16', '2009-10-16', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2720, '2005-01-04', 'MARK', 'ZUCCARO', '', '', '', '', NULL, '', NULL, 'jamzuc@comcast.net', NULL, NULL, true, 7, 0, '', '2005-01-14', '2005-01-17', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8555, '2009-07-17', 'Dan', 'Mitchell', '', '', '', '', NULL, '', NULL, 'danmitchell23@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2785, '2005-03-30', 'Matt', 'Metzger', '350 E. SR 14', 'Silver Lake', 'IN', '46982', NULL, '260-352-2689', NULL, 'matt@metzgertrucking.com', NULL, NULL, true, 9, 5, '<p>We are traveling to Harbor Springs on business and are looking for your rates.</p>', '2005-07-04', '2005-09-09', '', ':10:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2729, '2005-01-06', 'Judith', 'McLaughlin', '', '', '', '', NULL, '', NULL, 'ejmac59@comcast.net', NULL, NULL, false, 6, 5, 'Do you offer AAA or AARP discounts?', '2005-01-14', '2006-01-16', '', ':10:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2730, '2005-01-06', 'Rachel', 'Thomas', '21101 Collingham', 'Farmington', 'MI', '48336', NULL, '248-542-5000 Wk', NULL, 'racheltvl@yahoo.com', NULL, NULL, false, 5, 0, '', '2005-01-06', NULL, '', ':13:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2731, '2005-01-08', 'Suzie', 'Kramer', '255 First st', 'Olivet', 'MI', '49076', NULL, '269-749-9953', NULL, 'kramers@olivetschools.org', NULL, NULL, true, 9, 0, '', '2005-02-05', '2005-02-07', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2732, '2005-01-09', 'Ben', 'Chen', '3981 Alemany Blvd. #302', 'San Francisco', 'CA', '94132', NULL, '661-860-4264', NULL, 'ben0714@hotmail.com', NULL, NULL, true, 0, 5, '', '2005-01-15', '2005-01-19', '', ':2:12:3:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7722, '2008-12-15', 'Melvin', 'Chuney', '16845 Lawton', 'Detroit', 'MI', '48221', NULL, '', NULL, 'MRCJM31@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-12-15', '2008-12-15', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9322, '2010-02-05', 'Anne ', 'McArdle ', '', '', '', '', NULL, '', NULL, 'amcardle@harveykruse.com', NULL, NULL, true, 6, 0, 'Please advise if this weekend in March is available.  Thank-you.  ', '2010-03-05', '2010-03-07', '', ':Winter - Ski/Boarding:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2736, '2005-01-12', 'Kelly', 'Zelenak', '14579 Huntington Drive', 'Plymouth', 'MI', '48170', NULL, '734-420-8043', NULL, 'zelenak4@netzero.net', NULL, NULL, true, 9, 1, '', '2005-01-21', '2005-01-24', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2737, '2005-01-13', 'Kevin', 'Long', '1723 Ramsey Lane', 'Plainfield', 'IN', '46168', NULL, '317-839-6767', NULL, 'klong2@indy.rr.com', NULL, NULL, false, 9, 1, '', '2005-02-18', '2005-02-20', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2735, '2005-01-11', 'Steve', 'Brovont', '3940 S rosebud Ct', 'Kentwood', 'Michigan', '49512', NULL, '6168229910', NULL, 'sbrovont@hotmail.com', NULL, NULL, true, 9, 5, '', '2005-03-03', '2005-03-07', '', ':2:4:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2740, '2005-01-15', 'kath', 'wag', '21049', 'st. Clair Shores', 'mi ', '48082', NULL, '586-296-6339', NULL, 'talk2kwa@comcast.net', NULL, NULL, false, 4, 5, '', '2005-02-11', '2005-02-13', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2743, '2005-01-17', 'Theresa', 'Lindecker', '16230 Harvest Spring', 'Macomb', 'MI', '48042', NULL, '5867819638', NULL, 'mtsklindy@yahoo.com', NULL, NULL, true, 9, 0, '', '2005-02-17', '2005-02-19', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2747, '2005-01-19', 'Anna ', 'Rea', '1266 N. Glenhurst Dr.', 'Birmingham', 'Mi', '48009', NULL, '248-646-1619', NULL, 'anna.rea@tfienterprises.com', NULL, NULL, true, 6, 4, 'We have twin 10 year olds and a 2 year old.', '2005-02-15', '2005-02-19', '', ':2:12:19:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7811, '2009-02-04', 'Ben', 'Dankert', '', '', '', '', NULL, '', NULL, 'ben_dankert@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-02-04', '2009-02-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2752, '2005-01-22', 'Jean', 'Atwood', '2324 Bexley Park Road', 'Bexley ', 'Ohio', '43209', NULL, '614-329-9589', NULL, 'jmatwood11@aol.com', NULL, NULL, true, 6, 1, '', '2005-02-11', '2005-02-13', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2754, '2005-01-27', 'joelle', 'gallagher', '1201N.oxford', 'grosse pointe', 'mi', '48236', NULL, '3138820050', NULL, 'gallagher2004b@netzero.net', NULL, NULL, true, 9, 5, '', '2005-02-13', '2005-02-15', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2756, '2005-01-27', 'CAROL', 'HOOD', '', '', '', '', NULL, '', NULL, 'hugmom@comcast.net', NULL, NULL, true, 9, 4, '', '2005-02-13', '2005-02-16', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2759, '2005-01-30', 'becky', 'meader', '34414 ann arbor tr', 'livonia', 'mi', '48150', NULL, '313-680-9035', NULL, 'rprovine@hotmail.com', NULL, NULL, true, 7, 5, '', '2005-02-04', '2005-02-06', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2761, '2005-01-31', 'Ron', 'Shepard', '54358 Ashley Lauren', 'Macomb', 'Mi', '48042', NULL, '248-866-1929', NULL, 'shep-4@comcast.net', NULL, NULL, true, 0, 3, '', '2005-02-17', '2005-02-20', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2762, '2005-02-03', 'Ben', 'Robinson', '', '', '', '', NULL, '', NULL, 'brobi@lssm.org', NULL, NULL, false, 9, 4, '', '2005-02-13', '2005-02-18', 'Could also do 1 br 1 bath unit.', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2763, '2005-02-03', 'Deanne', 'Crowley', '17 Rivertop', 'Lowell', 'MI', '49331', NULL, '616-897-2893', NULL, 'dcrowley@lowellschools.com', NULL, NULL, true, 7, 1, '', '2005-02-18', '2005-02-20', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2764, '2005-02-03', 'tom', 'drinkwater', '15771 Cavanaugh lake Road', 'Chelsea', 'Mi', '48118', NULL, '734-433-0870', NULL, 'kdrinkwater3@yahoo.com', NULL, NULL, true, 9, 3, 'Could we have one room with twin beds?', '2005-02-18', '2005-02-20', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2765, '2005-02-03', 'Michael', 'Kane', '6421 Ridgepond Place\r
+', 'East Lansing', 'MI', '48823', NULL, '517 339-5780', NULL, 'mkane13@aol.com', NULL, NULL, true, 9, 3, '', '2005-02-18', '2005-02-20', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2775, '2005-02-19', 'David', 'Marshall', '765 Bedford', 'Grosse Pointe Park', 'MI', '48230', NULL, '', NULL, 'marshalljd@comcast.net', NULL, NULL, true, 6, 1, '', NULL, NULL, '', ':19:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2786, '2005-04-06', 'Tim', 'Eckerle', '', '', '', '', NULL, '', NULL, 'teckerle@prodigy.net', NULL, NULL, true, 6, NULL, 'I have yet to receive my confirmation for my June 12 reservations.  Is there a problem?', NULL, NULL, '', ':13:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8588, '2009-07-17', 'Ed', 'Wilson', '', '', '', '', NULL, '', NULL, 'flogers2@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2792, '2005-05-23', 'Scot', 'Ellsworth', '11910 Schavey Rd', 'DeWitt', 'MI', '48820', NULL, '(517) 214-0151', NULL, 'scotemi@comcast.net', NULL, NULL, true, 0, 1, 'We have stayed there in the past and would like to know about a 2 or 3 bedroom for the soccer weekend.\r
+I am also interested in potential investment/vacation purchase.\r
+Thanks, Scot', '2005-06-17', '2005-06-19', '', ':14:19:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3581, '2005-10-16', 'Jane', 'Thayer', '', '', '', '', NULL, '', NULL, 'jmthayer@comcast.net', NULL, NULL, true, 9, 1, '', '2005-11-18', '2006-01-29', 'we are interested in renting for about 2 1/2 months.  Can you give us an idea of rates?\r
+Thanks!', ':2:12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3857, '2005-11-26', 'tom', 'williams', '14002 Old Mill Circle', 'Carmel', 'IN', '46032', NULL, '3174287283', NULL, 'tawilliams@adesa.com', NULL, NULL, true, 4, 1, '', '2005-12-27', '2006-01-01', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7902, '2009-02-10', 'Joseph', 'Salisz', '', '', '', '', NULL, '', NULL, 'jsmebk@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-02-10', '2009-02-10', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7401, '2008-10-27', 'Woodrow', 'LaCombe', '', '', '', '', NULL, '', NULL, 'wwlacombe@wideopenwest.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8607, '2009-07-17', 'Charlie', 'Zebell', '', '', '', '', NULL, '', NULL, 'zebell@umich.edu', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3858, '2005-12-04', 'Tammy', 'Oser', '1505 Iron Liege Rd.', 'Indianapolis', 'IN', '46217', NULL, '317-882-9540', NULL, 'tsoser2@aol.com', NULL, NULL, true, 6, 4, '', '2005-12-26', '2005-12-29', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3859, '2005-12-04', 'Tim', 'Noble', '5874 Bishop', 'LaSalle', 'ON', 'N9H 2K5', NULL, '313 506 4095 (cell)', NULL, 'tinoble@alumni.uwaterloo.ca', NULL, NULL, true, 9, 5, 'I would also like to know if you have a 3br available that could sleep 4 adults and 4 kids', '2005-11-29', '2006-01-01', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3860, '2005-12-05', 'kenneth', 'flaska', '', '', '', '', NULL, '', NULL, 'kflaska@dmms.com', NULL, NULL, true, 9, NULL, '', '2005-12-28', '2006-01-01', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9292, '2009-11-24', 'Eugene Stickland', 'Eugene Stickland', '224 Lawrence Road', 'New York', 'NY', '11111', NULL, '000-000-0000', NULL, 'Eugenestrickland89@gmail.com', NULL, NULL, true, NULL, NULL, 'Internet Marketing Services\r
+\r
+We would like to get your website on first page of Google.\r
+\r
+All of our processes use the most ethical "white hat" Search Engine Optimization techniques that Will not get your website banned or penalized.\r
+Please reply and I would be happy to send you a proposal.\r
+In order for us to respond to your request for information, please include your company’s website address (mandatory) and or phone number.\r
+', NULL, NULL, 'Internet Marketing Services\r
+\r
+We would like to get your website on first page of Google.\r
+\r
+All of our processes use the most ethical "white hat" Search Engine Optimization techniques that Will not get your website banned or penalized.\r
+Please reply and I would be happy to send you a proposal.\r
+In order for us to respond to your request for information, please include your company’s website address (mandatory) and or phone number.\r
+', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3865, '2005-12-18', 'Michael ', 'Zimmerman', '1208 Willard St', 'Ann Arbor', 'Michigan', '48104', NULL, '516-652-4682', NULL, 'mazdogg@umich.edu', NULL, NULL, false, 9, 0, '', '2005-01-19', '2005-01-22', 'also would like info on 2 bedroom', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9323, '2010-02-12', 'John', 'Brussee', '3633 OakHarbor', 'Kalamazoo', 'Michigan', '49009', NULL, '269760-7481', NULL, 'jbrussee@superior-colour.com', NULL, NULL, true, 9, 0, '', '2010-02-21', '2010-02-21', 'We have 6-8 guys staying only one night.  We are skiing at Nubs.  Please let me know availability and pricing.', ':Winter - Ski/Boarding:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3874, '2006-01-12', 'Becky ', 'Baines', '6010 Myers Lake Road', 'Rockford', 'MI', '49341', NULL, '616-874-4036', NULL, 'rbaines@mpcu.org', NULL, NULL, true, 9, 4, '', '2005-02-24', '2005-02-27', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3876, '2006-01-19', 'Tom ', 'Koperski', '2550 Oakwood se', 'East Grand Rapids', 'mi', '49506', NULL, '616-862-18707', NULL, 'tkoperski@appliedimaging.com', NULL, NULL, true, 7, 0, 'I am the parent for our EGR HS''s ski team.  I am looking for options for our team if we make the state finals. 14 to 30 people not sure yet.  Please give me different options-rooms, beds, food available  thank you', '2006-02-25', '2006-02-25', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3877, '2006-01-31', 'Courtney ', 'Wheeler', 'PO Box 7884', 'Louisville', 'KY', '40257', NULL, '', NULL, 'courtdog_10@hotmail.com', NULL, NULL, true, 7, 5, '', '2006-03-24', '2006-03-26', 'We may want to leave on Monday  March 27, 2006 instead of March 26, 2006', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3878, '2006-02-07', 'Kevin', 'Carr', '2825 Bamlet Rd', 'Royal Oak', 'MI', '48073', NULL, '248-890-9936', NULL, 'kcarr143223@comcast.net', NULL, NULL, true, 9, 5, '', '2006-02-23', '2006-02-25', '', ':2:12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3879, '2006-02-15', 'robert', 'ross', '30514 knighton dr', 'farmington hills', 'mi', '48331', NULL, '2488192788', NULL, 'wrrechmd@pol.net', NULL, NULL, true, 8, 5, 'what do you have available for this weekend? 2/17-2/20', '2006-02-17', '2006-02-20', 'michigan.gov', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3880, '2006-02-15', 'Jerry', 'Dennis', '206 Mill Race Dr', 'Winchester', 'Va', '22602', NULL, '540-323-8409', NULL, 'jerryd540@aol.com', NULL, NULL, true, 4, 1, '', '2006-07-28', '2006-08-03', '', ':12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3882, '2006-03-02', 'Stefan', 'Geyer', '1695 Winterstone Court', 'Dayton', 'OH', '45458', NULL, '937-885-0860', NULL, 'sfgeyer@woh.rr.com', NULL, NULL, true, 7, 2, '', '2006-03-31', '2006-04-04', '', ':2:12:18:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3886, '2006-03-22', 'John', 'Jaboro', '48129 Beacon Square', 'Macomb', 'MI', '48044', NULL, '586-228-3243', NULL, 'majaboro@comcast.net', NULL, NULL, true, 4, 4, '', '2006-07-17', '2006-07-21', '', ':12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3887, '2006-03-27', 'Julie', 'Kaempfer', '45201 Jacob Drive', 'Novi', 'MI', '48375', NULL, '248-305-8408', NULL, 'pjkaempfer@aol.com', NULL, NULL, true, 9, 1, '', NULL, NULL, 'Interested in receiving information on units that are for sale.  Thanks.', ':19:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3888, '2006-03-29', 'Bob ', 'Joyce', '4388 Thunder bay', 'Clinton Township', 'Michigan', '48038', NULL, '586-286-5366', NULL, 'bjoyce@immlutheran.org', NULL, NULL, true, 9, NULL, '', NULL, NULL, 'interested in purchase of Condo', ':19:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4228, '2006-08-03', 'Kristin', 'D''Angelo', '32744 Greenwood Drive', 'Chesterfield', 'MI', '48047', NULL, '', NULL, 'dangelok@gdls.com', NULL, NULL, true, 9, NULL, 'I would like to get prices for a group for the following accomodations.\r
+We are also interested in the Superbowl package.\r
+1- 3 bedroom loft\r
+5- 1 bedroom condos', '2006-02-02', '2006-02-04', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4229, '2006-08-03', 'barb', 'potter', '', '', '', '', NULL, '', NULL, 'bbpotter@wowway.com', NULL, NULL, true, 9, NULL, 'I want you to know that the condo we rented a few weeks ago was definitely not up to the standards we expect from Trout Creek.  Several fairly major problems existed there.  We were in unit 22.  Would you please contact me about repairs that need to be done to that unit.  It seems unconscionable that you rent a unit for $250.  a night without checking to see that it is really ready for occupancy.  It would seem that, after 10 or more years of renting from you, that we would be afforded some type of remuneration towards next years'' rental, when several items needed to be fixed.  I would hope that you would see to the repair to the unit before others have to deal with these difficulties.  ', NULL, NULL, '', ':12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4232, '2006-08-14', 'William', 'Clifford', '606 St. Annes Court', 'Bowling Green', 'OH', '43402', NULL, '', NULL, 'wclifford@woh.rr.com', NULL, NULL, false, 4, NULL, 'Could you please forward a list of condo''s for sale? We would be interested in either a 2 or 3 bedroom unit. Thank you.', NULL, NULL, '', ':19:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4236, '2006-09-06', 'Adam ', 'Ragnoli', '5883 Ridgewood Lane ', 'White Lake ', 'MI', '48383', NULL, '248-685-7371', NULL, 'Ragz2Richez132@aol.com', NULL, NULL, false, 8, NULL, 'Do you have tennis courts one your property', NULL, NULL, '', ':16:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4238, '2006-09-13', 'Read', 'Ross', '1118 Alexandria Drive', 'Lansing', 'Michigan', '48917', NULL, '517-321-2335', NULL, 'readcr@comcast.net', NULL, NULL, true, 4, 5, 'Can''t get into the info on availability on web site', '2006-03-10', '2006-06-10', '', ':17:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4241, '2006-09-18', 'Barbara', 'Godzik', '', '', '', '', NULL, '', NULL, 'bagodzik@earthlink.net', NULL, NULL, true, 9, NULL, '', '2006-09-18', '2006-09-18', '', ':12:3:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4275, '2006-09-22', 'Sean', 'Donnelly', '', '', '', '', NULL, '', NULL, 'seantdonnelly@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-09-22', '2006-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4248, '2006-09-18', 'Roderick', 'Coxon', '', '', '', '', NULL, '', NULL, 'coxon5@msn.com', NULL, NULL, true, NULL, NULL, '', '2006-09-18', '2006-09-18', '', ':12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5621, '2007-07-02', 'Mark ', 'Banbury', '710 Plymouth Ave SE', 'East Grand Rapids ', 'MI', '49506', NULL, '6164582407', NULL, 'markbanbury@hotmail.com', NULL, NULL, true, 9, 2, '<p>Are there any dining facilities on site ? Food /tavern</p>', '2007-08-06', '2007-08-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4250, '2006-09-18', 'Thomas', 'Contrucci', '', '', '', '', NULL, '', NULL, 'tcontrucci@wowway.com', NULL, NULL, true, NULL, NULL, '', '2006-09-18', '2006-09-18', '', ':3:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8106, '2009-06-03', '', '', '', '', '', '', NULL, '', NULL, 'bhenning@pcs.k12.mi.us', NULL, NULL, true, NULL, NULL, '', '2009-06-03', '2009-06-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4255, '2006-09-20', 'K', 'Smith', '', '', '', '', NULL, '', NULL, 'ksmith2@kraft.com', NULL, NULL, true, NULL, NULL, '', '2006-09-20', '2006-09-20', '', ':12:14:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7723, '2008-12-15', 'Charlene', 'Early-Powell', '4281 Maryland', 'Detroit', 'MI', '48224', NULL, '', NULL, 'earlypowell@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-12-15', '2008-12-15', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4265, '2006-09-22', 'J', 'Godlewski', '', '', '', '', NULL, '', NULL, 'oneofakind@wowway.com', NULL, NULL, true, NULL, NULL, '', '2006-09-22', '2006-09-22', '', ':12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8195, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'gcsgrazul@chartermi.net', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7903, '2009-02-11', 'Ian ', 'Lindsey', '', '', '', '', NULL, '', NULL, 'rlindsey1@cogeco.ca ', NULL, NULL, true, NULL, NULL, '', '2009-02-11', '2009-02-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4271, '2006-09-22', 'Greg and Denise', 'Coplai', '', '', '', '', NULL, '', NULL, 'gregdenisecoplai@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-09-08', '2006-09-08', '', ':14:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4272, '2006-09-22', 'Deb', 'Bloomgren', '', '', '', '', NULL, '', NULL, 'd_bloomgren@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-09-22', '2006-09-22', '', ':12:14:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4273, '2006-09-22', 'Susan', 'Finniss-Schonlaw', '', '', '', '', NULL, '', NULL, 'sfinniss@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-09-22', '2006-09-22', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1461, '2004-07-09', 'Eve', 'Bazyleqicz', '', 'Petaluma', 'CA', '94952', NULL, '707-762-8206', NULL, 'eve.bazy@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2004-07-09', '2004-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4276, '2006-09-22', 'Geetha', 'Nair', '', '', '', '', NULL, '', NULL, 'villi@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-09-22', '2006-09-22', '', ':3:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4606, '2006-10-02', 'Kristen', 'Machiniak', '', '', '', '', NULL, '', NULL, 'kmach@wayne.edu', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4607, '2006-10-02', 'Kim', 'McPhail', '', '', '', '', NULL, '', NULL, 'kmcphail@xcelco.on.ca', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4608, '2006-10-02', 'Kirk', 'Miller', '', '', '', '', NULL, '', NULL, 'kmiller997@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4610, '2006-10-02', 'Larry', 'Koziana', '', '', '', '', NULL, '', NULL, 'kozi1@mnsi.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4611, '2006-10-02', 'David', 'Petoskey', '', '', '', '', NULL, '', NULL, 'kpetoskey111@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4612, '2006-10-02', 'Owen', 'Maher', '', '', '', '', NULL, '', NULL, 'kpmaher11@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8328, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'mavisdc@ameritech.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4615, '2006-10-02', 'Karen', 'Recknagel', '', '', '', '', NULL, '', NULL, 'krecknagel@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4618, '2006-10-02', 'Kathy', 'Shannon', '', '', '', '', NULL, '', NULL, 'kshannon@ameritech.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4620, '2006-10-02', 'Kathleen', 'Zimmerman', '', '', '', '', NULL, '', NULL, 'ksurgical@ameritech.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4269, '2006-09-22', 'Craig', 'Lennon', '', '', '', '', NULL, '', NULL, 'ncn46@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-08-22', '2006-08-22', '', ':12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4623, '2006-10-02', 'Kimberly', 'Vanderwiele', '', '', '', '', NULL, '', NULL, 'kvdw@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4624, '2006-10-02', 'Taikho', 'Cho', '', '', '', '', NULL, '', NULL, 'kyesungind@yahoo.co.kr', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8384, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'rgmeisel@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4627, '2006-10-02', 'Laura', 'Holmes', '', '', '', '', NULL, '', NULL, 'laura@finelinecreative.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4628, '2006-10-02', 'Lawrance', 'Wilhelm', '', '', '', '', NULL, '', NULL, 'lawrencewilhelm@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8429, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'smebius@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4630, '2006-10-02', 'Amanda', 'Williams', '', '', '', '', NULL, '', NULL, 'lcsanibel@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4631, '2006-10-02', 'Leah', 'Winiesdorffer', '', '', '', '', NULL, '', NULL, 'lee_winie@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4645, '2006-10-02', 'Lucy', 'Thompson', '', '', '', '', NULL, '', NULL, 'lthomson@columbus.rr.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4633, '2006-10-02', 'Linda', 'Gipprich', '', '', '', '', NULL, '', NULL, 'lgipp@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4634, '2006-10-02', 'Sandy', 'Lidiard', '', '', '', '', NULL, '', NULL, 'lidiardn@netvision.net.il', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4635, '2006-10-02', 'Elizabeth', 'Teraikian', '', '', '', '', NULL, '', NULL, 'ljbetty@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4639, '2006-10-02', 'Mark', 'Kent', '', '', '', '', NULL, '', NULL, 'lmr@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4643, '2006-10-02', 'Brian', 'Petterle', '', '', '', '', NULL, '', NULL, 'Lpetterle@boothamerican.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4644, '2006-10-02', 'Lisa', 'Gooel', '', '', '', '', NULL, '', NULL, 'lsg823@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4646, '2006-10-02', 'Sandy', 'Wallin', '', '', '', '', NULL, '', NULL, 'ltwallin@charter.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4648, '2006-10-02', 'Henry', 'Lumbard', '', '', '', '', NULL, '', NULL, 'lumbardh@msu.edu', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8468, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'tlanchor@msn.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4651, '2006-10-02', 'Lorraine', 'Yalman', '', '', '', '', NULL, '', NULL, 'lyalman@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4653, '2006-10-02', 'Robert', 'Smith', '', '', '', '', NULL, '', NULL, 'maassamos@msn.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8502, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'wsc1119@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4655, '2006-10-02', 'Elaine', 'Mahrle', '', '', '', '', NULL, '', NULL, 'mahrle.e@netzero.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4656, '2006-10-02', 'Michael', 'Mcllroy', '', '', '', '', NULL, '', NULL, 'mamcilroymd@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4657, '2006-10-02', 'David', 'Klamerus', '', '', '', '', NULL, '', NULL, 'mandi_klamerus@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4658, '2006-10-02', 'Jason', 'Ohrt', '', '', '', '', NULL, '', NULL, 'mandyohrt@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4659, '2006-10-02', 'Susan', 'Carbary', '', '', '', '', NULL, '', NULL, 'mapacarbs@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4660, '2006-10-02', 'Terrance', 'Cieplucha', '', '', '', '', NULL, '', NULL, 'maple1832@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4661, '2006-10-02', 'Mara', 'Bauman', '', '', '', '', NULL, '', NULL, 'mara@cpw.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4662, '2006-10-02', 'Marie', 'Watson', '', '', '', '', NULL, '', NULL, 'marie.e.watson@gm.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4664, '2006-10-02', 'Mel & Margey', 'Siegel', '', '', '', '', NULL, '', NULL, 'marjoriesiegel@gmail.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4665, '2006-10-02', 'Shelly & Mark', 'Coleman', '', '', '', '', NULL, '', NULL, 'mark.shelly.coleman@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8107, '2009-06-03', '', '', '', '', '', '', NULL, '', NULL, 'biker.julia@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-03', '2009-06-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4667, '2006-10-02', 'Kate', 'Veinbergs', '', '', '', '', NULL, '', NULL, 'marlail@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8196, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'genemodrycki67@att.net', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4669, '2006-10-02', 'Mary', 'Mora', '', '', '', '', NULL, '', NULL, 'maryfmora@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4671, '2006-10-02', 'John', 'Hamilton', '', '', '', '', NULL, '', NULL, 'marymoir@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4672, '2006-10-02', 'Mark', 'Bowman', '', '', '', '', NULL, '', NULL, 'mbowman4@insight.rr.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4674, '2006-10-02', 'Margaret', 'Buck', '', '', '', '', NULL, '', NULL, 'mbuck@us.ibm.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4675, '2006-10-02', 'Donald', 'Caponi', '', '', '', '', NULL, '', NULL, 'mcaponi79@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4676, '2006-10-02', 'Sky', 'McBeth', '', '', '', '', NULL, '', NULL, 'mcbeths@dteenergy.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4679, '2006-10-02', 'Doug', 'McLaughlin', '', '', '', '', NULL, '', NULL, 'mclaujd@verizon.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4680, '2006-10-02', 'Cathy', 'Mclean', '', '', '', '', NULL, '', NULL, 'mclean8@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4681, '2006-10-02', 'Mike', 'Door', '', '', '', '', NULL, '', NULL, 'mdoor@lettinga.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4682, '2006-10-02', 'Margaret', 'Smith', '', '', '', '', NULL, '', NULL, 'meathsmith@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7724, '2008-12-15', 'Tamara', 'Good', '233 Dogwood', 'Canton', 'MI', '48187', NULL, '', NULL, 'tamaralgood@att.net', NULL, NULL, true, NULL, NULL, '', '2008-12-15', '2008-12-15', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4684, '2006-10-02', 'Melissa', 'Joseph', '', '', '', '', NULL, '', NULL, 'melissaj73@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4703, '2006-10-02', 'Mike', 'Kotwick', '', '', '', '', NULL, '', NULL, 'mjkotwick@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4686, '2006-10-02', 'Mary', 'Thut', '', '', '', '', NULL, '', NULL, 'METhut@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7813, '2009-02-04', 'Megan', 'Beyer', '', '', '', '', NULL, '', NULL, 'beyermeg@msu.edu', NULL, NULL, true, NULL, NULL, '', '2009-02-04', '2009-02-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4688, '2006-10-02', 'Michael', 'Hantman', '', '', '', '', NULL, '', NULL, 'mhantman@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4689, '2006-10-02', 'Susan', 'Holden', '', '', '', '', NULL, '', NULL, 'mholdfam@netins.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4690, '2006-10-02', 'Michael', 'Harley', '', '', '', '', NULL, '', NULL, 'micbruhar@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4691, '2006-10-02', 'Micheal', 'Smith', '', '', '', '', NULL, '', NULL, 'michael.j.smith@gm.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4694, '2006-10-02', 'Onofre', 'Llaneza', '', '', '', '', NULL, '', NULL, 'michelle@yoyostudios.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4695, '2006-10-02', 'Mary', 'Harper', '', '', '', '', NULL, '', NULL, 'mike.harper@sympatico.ca', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8329, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'mbkinsella@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7904, '2009-02-12', 'Dennis', 'Buser', '', '', '', '', NULL, '', NULL, 'dennisbuser@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-02-12', '2009-02-12', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4699, '2006-10-02', 'Michael', 'Jacobs', '', '', '', '', NULL, '', NULL, 'mikejacobs@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4700, '2006-10-02', 'Mike', 'Kowalski', '', '', '', '', NULL, '', NULL, 'mikeski46@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8385, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'rich.dubois.l8hb@statefarm.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4702, '2006-10-02', 'Cecille', 'Mendoza', '', '', '', '', NULL, '', NULL, 'mj523@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8430, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'smgriffin6@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8469, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'tlipovsky@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6278, '2007-11-07', 'MaryBeth', 'Dennis', '', '', '', '', NULL, '', NULL, 'upnative@lighthouse.net', NULL, NULL, true, NULL, NULL, '', '2007-11-07', '2007-11-07', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4711, '2006-10-02', 'Nancy', 'Mahrle', '', '', '', '', NULL, '', NULL, 'mmahrle@valiantindustries.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4715, '2006-10-02', 'John', 'Vandenbossche', '', '', '', '', NULL, '', NULL, 'mmvan08@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4716, '2006-10-02', 'Karen', 'Nusbaum', '', '', '', '', NULL, '', NULL, 'mnusbaum@flexfab.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4717, '2006-10-02', 'Robbie', 'Pastewski', '', '', '', '', NULL, '', NULL, 'moneypit386@prodigy.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4718, '2006-10-02', 'John', 'Moose', '', '', '', '', NULL, '', NULL, 'moose@elenas.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8503, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'wwaugh@earthlink.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4721, '2006-10-02', 'Victor', 'Motov', '', '', '', '', NULL, '', NULL, 'motov@engineer.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4722, '2006-10-02', 'Molly', 'Laethem', '', '', '', '', NULL, '', NULL, 'mplaethem@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4724, '2006-10-02', 'Mary Ann', 'Ruddy', '', '', '', '', NULL, '', NULL, 'mruddy10@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8556, '2009-07-17', 'Stan', 'Mogelnicki', '', '', '', '', NULL, '', NULL, 'drmog@bellsouth.net', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4727, '2006-10-02', 'Michael', 'Turner', '', '', '', '', NULL, '', NULL, 'mturner810@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4728, '2006-10-02', 'Mufaddal', 'Kapadia', '', '', '', '', NULL, '', NULL, 'mufaddalk@gmail.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4730, '2006-10-02', 'Megan', 'Fulton', '', '', '', '', NULL, '', NULL, 'mvfulton@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4731, '2006-10-02', 'Marielle', 'Weindorf', '', '', '', '', NULL, '', NULL, 'mweindorf@datastat.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4732, '2006-10-02', 'Cynthia', 'Lynn', '', '', '', '', NULL, '', NULL, 'My_Charleyboy@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4735, '2006-10-02', 'Ronald', 'Nickerson', '', '', '', '', NULL, '', NULL, 'nealnickerson@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4736, '2006-10-02', 'Constance', 'Neubauer', '', '', '', '', NULL, '', NULL, 'neubauer@butzel.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4737, '2006-10-02', 'Angela', 'Neu', '', '', '', '', NULL, '', NULL, 'neufamily1999@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4738, '2006-10-02', 'Nancy', 'Garrison', '', '', '', '', NULL, '', NULL, 'ngarrison@cinci.rr.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4739, '2006-10-02', 'Bev', 'Gross', '', '', '', '', NULL, '', NULL, 'ngross8262@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4742, '2006-10-02', 'Neil', 'Kimball', '', '', '', '', NULL, '', NULL, 'nkimball@mmbjlaw.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4743, '2006-10-02', 'Nancy', 'Stern', '', '', '', '', NULL, '', NULL, 'nlstern@ameritech.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8589, '2009-07-17', 'Tim', 'Breen', '', '', '', '', NULL, '', NULL, 'breentim@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4745, '2006-10-02', 'Nicole', 'Wozniak', '', '', '', '', NULL, '', NULL, 'nmwozniak@wowway.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4746, '2006-10-02', 'Neil', 'Kahn', '', '', '', '', NULL, '', NULL, 'NSKPC@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7725, '2008-12-15', 'Dexter', 'Curry', '10010 Patton', 'Detroit', 'MI', '48228', NULL, '', NULL, 'toughworld28@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-12-15', '2008-12-15', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4748, '2006-10-02', 'Jim', 'Olsen', '', '', '', '', NULL, '', NULL, 'olsenjim@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4749, '2006-10-02', 'Tricia', 'O''Neal', '', '', '', '', NULL, '', NULL, 'oneals@gmail.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7814, '2009-02-04', 'Bill', 'Gass', '', '', '', '', NULL, '', NULL, 'bgass@growdirect.com', NULL, NULL, true, NULL, NULL, '', '2009-02-04', '2009-02-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4751, '2006-10-02', 'Barry', 'Suitor', '', '', '', '', NULL, '', NULL, 'only1bear@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4752, '2006-10-02', 'Joe', 'Opferman', '', '', '', '', NULL, '', NULL, 'Opfermanj@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4758, '2006-10-02', 'Patricia', 'Walsh', '', '', '', '', NULL, '', NULL, 'patawal@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4754, '2006-10-02', 'Paula', 'Kipp', '', '', '', '', NULL, '', NULL, 'pakipp@ameritech.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4755, '2006-10-02', 'Pam', 'Hankins', '', '', '', '', NULL, '', NULL, 'Pamela.Hankins@stahls.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8908, '2009-10-26', 'Ann Marie ', 'Fitch ', '', '', '', '', NULL, '', NULL, 'amfinmuth@aol.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-26', '2009-10-26', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4757, '2006-10-02', 'Christopher', 'Parr', '', '', '', '', NULL, '', NULL, 'parr_c@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4759, '2006-10-02', 'Paul', 'Styles', '', '', '', '', NULL, '', NULL, 'paul_styles@ameritech.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4760, '2006-10-02', 'Patricia', 'Manley', '', '', '', '', NULL, '', NULL, 'paus205@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4761, '2006-10-02', 'Pam', 'Myers', '', '', '', '', NULL, '', NULL, 'pbmyers45068@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8021, '2009-05-22', 'Ron', 'Rzepecki', '', '', '', '', NULL, '', NULL, 'rrzepecki@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-05-22', '2009-05-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4763, '2006-10-02', 'Matthew', 'McPeak', '', '', '', '', NULL, '', NULL, 'peakmc@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4764, '2006-10-02', 'Pearl', 'Goodemoot', '', '', '', '', NULL, '', NULL, 'pearlrosew@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8108, '2009-06-03', '', '', '', '', '', '', NULL, '', NULL, 'billclu75@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-06-03', '2009-06-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8197, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'ges3960@verizon.net', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8330, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'mcnoles@wowway.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4768, '2006-10-02', 'John', 'Ruicci', '', '', '', '', NULL, '', NULL, 'PeterRuicci@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4770, '2006-10-02', 'Paul', 'Thomas', '', '', '', '', NULL, '', NULL, 'pfthomas1@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4771, '2006-10-02', 'Phil', 'Hagerman', '', '', '', '', NULL, '', NULL, 'phagerman@diplomatpharmacy.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4772, '2006-10-02', 'Phyllis', 'Schoenherr', '', '', '', '', NULL, '', NULL, 'phyllis@beavertile.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4774, '2006-10-02', 'Louise', 'Jakubik', '', '', '', '', NULL, '', NULL, 'pjakubik@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4776, '2006-10-02', 'Paula', 'Johnson', '', '', '', '', NULL, '', NULL, 'pjhark@msn.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4777, '2006-10-02', 'Paul', 'Nowak', '', '', '', '', NULL, '', NULL, 'pjn@seritis.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4778, '2006-10-02', 'Paul', 'Johns', '', '', '', '', NULL, '', NULL, 'pjohns3867@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4779, '2006-10-02', 'Peggy & Dave', 'Watson', '', '', '', '', NULL, '', NULL, 'pjwatson@umich.edu', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4780, '2006-10-02', 'Paul', 'Kadesch', '', '', '', '', NULL, '', NULL, 'pkadesch@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4781, '2006-10-02', 'Pamela', 'Olson', '', '', '', '', NULL, '', NULL, 'pko1@charter.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4784, '2006-10-02', 'Christopher', 'Polovick', '', '', '', '', NULL, '', NULL, 'polovicks@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4785, '2006-10-02', 'Kendra', 'Pond', '', '', '', '', NULL, '', NULL, 'pondk@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4786, '2006-10-02', 'Daniele', 'Ferrari', '', '', '', '', NULL, '', NULL, 'pontenure@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4787, '2006-10-02', 'Aaron', 'Ham', '', '', '', '', NULL, '', NULL, 'ppd12ham@netscape.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4788, '2006-10-02', 'Phyllis', 'Porea', '', '', '', '', NULL, '', NULL, 'pporea1@buckeye-express.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4790, '2006-10-02', 'Pat', 'Sellenraad', '', '', '', '', NULL, '', NULL, 'psellenraad@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8386, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'richmallino@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4794, '2006-10-02', 'Peter', 'Stone', '', '', '', '', NULL, '', NULL, 'pstone_foo@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4795, '2006-10-02', 'Putney', 'White', '', '', '', '', NULL, '', NULL, 'putneyw@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8431, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'smw4639@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8470, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'tll1007@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4798, '2006-10-02', 'Rhonda', 'Russ', '', '', '', '', NULL, '', NULL, 'r.russ@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4799, '2006-10-02', 'Robert', 'Pollice', '', '', '', '', NULL, '', NULL, 'racapollice@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4800, '2006-10-02', 'Patricia', 'Randall', '', '', '', '', NULL, '', NULL, 'Randall8790-2006@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4801, '2006-10-02', 'Randy', 'Stark', '', '', '', '', NULL, '', NULL, 'randallstark@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8504, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'wymack@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4803, '2006-10-02', 'Roger', 'Trombley', '', '', '', '', NULL, '', NULL, 'ratrombley@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4805, '2006-10-02', 'Raymond', 'Hauck', '', '', '', '', NULL, '', NULL, 'raymond.hauck@nebulascorp.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4807, '2006-10-02', 'Cynthia', 'Bodziak', '', '', '', '', NULL, '', NULL, 'rbojck@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4810, '2006-10-02', 'Richard', 'Duffy', '', '', '', '', NULL, '', NULL, 'rduffy3@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4811, '2006-10-02', 'Tammy', 'Lord', '', '', '', '', NULL, '', NULL, 'realesttam@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4815, '2006-10-02', 'Ronald', 'Lund', '', '', '', '', NULL, '', NULL, 'relund@charter.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8917, '2009-10-30', 'David', 'Daldine', '', '', '', '', NULL, '', NULL, 'ddaldine@wowway.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-30', '2009-10-30', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4817, '2006-10-02', 'Roger', 'Roode', '', '', '', '', NULL, '', NULL, 'rgrlrd@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4819, '2006-10-02', 'Richard', 'Archuleta', '', '', '', '', NULL, '', NULL, 'richard.archuleta@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4821, '2006-10-02', 'Richard', 'Huser', '', '', '', '', NULL, '', NULL, 'rick.huser@thomson.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4822, '2006-10-02', 'Rick', 'Schoonover', '', '', '', '', NULL, '', NULL, 'rick@amanick.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4825, '2006-10-02', 'Ann & Richard', 'Velez', '', '', '', '', NULL, '', NULL, 'rjvamv@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7726, '2008-12-15', 'Darlene', 'Algton', '23230 Berkley', 'Oak Park', 'MI', '48237', NULL, '', NULL, 'dtaylorkidz1st@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-12-15', '2008-12-15', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4828, '2006-10-02', 'Robin', 'Robinson', '', '', '', '', NULL, '', NULL, 'RLRChelsea@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4831, '2006-10-02', 'Robert', 'Parent', '', '', '', '', NULL, '', NULL, 'Rob9877@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4832, '2006-10-02', 'Robert', 'Heighes', '', '', '', '', NULL, '', NULL, 'robert.heighes@emich.edu', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4833, '2006-10-02', 'Robin', 'Partlow', '', '', '', '', NULL, '', NULL, 'robinpartlo@gmail.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4834, '2006-10-02', 'Chad', 'Robison', '', '', '', '', NULL, '', NULL, 'robis1ca@cmich.edu', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4835, '2006-10-02', 'Lisa', 'Hamilton', '', '', '', '', NULL, '', NULL, 'rodlisah@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4836, '2006-10-02', 'John', 'Rogers', '', '', '', '', NULL, '', NULL, 'rogersj@msu.edu', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8557, '2009-07-17', 'Jo', 'Parker', '', '', '', '', NULL, '', NULL, 'joparkerazo@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4838, '2006-10-02', 'Roberta', 'Beery', '', '', '', '', NULL, '', NULL, 'rojobeery@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8109, '2009-06-03', '', '', '', '', '', '', NULL, '', NULL, 'billettesm@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-03', '2009-06-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4846, '2006-10-02', 'Rae Ann', 'Rorah', '', '', '', '', NULL, '', NULL, 'rrorah@netexp.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4847, '2006-10-02', 'Judith', 'Samanich', '', '', '', '', NULL, '', NULL, 'rsamanich@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4849, '2006-10-02', 'Ron', 'Simon', '', '', '', '', NULL, '', NULL, 'rsimon101@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4853, '2006-10-02', 'April', 'Tasco', '', '', '', '', NULL, '', NULL, 'runner4180@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4854, '2006-10-02', 'Russell', 'Smith', '', '', '', '', NULL, '', NULL, 'russsmith@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4857, '2006-10-02', 'Robert', 'Wender', '', '', '', '', NULL, '', NULL, 'rwender@wenderandco.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4858, '2006-10-02', 'Richard', 'Wendling', '', '', '', '', NULL, '', NULL, 'rwendling@tkns.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8909, '2009-10-26', 'Jule', 'Sawatzki', '', '', '', '', NULL, '', NULL, 'wrsjas@chartermi.net ', NULL, NULL, true, NULL, NULL, '', '2009-10-26', '2009-10-26', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4863, '2006-10-02', 'Martha', 'Samson', '', '', '', '', NULL, '', NULL, 'samltd2@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4864, '2006-10-02', 'Sue', 'Morgan', '', '', '', '', NULL, '', NULL, 'sammom2@wowway.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4865, '2006-10-02', 'Syed A.', 'Naqui', '', '', '', '', NULL, '', NULL, 'sanaqvi51@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4866, '2006-10-02', 'Sandra', 'rdp', '', '', '', '', NULL, '', NULL, 'sandraa@resortdata.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4867, '2006-10-02', 'Sandra', 'Wolf', '', '', '', '', NULL, '', NULL, 'sandy.a.wolf@gm.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4868, '2006-10-02', 'Thierry', 'Ormancey', '', '', '', '', NULL, '', NULL, 'santorma@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4869, '2006-10-02', 'Tracy', 'Sargent', '', '', '', '', NULL, '', NULL, 'sarge@sargentstitle.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4870, '2006-10-02', 'Susan', 'Steinberg', '', '', '', '', NULL, '', NULL, 'sbsteinberg@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7815, '2009-02-04', 'Cindy', 'Davis', '', '', '', '', NULL, '', NULL, 'bgstoner@verizon.net', NULL, NULL, true, NULL, NULL, '', '2009-02-04', '2009-02-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4872, '2006-10-02', 'Heidi', 'Schefferly', '', '', '', '', NULL, '', NULL, 'schefferly@acd.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4873, '2006-10-02', 'Scott', 'Cory', '', '', '', '', NULL, '', NULL, 'scott.s.cory@gm.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4874, '2006-10-02', 'Scott', 'Shefman', '', '', '', '', NULL, '', NULL, 'scott.shefman@freg.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4875, '2006-10-02', 'Scott', 'Vince', '', '', '', '', NULL, '', NULL, 'scott.vince@cdsonline.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4892, '2006-10-02', 'Clark', 'Phelps', '', '', '', '', NULL, '', NULL, 'slscdp@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4877, '2006-10-02', 'Tracy', 'Labadie', '', '', '', '', NULL, '', NULL, 'scrapbook030@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4878, '2006-10-02', 'Shannon', 'Price', '', '', '', '', NULL, '', NULL, 'seprice@gmail.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4879, '2006-10-02', 'Behroz', 'Ghandhi', '', '', '', '', NULL, '', NULL, 'sfghandhi@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4880, '2006-10-02', 'Ray', 'Lubinsky', '', '', '', '', NULL, '', NULL, 'sgallagher@stbkil.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4881, '2006-10-02', 'Shabnam', 'Khan', '', '', '', '', NULL, '', NULL, 'shabnamk2003@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7906, '2009-02-12', 'Becky', 'Treber', '', '', '', '', NULL, '', NULL, 'treberb@michigan.gov', NULL, NULL, true, NULL, NULL, '', '2009-02-12', '2009-02-12', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4883, '2006-10-02', 'Ann Marie', 'Miller', '', '', '', '', NULL, '', NULL, 'shannonparis@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4884, '2006-10-02', 'Dan & Sharon', 'Campbell', '', '', '', '', NULL, '', NULL, 'sharongc@brktel.on.ca', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8198, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'gfrederickson@jack-post.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4887, '2006-10-02', 'Sherry', 'Mueller', '', '', '', '', NULL, '', NULL, 'sherrymueller@wowway.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7162, '2008-09-22', 'Aleatha', 'Hoff', '', '', '', '', NULL, '', NULL, 'aleathahoff@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4889, '2006-10-02', 'Mary', 'Schmitz', '', '', '', '', NULL, '', NULL, 'sixschmitz@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4891, '2006-10-02', 'Sebert', 'Kooima', '', '', '', '', NULL, '', NULL, 'skooima@sio.midco.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4893, '2006-10-02', 'Sherri', 'Meachum', '', '', '', '', NULL, '', NULL, 'smeachum@schupan.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4894, '2006-10-02', 'Chad', 'Griffin', '', '', '', '', NULL, '', NULL, 'smgriffin3@excite.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4895, '2006-10-02', 'Daniel', 'Hier', '', '', '', '', NULL, '', NULL, 'smh48094@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4896, '2006-10-02', 'Terri', 'Smith', '', '', '', '', NULL, '', NULL, 'smithfamily36@ameritech.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4898, '2006-10-02', 'Ronald', 'Rybicki', '', '', '', '', NULL, '', NULL, 'snowmandown@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4901, '2006-10-02', 'Christi', 'Sovis', '', '', '', '', NULL, '', NULL, 'sovis@msu.edu', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8110, '2009-06-03', '', '', '', '', '', '', NULL, '', NULL, 'binettekandp@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-03', '2009-06-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4903, '2006-10-02', 'Steve', 'Pfoser', '', '', '', '', NULL, '', NULL, 'spfoser@earthlink.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4904, '2006-10-02', 'Sylvia', 'Polenakovik', '', '', '', '', NULL, '', NULL, 'spolen@pol.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4905, '2006-10-02', 'Shari', 'Pollesch', '', '', '', '', NULL, '', NULL, 'spollesch@bppattorneys.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4906, '2006-10-02', 'Dawn', 'Maier', '', '', '', '', NULL, '', NULL, 'spookymaier@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4907, '2006-10-02', 'Stephen', 'Riebe', '', '', '', '', NULL, '', NULL, 'sriebe@austin.rr.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4908, '2006-10-02', 'Steve', 'Line', '', '', '', '', NULL, '', NULL, 'srlbushmanjr@msn.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8199, '2009-06-04', 'Diane', 'Heiss', '', '', '', '', NULL, '', NULL, 'gheiss4863@msn.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4912, '2006-10-02', 'Scott', 'Stoner', '', '', '', '', NULL, '', NULL, 'sstoner@lipsonneilson.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4913, '2006-10-02', 'Stacy', 'Strabbing', '', '', '', '', NULL, '', NULL, 'stacystrabbing@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4915, '2006-10-02', 'Brian', 'Stange', '', '', '', '', NULL, '', NULL, 'stangedom@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4920, '2006-10-02', 'Rhonda', 'Stevens', '', '', '', '', NULL, '', NULL, 'stevens82003@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9324, '2010-02-17', 'Michael', 'Czarniecki', '', '', '', '', NULL, '', NULL, 'mczarniecki@ameritech.net', NULL, NULL, true, 8, 3, '', '2010-02-28', '2010-03-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4922, '2006-10-02', 'Lyle', 'Wolberg', '', '', '', '', NULL, '', NULL, 'stonewolberg@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4923, '2006-10-02', 'Susan', 'Iaderosa', '', '', '', '', NULL, '', NULL, 'strobel@juno.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4924, '2006-10-02', 'Susan', 'Bresser', '', '', '', '', NULL, '', NULL, 'susanbresser@msn.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4925, '2006-10-02', 'Sue', 'Coates', '', '', '', '', NULL, '', NULL, 'susancoates@msn.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7907, '2009-02-12', 'Katie ', 'Minello', '', '', '', '', NULL, '', NULL, 'katieminello@yahoo.ca', NULL, NULL, true, NULL, NULL, '', '2009-02-12', '2009-02-12', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4927, '2006-10-02', 'Roger & Susan', 'Short', '', '', '', '', NULL, '', NULL, 'susanroger329@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4928, '2006-10-02', 'Suzanne', 'Schmidt', '', '', '', '', NULL, '', NULL, 'suzannelschmidt@charter.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4929, '2006-10-02', 'Suzanne', 'Gaboury-Norman', '', '', '', '', NULL, '', NULL, 'suzi222@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4930, '2006-10-02', 'Kevin', 'Savage', '', '', '', '', NULL, '', NULL, 'SvTimothy@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4931, '2006-10-02', 'Scott', 'Wolfe', '', '', '', '', NULL, '', NULL, 'swolfe@lowis-gellen.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4932, '2006-10-02', 'Steve', 'Syakovich', '', '', '', '', NULL, '', NULL, 'sykoman@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4933, '2006-10-02', 'Jim', 'Szlaga', '', '', '', '', NULL, '', NULL, 'szlaga@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4934, '2006-10-02', 'Tim & Anne', 'O''Connor', '', '', '', '', NULL, '', NULL, 't1up4tim@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4935, '2006-10-02', 'Christine', 'Cherry', '', '', '', '', NULL, '', NULL, 'taca@watchtv.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4936, '2006-10-02', 'Tim & Chris', 'Joseph', '', '', '', '', NULL, '', NULL, 'tajosef@umich.edu', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4938, '2006-10-02', 'Akiko', 'Larson', '', '', '', '', NULL, '', NULL, 'talarson4@cs.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4940, '2006-10-02', 'Curt', 'Whitefield', '', '', '', '', NULL, '', NULL, 'tasyd2@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4941, '2006-10-02', 'Tonia', 'Stevens', '', '', '', '', NULL, '', NULL, 'tatianastevens@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4942, '2006-10-02', 'Tammy', 'Guttman', '', '', '', '', NULL, '', NULL, 'tcguttman@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4943, '2006-10-02', 'Timothy', 'MacIntyre', '', '', '', '', NULL, '', NULL, 'tdmacintyre@hdp.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8910, '2009-10-26', 'Christine', 'Burleigh', '', '', '', '', NULL, '', NULL, 'cmburleigh@gmail.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-26', '2009-10-26', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4947, '2006-10-02', 'Scott', 'Riga', '', '', '', '', NULL, '', NULL, 'terryriga@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8265, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'jwag789@earthlink.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4952, '2006-10-02', 'Tom', 'Henig', '', '', '', '', NULL, '', NULL, 'thenig@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4953, '2006-10-02', 'June', 'Thomas', '', '', '', '', NULL, '', NULL, 'thomas.b1693@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4955, '2006-10-02', 'Mike & Ann', 'Thomas', '', '', '', '', NULL, '', NULL, 'thomasfamily.mail@verizon.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4956, '2006-10-02', 'Bradley', 'King', '', '', '', '', NULL, '', NULL, 'thundersnowking@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4957, '2006-10-02', 'Angela', 'Thuringer', '', '', '', '', NULL, '', NULL, 'thuringers@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4958, '2006-10-02', 'Tim', 'Hain', '', '', '', '', NULL, '', NULL, 'timhain@charter.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4959, '2006-10-02', 'Cynthia & Timothy', 'Deneau', '', '', '', '', NULL, '', NULL, 'timothy.deneau@comaupico.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4961, '2006-10-02', 'Lori', 'Tirpak', '', '', '', '', NULL, '', NULL, 'tirpak@oakland.edu', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4965, '2006-10-02', 'Tom', 'Kahl', '', '', '', '', NULL, '', NULL, 'tkahl@rossiassociates.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4967, '2006-10-02', 'Anthony', 'Kueffner', '', '', '', '', NULL, '', NULL, 'tkueffne@walbro.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4969, '2006-10-02', 'Tom', 'Lopiccolo', '', '', '', '', NULL, '', NULL, 'Tlopiccolo@bcbsm.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4971, '2006-10-02', 'Tom', 'Mueller', '', '', '', '', NULL, '', NULL, 'tmueller1@cogeco.ca', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4972, '2006-10-02', 'Tim', 'Mundt', '', '', '', '', NULL, '', NULL, 'tmundt3@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4973, '2006-10-02', 'Todd', 'Truesdell', '', '', '', '', NULL, '', NULL, 'toddtrues@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7729, '2008-12-17', 'Ken', 'Zielinski', '', '', '', '', NULL, '', NULL, 'kfzielinski@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-12-17', '2008-12-17', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4975, '2006-10-02', 'Tom', 'Stieber', '', '', '', '', NULL, '', NULL, 'tom@postbars.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4976, '2006-10-02', 'Mary', 'Jeakle', '', '', '', '', NULL, '', NULL, 'tomandmary5@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8432, '2009-06-07', 'Niccole', 'Ganton', '', '', '', '', NULL, '', NULL, 'snganton@att.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4979, '2006-10-02', 'Todd', 'Pickornik', '', '', '', '', NULL, '', NULL, 'tpickornik@ameritech.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4980, '2006-10-02', 'Tram', 'Nguyen', '', '', '', '', NULL, '', NULL, 'tram_nguyen@ml.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4981, '2006-10-02', 'Team Thunderbolt', '', '', '', '', '', NULL, '', NULL, 'trhalsey@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4982, '2006-10-02', 'Kathy', 'Schwartz', '', '', '', '', NULL, '', NULL, 'trkins@adelphia.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4983, '2006-10-02', 'Vonnie', 'Trumble', '', '', '', '', NULL, '', NULL, 'TrumbleV@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4985, '2006-10-02', 'Todd', 'Rosa', '', '', '', '', NULL, '', NULL, 'tsrosa@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4986, '2006-10-02', 'Tom', 'Todd', '', '', '', '', NULL, '', NULL, 'ttodd@galloup.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4987, '2006-10-02', 'Robert ', 'Tucker', '', '', '', '', NULL, '', NULL, 'tucker01@stjohn.org', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4988, '2006-10-02', 'Pam', 'Sackett', '', '', '', '', NULL, '', NULL, 'tulikivi@msn.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4939, '2006-10-02', 'Lynne', 'Rumford', '', '', '', '', NULL, '', NULL, 'targettrng@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4991, '2006-10-02', 'Steven', 'Stoner', '', '', '', '', NULL, '', NULL, 'twinsplussone@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4993, '2006-10-02', 'Jeff', 'Mudget', '', '', '', '', NULL, '', NULL, 'umthebest30@charter.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4995, '2006-10-02', 'Shelly', 'Lee', '', '', '', '', NULL, '', NULL, 'vanetten@umich.edu', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4996, '2006-10-02', 'James E.', 'Bayne', '', '', '', '', NULL, '', NULL, 'venturejim@msn.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9325, '2010-02-18', 'Pauline', 'LaJoie', '880 Snowdrift', 'Commerce Twp', 'Mi', '48390', NULL, '313-550-0075', NULL, 'pauline.lajoie@omnicare.com', NULL, NULL, true, 9, 5, 'e-mail a price.............', '2010-05-17', '2010-05-19', 'Please e-mail me back a price', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5001, '2006-10-02', 'Victor', 'Toral', '', '', '', '', NULL, '', NULL, 'vicelsy@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5002, '2006-10-02', 'Paul', 'Tarnas', '', '', '', '', NULL, '', NULL, 'visionsoptical@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5004, '2006-10-02', 'Allan', 'Rodrigues', '', '', '', '', NULL, '', NULL, 'vrodrix@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5008, '2006-10-02', 'Nona', 'Watt', '', '', '', '', NULL, '', NULL, 'wattn@indiana.edu', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5010, '2006-10-02', 'William J.', 'Desana', '', '', '', '', NULL, '', NULL, 'wdesana@buckeye-express.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5011, '2006-10-02', 'Jane', 'VanHouten', '', '', '', '', NULL, '', NULL, 'weber7of7@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5012, '2006-10-02', 'Unanell', 'Bone', '', '', '', '', NULL, '', NULL, 'webid@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5016, '2006-10-02', 'Debbie', 'Willens', '', '', '', '', NULL, '', NULL, 'willensdeb@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5017, '2006-10-02', 'Lois', 'Willious', '', '', '', '', NULL, '', NULL, 'willietillie@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5019, '2006-10-02', 'Nancy', 'Burk', '', '', '', '', NULL, '', NULL, 'wnburk@chartermi.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5020, '2006-10-02', 'Pennie', 'Wolschlager', '', '', '', '', NULL, '', NULL, 'wolsch@wowway.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8111, '2009-06-03', '', '', '', '', '', '', NULL, '', NULL, 'bjreef@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-03', '2009-06-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5022, '2006-10-02', 'Linda', 'Pickornik', '', '', '', '', NULL, '', NULL, 'wpickornik@ameritech.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5023, '2006-10-02', 'Richard', 'Williams', '', '', '', '', NULL, '', NULL, 'wrichus48178@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5024, '2006-10-02', 'William', 'Mason', '', '', '', '', NULL, '', NULL, 'wrmason@royaloak.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5025, '2006-10-02', 'Werner', 'Roennecke', '', '', '', '', NULL, '', NULL, 'wroennecke@msn.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5027, '2006-10-02', 'Yvonne', 'Hopp', '', '', '', '', NULL, '', NULL, 'yhopp@provide.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8200, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'Gjtaylor@mtu.edu', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8266, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'jwaltjd@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5030, '2006-10-02', 'FuYin', 'Song', '', '', '', '', NULL, '', NULL, 'zyumail@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8331, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'mcoates@novi.k12.mi.us', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5034, '2006-10-07', 'Dan', 'Nolan', '', '', '', '', NULL, '', NULL, 'nsanolan@aol.com', NULL, NULL, true, 6, NULL, 'Did not yet receive e-mail coirmation for Nolan group ...2 bedroom for 12/27 and 28th', NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5035, '2006-10-09', 'Wendy', 'Smith', '', '', '', '', NULL, '', NULL, 'smithjwfam@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-10-09', '2006-10-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5037, '2006-10-09', '', '', '', '', '', '', NULL, '', NULL, 'gregory.w.schwepe@chase.com', NULL, NULL, true, NULL, NULL, '', '2006-10-09', '2006-10-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4365, '2006-09-25', 'Cheryl', 'Kennelly', '', '', '', '', NULL, '', NULL, 'cherylkennelly@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5039, '2006-10-09', 'Nancy ', 'Sergeant', '', '', '', '', NULL, '', NULL, 'nsergeant@cranbrook.edu', NULL, NULL, true, NULL, NULL, '', '2006-10-09', '2006-10-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4861, '2006-10-02', 'Sally', 'Zeabari', '', '', '', '', NULL, '', NULL, 'saddie721@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5040, '2006-10-09', 'Rod ', 'McKnight', '', '', '', '', NULL, '', NULL, 'rdnejm@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-10-09', '2006-10-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8387, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'rickynelsen@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5046, '2006-10-09', 'Steve', 'Edwards', '', '', '', '', NULL, '', NULL, 'razsorbet@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-10-09', '2006-10-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5045, '2006-10-09', '', '', '', '', '', '', NULL, '', NULL, 'JGMcComas@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-10-09', '2006-10-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9744, '2012-06-21', 'Tracy', 'Dorman', '424', 'Newark', 'OH', '43055', NULL, '740-920-4291', NULL, 'dorman424@roadrunner.com', 'Mozilla/5.0 (Windows NT 6.0; rv:13.0) Gecko/20100101 Firefox/13.0.1', '173.88.21.119', true, NULL, NULL, NULL, NULL, NULL, NULL, ':15:29:12:6:23:22:16:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4246, '2006-09-18', 'Jennifer', 'Hunt', '', '', '', '', NULL, '', NULL, 'the_huntz@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-09-18', '2006-09-18', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5051, '2006-10-11', '', '', '', '', '', '', NULL, '', NULL, 'kproctor99@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-10-11', '2006-10-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5053, '2006-10-11', '', '', '', '', '', '', NULL, '', NULL, 'rnnickerson@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-10-11', '2006-10-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5054, '2006-10-11', '', '', '', '', '', '', NULL, '', NULL, 'rajashreenat@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-10-11', '2006-10-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5065, '2006-10-11', 'James', 'Avery', '', '', '', '', NULL, '', NULL, 'jbobavery@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-10-11', '2006-10-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7730, '2009-01-08', 'wendy', 'Juback', '1683 Shristopher Drive', 'Canton', 'Mi', '48187', NULL, '734-968-0022', NULL, 'WendyJ@banksupplies.com', NULL, NULL, true, NULL, NULL, '', '0209-05-14', '2009-05-17', 'Would like unit 25 that I had last time . Also- can I get a bottle of wine for my girl friends birthday!!', ':Pleasure Vacation:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5063, '2006-10-11', 'Jenn', 'Alonzo', '', '', '', '', NULL, '', NULL, 'jenalonzo@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2006-10-11', '2006-10-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7909, '2009-02-12', 'Ray', 'Fullerton', '', '', '', '', NULL, '', NULL, 'rrf606@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-02-12', '2009-02-12', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5048, '2006-10-09', 'Larry', 'Metz', '', '', '', '', NULL, '', NULL, 'metzljm@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-10-09', '2006-10-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5068, '2006-10-11', '', '', '', '', '', '', NULL, '', NULL, 'hydelarry@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-10-11', '2006-10-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8112, '2009-06-03', '', '', '', '', '', '', NULL, '', NULL, 'bjteahan@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-03', '2009-06-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8558, '2009-07-17', 'Paul', 'Pajot', '', '', '', '', NULL, '', NULL, 'paulpajot@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5049, '2006-10-09', 'John & Julie', 'Coe', '', '', '', '', NULL, '', NULL, 'sixcoe@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-10-09', '2006-10-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5075, '2006-10-11', 'Judy', 'Griffey', '', '', '', '', NULL, '', NULL, 'tjgriffey@columbus.rr.com', NULL, NULL, true, NULL, NULL, '', '2006-10-11', '2006-10-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5097, '2006-10-11', 'Jeanne', 'Wilhelmi', '', '', '', '', NULL, '', NULL, 'jeannewilhelmi@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-10-11', '2006-10-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8201, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'gogreen1991@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5082, '2006-10-11', '', '', '', '', '', '', NULL, '', NULL, 'shzrogers@aol.com', NULL, NULL, true, NULL, NULL, '', '2006-10-11', '2006-10-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5084, '2006-10-11', 'Dottie', 'Britz', '', '', '', '', NULL, '', NULL, 'jestaboy2002@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-10-11', '2006-10-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5090, '2006-10-11', 'Neil', 'Shelvey', '', '', '', '', NULL, '', NULL, 'workinstr@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-10-11', '2006-10-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5093, '2006-10-11', '', '', '', '', '', '', NULL, '', NULL, 'd.tardif2@verizon.net', NULL, NULL, true, NULL, NULL, '', '2006-10-11', '2006-10-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5096, '2006-10-11', '', '', '', '', '', '', NULL, '', NULL, 'dfenske@wensco.com', NULL, NULL, true, NULL, NULL, '', '2006-10-11', '2006-10-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5103, '2006-10-11', 'Andrea', 'Garnek', '', '', '', '', NULL, '', NULL, 'jajace@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-10-11', '2006-10-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5105, '2006-10-12', 'chele', 'kendall', '', '', '', '', NULL, '', NULL, 'seachele@ameritech.net', NULL, NULL, true, NULL, NULL, '', NULL, NULL, 'Hi Debby, We are still inquring if the unit we rented (141) has 2 full baths? We are unable to locate it on your web site. We do need to full baths. I believe this is a 2 story condo right?\r
+ Thanks Chele Kendall', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9333, '2010-04-07', 'James', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'jk48326@yahoo.com', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.30729; InfoPath.2; MS-RTC LM 8; .NET CLR 3.5.30729)', '192.172.14.99', false, 9, NULL, NULL, NULL, NULL, 'I cannot believe that you don''t even try to hide the fact that your Zoo-de-mack 1-night special costs the same as any 2 nights.', ':15:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5107, '2006-10-15', 'Katherine', 'Nowak', '3428 Patcon Way', 'Hilliard', 'OH', '43026', NULL, '(614) 529-1989', NULL, 'kar170@hotmail.com', NULL, NULL, false, 7, NULL, 'Can you also send us information regarding what linens/kitchen supplies are provided in the condos?', NULL, NULL, 'We already have reservations for Dec. 28-30. There are 3 couples staying and I was wondering if you could please mail brochures and infromation on Nubs Nob to multiple addresses. \r
+\r
+Tom and Marti Ryan\r
+511 Ansonia \r
+Oregon, OH 43616\r
+\r
+Dave and Ellen Nowak\r
+5911 Bucher Road\r
+Whitehouse, OH 43571\r
+\r
+Katie and Brent Nowak\r
+3428 Patcon Way\r
+Hilliard, OH 43026', ':Ski Trip:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5109, '2006-10-21', 'Paul', 'Kulik', '', '', '', '', NULL, '', NULL, 'paulkulik11@comcast.net', NULL, NULL, true, NULL, NULL, '', NULL, NULL, 'What''s the problem on accessing the owners portion ot hte website?', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5110, '2006-10-22', 'Kim', 'JohnsonCrisanti', '', '', '', '', NULL, '', NULL, 'kjohncris@comcast.net', NULL, NULL, true, 7, 3, 'Your website will not let me go on make a reservation page or check rates.  It says no access.  ', '2006-01-01', '2006-01-04', '', ':Ski Trip:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5111, '2006-10-22', 'Bruce', 'Ermatinger', '2688 Ramblewood dr.', 'Kalamazoo', 'MI', '49009', NULL, '', NULL, 'bermatinge@aol.com', NULL, NULL, true, 7, NULL, 'Could I learn more about unit #142 which is currently for sale?', NULL, NULL, '', ':Real Estate:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5112, '2006-10-29', 'Debra', 'Lanthier', '7981 Bedau Street', 'Montague', 'MI', '49437', NULL, '231-894-8851', NULL, 'jlant68455@aol.com', NULL, NULL, true, NULL, 0, 'I inquired earlier about the Superbowl Weekend Special for 2007.  We stayed with you in 2006.  You provided me with two 3 bedroom & loft, 2 bathroom units that were available in the same building for that weekend.  I have talked with "the family" and we want to go ahead and make our reservations.  Can you please provide me with the two condo numbers that are in the same building so that we can be sure to reserve the correct units?  Thanks!', '2007-02-02', '2007-02-05', 'We will need two of the condo''s above,', ':Family Reunion:Ski Trip:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5113, '2006-11-08', 'Robert', 'Lockwood', '', '', '', '', NULL, '', NULL, 'Rbloc3@aol.com', NULL, NULL, true, 8, NULL, 'Do you have more photos of the house at 164 Trout Creek? We are planning to purchase a home in Harbor Springs in March 2007. Thank you.\r
+Bob & Cinda Lockwood\r
+5075 E. Shiprock St.\r
+Apache Junction, AZ.\r
+85219-9694', NULL, NULL, 'MLS search', ':Real Estate:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5114, '2006-11-13', 'Dean', 'Rivard', '12163 US 23 South', 'Ossineke', 'Michigan', '49766', NULL, '(989)471-9179', NULL, 'deanrivard@chartermi.net', NULL, NULL, true, 6, 6, '', NULL, NULL, 'I am curently planning a ski trip for approximately 10-12 people. Please send me rates for your condos and let me know what this includes. we are looking at a 2 day trip so please include the difference for mid week versus weekend prices. Also include prices for the different times of year during the ski season. Thank you!', ':Ski Trip:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5115, '2006-12-01', 'Lorie', 'Marvin-Price', '', '', '', '49770', NULL, '231-347-9865', NULL, 'mx-mom@voyager.net', NULL, NULL, true, NULL, NULL, '', NULL, NULL, 'Debbie,\r
+Have Scott try again to contact us.\r
+or have him call Bill directly at 231-347-2318\r
+It was good to see you at open house.\r
+Have a Merry Christmas and a happy New Year!\r
+Lorie & Bill Price', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5116, '2006-12-05', 'Karrie', 'Keen', '9341 White Pine Ct.', 'Linden', 'MI', '48451', NULL, '810.735.1746', NULL, 'ckeenu@hotmail.com', NULL, NULL, true, 6, 5, '', NULL, NULL, '', ':Pleasure Vacation:Summer Vacation:Family vacation:Romantic Getaway:Spring/Fall Vacation:Scrapbooking:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5117, '2006-12-06', 'Mike', '', '', '', '', '', NULL, '', NULL, 'msyounce@juno.com', NULL, NULL, false, 2, NULL, 'Do you have any units with a wet sauna along with the jacuzzi and fireplace.', NULL, NULL, '', ':Pleasure Vacation:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5119, '2006-12-09', 'David', 'Dumelle', '288 Deepwood Drive', 'Chesterton', 'In', '46304', NULL, '2199268112', NULL, 'dcdumelle@comcast.net', NULL, NULL, true, 6, 4, 'I''m trying to plan a small family vacation. We would like to arrive late Thursday and leave late Sunday. We don''t have a date in mind yet but we would like to rent snowmobiles one day and ski another.\r
+Can you please provide openings in late January to early February also snowmobile rental information? How close are you to Boyne? Thanks\r
+', NULL, NULL, '', ':Ski Trip:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5121, '2006-12-12', 'Tonie', 'Owens', '11520 Heatherwood Circle', 'Taylor', 'MI', '48180', NULL, '7342873108', NULL, 'tonieowens2000@hotmail.com', NULL, NULL, true, 9, 6, '', '2007-01-25', '2007-01-28', '', ':Ski Trip:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7157, '2008-08-11', 'wendy', 'Juback', '1683 christopher Drive', 'Canton', 'Mi', '48188', NULL, '734-968-0022', NULL, 'Wendyjuback@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-09-25', '2008-09-28', ' would like to get unit 25 with the Mouse', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8113, '2009-06-03', '', '', '', '', '', '', NULL, '', NULL, 'bobkushler@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-03', '2009-06-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8559, '2009-07-17', 'John', ' Phelan', '', '', '', '', NULL, '', NULL, 'quibby23@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8267, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'jzbown@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5125, '2007-01-11', 'Jeramie', '', '', '', '', '', NULL, '', NULL, 'jeramieslee@hotmail.com', NULL, NULL, true, 4, NULL, 'I used to live near harbor springs but moved near Novi,MI. I trying to create a plan to move my family and I back to northeren MI. I am wondering if you have any openings or a managed maintenece program for your property. I will send a resume if you wuold like.Please feel free to email me. (jeramieslee@hotmail.com)', NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5126, '2007-01-17', 'Sandy', 'Ashley', '', '', 'MI', '', NULL, '', NULL, 'sandyashley1278@yahoo.com', NULL, NULL, false, 6, 5, 'Is the pool and hot tub usable during winter?', '2007-09-03', '2007-11-03', '', ':Ski Trip:Romantic Getaway:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5127, '2007-01-19', 'Brian', 'Pencak', '1097 Cedar Crest', 'Crystal Lake', 'IL', '60014', NULL, '815-404-4749', NULL, 'bpencak@aol.com', NULL, NULL, true, 9, 6, '', NULL, NULL, 'We have stayed at Trout Creek for over 10 years now for a annual family vacation, usually the reservation is under my in-law''s name, Ed Rago.  Can you please let me know what the availability is for Unit 02 is in late June thru early Aug time frame is, we would like 3-5 nights.\r
+Thank you.', ':Family vacation:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7819, '2009-02-04', 'Steel', 'Pam', '', '', '', '', NULL, '', NULL, 'bill@bardhvac.com', NULL, NULL, true, NULL, NULL, '', '2009-02-04', '2009-02-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5130, '2007-01-19', 'Robert ', 'Bickley', '', '', '', '', NULL, '', NULL, 'aabics@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-01-19', '2007-01-19', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5131, '2007-01-19', 'Abigail', 'Harma', '', '', '', '', NULL, '', NULL, 'abby_harma@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-01-19', '2007-01-19', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5132, '2007-01-19', 'Anju', 'Brodbine', '', '', '', '', NULL, '', NULL, 'abrodbine@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-19', '2007-01-19', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5133, '2007-01-19', 'Andriy', 'Chelniak', '', '', '', '', NULL, '', NULL, 'achelniak@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-01-19', '2007-01-19', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5134, '2007-01-19', 'Nicholas', 'Adams', '', '', '', '', NULL, '', NULL, 'adams277@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-01-19', '2007-01-19', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8024, '2009-05-22', 'R', 'Fanone', '', '', '', '', NULL, '', NULL, 'rfanone@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-05-22', '2009-05-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5137, '2007-01-19', 'Richard', 'Groff', '', '', '', '', NULL, '', NULL, 'agrelli@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-19', '2007-01-19', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5138, '2007-01-19', 'Alexandra', 'Mccort', '', '', '', '', NULL, '', NULL, 'ajanemcc@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-19', '2007-01-19', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5143, '2007-01-19', 'Anna', 'Williams', '', '', '', '', NULL, '', NULL, 'annam_williams@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-01-19', '2007-01-19', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5144, '2007-01-19', 'Anne', 'Beck', '', '', '', '', NULL, '', NULL, 'annebeck@peoplepc.com', NULL, NULL, true, NULL, NULL, '', '2007-01-19', '2007-01-19', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5147, '2007-01-19', 'Arlin', 'Hunsberger', '', '', '', '', NULL, '', NULL, 'arlinhunsberger@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-01-19', '2007-01-19', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5148, '2007-01-19', 'Jenna', 'Soriano', '', '', '', '', NULL, '', NULL, 'ay5214@wayne.edu', NULL, NULL, true, NULL, NULL, '', '2007-01-19', '2007-01-19', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5150, '2007-01-19', 'Bill and Jeanne', 'Romero', '', '', '', '', NULL, '', NULL, 'bandjromero@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-01-19', '2007-01-19', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5153, '2007-01-19', 'Katie', 'Barlow', '', '', '', '', NULL, '', NULL, 'barlowk@msu.edu', NULL, NULL, true, NULL, NULL, '', '2007-01-19', '2007-01-19', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6279, '2007-11-07', 'Casey', 'Harvey', '', '', '', '', NULL, '', NULL, 'caseyh@lighthouse.net', NULL, NULL, true, NULL, NULL, '', '2007-11-07', '2007-11-07', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8878, '2009-10-21', 'Joan', 'Farrar', '', '', '', '', NULL, '', NULL, 'joanfarrar@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-10-21', '2009-10-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5157, '2007-01-19', 'Thomas', 'Jordan', '', '', '', '', NULL, '', NULL, 'bdjordan86@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-19', '2007-01-19', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5159, '2007-01-19', 'Jean Marie', 'Moffa', '', '', '', '', NULL, '', NULL, 'bedervis@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-19', '2007-01-19', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5160, '2007-01-19', 'Alan', 'Berkowitz', '', '', '', '', NULL, '', NULL, 'berk10@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-19', '2007-01-19', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5162, '2007-01-19', 'Avital', 'Granot', '', '', '', '', NULL, '', NULL, 'bgranot@ameritech.net', NULL, NULL, true, NULL, NULL, '', '2007-01-19', '2007-01-19', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5164, '2007-01-20', 'Bill', 'Wolowich', '', '', '', '', NULL, '', NULL, 'bill@surreydigital.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5165, '2007-01-20', 'Donna', 'Johnson', '', '', '', '', NULL, '', NULL, 'biondojohnson@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5167, '2007-01-20', 'Jack and Barbara', 'Kahrnoff', '', '', '', '', NULL, '', NULL, 'bkk84@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8332, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'mdlinderman@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5169, '2007-01-20', 'Larry ', 'Rubin', '', '', '', '', NULL, '', NULL, 'blake52@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5170, '2007-01-20', 'Brian ', 'Line', '', '', '', '', NULL, '', NULL, 'bline4@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5171, '2007-01-20', 'Joseph', 'Berenholz', '', '', '', '', NULL, '', NULL, 'blofish99@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5172, '2007-01-20', 'Robert', 'Mellinger', '', '', '', '', NULL, '', NULL, 'bmmellinger@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5174, '2007-01-20', 'Robert', 'Sornson', '', '', '', '', NULL, '', NULL, 'bobsornson@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8388, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'rjkwhite@verizon.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8433, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'snooks15@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8471, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'tmccjr@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5179, '2007-01-20', 'Brad', 'Licata', '', '', '', '', NULL, '', NULL, 'bradlic@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5181, '2007-01-20', 'Laura', 'Brahce', '', '', '', '', NULL, '', NULL, 'brahce@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5183, '2007-01-20', 'Brian', 'Campbell', '', '', '', '', NULL, '', NULL, 'brian.campbell@dsm.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5184, '2007-01-20', 'Bonnie', 'Hagler-Boyd', '', '', '', '', NULL, '', NULL, 'brindle8@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8505, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'ymorris@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8511, '2009-06-13', 'Jim', 'Guthrie', '224 Lawrence Road  ', 'New York', 'New York', '11111', NULL, '000-000-0000', NULL, 'jimgonzalez25@gmail.com', NULL, NULL, true, 1, 6, 'Internet Marketing Services\r
+\r
+\r
+We would like to get your website on first page of Google.\r
+\r
+All of our processes use the most ethical "white hat" Search Engine Optimization techniques that will \r
+not get your website banned or penalized.\r
+\r
+Please reply and I would be happy to send you a proposal.\r
+', NULL, NULL, 'Internet Marketing Services\r
+\r
+\r
+We would like to get your website on first page of Google.\r
+\r
+All of our processes use the most ethical "white hat" Search Engine Optimization techniques that will \r
+not get your website banned or penalized.\r
+\r
+Please reply and I would be happy to send you a proposal.\r
+', ':Scrapbooking:Big 4 Golf Package:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5186, '2007-01-20', 'Anthony', 'Brower', '', '', '', '', NULL, '', NULL, 'browersix@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5188, '2007-01-20', 'Bruno', 'Trentacost', '', '', '', '', NULL, '', NULL, 'brunotrent@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9326, '2010-03-08', 'Hunt', 'Pennie', '2283 N. State Rd.', 'Harbor Springs', 'Mi', '49740', NULL, '810-434-0685', NULL, 'cajspicehunt@aol.com', NULL, NULL, true, 4, 5, 'I was wondering if we could have a special rate since my family will be in during off season?', '2010-04-02', '2010-04-04', '', ':Pleasure Vacation:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5190, '2007-01-20', 'Ber', 'Block', '', '', '', '', NULL, '', NULL, 'bwblock@tds.net', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5191, '2007-01-20', 'Barb', 'Widener', '', '', '', '', NULL, '', NULL, 'bwidener@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5192, '2007-01-20', 'Barbara', 'Yamanishi', '', '', '', '', NULL, '', NULL, 'byamanishi@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5194, '2007-01-20', 'Shelley', 'Wright', '', '', '', '', NULL, '', NULL, 'calliekay@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7170, '2008-09-22', 'Charles', 'Bell', '', '', '', '', NULL, '', NULL, 'bells1968@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', ':23:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5196, '2007-01-20', 'Carol', 'Perschbacher', '', '', '', '', NULL, '', NULL, 'cap414@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5197, '2007-01-20', 'Carmen', 'Clark', '', '', '', '', NULL, '', NULL, 'carmenc@cisco.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5202, '2007-01-20', 'Chester', 'Defore', '', '', '', '', NULL, '', NULL, 'ccd4@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5204, '2007-01-20', 'Claire', 'Crowley', '', '', '', '', NULL, '', NULL, 'ccrowley@netpenny.net', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5205, '2007-01-20', 'Carole', 'Eppler', '', '', '', '', NULL, '', NULL, 'ceeppler@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5206, '2007-01-20', 'Leslie', 'Chaney', '', '', '', '', NULL, '', NULL, 'chaneyray@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5208, '2007-01-20', 'Cynthia', 'Holme', '', '', '', '', NULL, '', NULL, 'chholme@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5209, '2007-01-20', 'Chris', 'Oster', '', '', '', '', NULL, '', NULL, 'chris.oster@gm.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5210, '2007-01-20', 'Christine', 'Simone', '', '', '', '', NULL, '', NULL, 'chrismarcsimone@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5211, '2007-01-20', 'Christine', 'Harris', '', '', '', '', NULL, '', NULL, 'christine.harris@gpschools.org', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5213, '2007-01-20', 'Jill', 'Clark', '', '', '', '', NULL, '', NULL, 'clarksoncolette@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5215, '2007-01-20', 'Cathie', 'Taylor', '', '', '', '', NULL, '', NULL, 'cls19801@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7163, '2008-09-22', 'Alycia', 'Williams', '', '', '', '', NULL, '', NULL, 'alyciamwilliams@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7334, '2008-09-22', 'Angela', 'Furst', '', '', '', '', NULL, '', NULL, 'tremonti5@att.net', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', ':23:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5218, '2007-01-20', 'Colleen', 'Edmonds', '', '', '', '', NULL, '', NULL, 'colled01@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9971, '2013-05-14', 'John', 'Nguyen', NULL, NULL, NULL, NULL, NULL, '248-505-0089', NULL, 'thvt1970@gmail.com', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:20.0) Gecko/20100101 Firefox/20.0', '68.40.161.182', true, NULL, NULL, NULL, '2013-05-25', '2013-05-27', NULL, NULL, NULL, ':3:', '3', '1', NULL, NULL, NULL, NULL, NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5220, '2007-01-20', 'Christine', 'Sarver', '', '', '', '', NULL, '', NULL, 'csarver@domesticuniform.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5221, '2007-01-20', 'David ', 'Daniels', '', '', '', '', NULL, '', NULL, 'cyndi_daniels@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5223, '2007-01-20', 'Daniel', 'Brudzynsky', '', '', '', '', NULL, '', NULL, 'dab0188@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5225, '2007-01-20', 'Nicole', 'Meier', '', '', '', '', NULL, '', NULL, 'nicoleautogrill@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7820, '2009-02-04', 'Robert', 'Mellin', '', '', '', '', NULL, '', NULL, 'bmellin@pnc.edu', NULL, NULL, true, NULL, NULL, '', '2009-02-04', '2009-02-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5228, '2007-01-20', 'Tom', 'Mulready', '', '', '', '', NULL, '', NULL, 'tommyshins@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5229, '2007-01-20', 'Lynne', 'Watkosski', '', '', '', '', NULL, '', NULL, 'dalewat1@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5230, '2007-01-20', 'Debra', 'Williams', '', '', '', '', NULL, '', NULL, 'dave44941@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8203, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'grahamfamily7@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8740, '2009-10-13', 'Dennis', 'Howe ', '', '', '', '', NULL, '', NULL, 'dhowe@mason.k12.mi.us', NULL, NULL, true, NULL, NULL, '', '2009-10-13', '2009-10-13', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8268, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'k.brant@coldwellbanker.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5235, '2007-01-20', 'Dan', 'Bodine', '', '', '', '', NULL, '', NULL, 'dbodine@wideopenwest.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5292, '2007-01-20', 'Jean', 'Conflitti', '', '', '', '', NULL, '', NULL, 'flygirljean11@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5237, '2007-01-20', 'Denise', 'Byrne', '', '', '', '', NULL, '', NULL, 'dbyrne1215@wowway.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5238, '2007-01-20', 'Douglas', 'Christensen', '', '', '', '', NULL, '', NULL, 'dchristensen@amerigistics.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5239, '2007-01-20', 'Dennis', 'Cole', '', '', '', '', NULL, '', NULL, 'dcole108@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5240, '2007-01-20', 'Debbie', 'Jack', '', '', '', '', NULL, '', NULL, 'ddjack123@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5245, '2007-01-20', 'Debby', 'Lesser', '', '', '', '', NULL, '', NULL, 'dfrankint@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5247, '2007-01-20', 'Doug', 'Salowich-Palm', '', '', '', '', NULL, '', NULL, 'dhuntersp@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5248, '2007-01-20', 'Denise ', 'Russell', '', '', '', '', NULL, '', NULL, 'diamondjob@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5249, '2007-01-20', 'Ken and Diane', 'Matheis', '', '', '', '', NULL, '', NULL, 'dianematheis@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5250, '2007-01-20', 'Diane', 'Tayler', '', '', '', '', NULL, '', NULL, 'dianetayler@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5251, '2007-01-20', 'Doug', 'Karsch', '', '', '', '', NULL, '', NULL, 'djkarsch@cbs.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8333, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'meadsara@msu.edu', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5253, '2007-01-20', 'Kelly', 'Holmes', '', '', '', '', NULL, '', NULL, 'dkd6310@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5254, '2007-01-20', 'Debbie', 'Bressman', '', '', '', '', NULL, '', NULL, 'dlbress@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5261, '2007-01-20', 'David', 'Campbell', '', '', '', '', NULL, '', NULL, 'dnc11490@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5263, '2007-01-20', 'Yuliyan', 'Donchev', '', '', '', '', NULL, '', NULL, 'donchev@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5264, '2007-01-20', 'Donna', 'Carnago', '', '', '', '', NULL, '', NULL, 'donnacarnago@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8389, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'rke511@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8434, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'sozimek@lightingsupply.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5268, '2007-01-20', 'Douglas', 'Flechsig', '', '', '', '', NULL, '', NULL, 'dougmichigan@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5269, '2007-01-20', 'Douglas', 'Roche', '', '', '', '', NULL, '', NULL, 'dougrochejr@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5270, '2007-01-20', 'Debi', 'Broadwell', '', '', '', '', NULL, '', NULL, 'dpbroadwell@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5272, '2007-01-20', 'Tom', 'Lawrence', '', '', '', '', NULL, '', NULL, 'dredgemantommy@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5273, '2007-01-20', 'Andrew', 'Smith', '', '', '', '', NULL, '', NULL, 'drewsmith22@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5274, '2007-01-20', 'David', 'Haney', '', '', '', '', NULL, '', NULL, 'drh2776@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5275, '2007-01-20', 'Elise', 'Levinson', '', '', '', '', NULL, '', NULL, 'drmarty6@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5276, '2007-01-20', 'Kurt', 'Drufke', '', '', '', '', NULL, '', NULL, 'drufke16088@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5277, '2007-01-20', 'Deborah', 'Schommer', '', '', '', '', NULL, '', NULL, 'dschom921@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5280, '2007-01-20', 'Deborah', 'Strautz', '', '', '', '', NULL, '', NULL, 'dstrautz@twmi.rr.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5281, '2007-01-20', 'Daniel', 'Weller', '', '', '', '', NULL, '', NULL, 'dweller@ic.net', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5282, '2007-01-20', 'Jennifer', 'Bittner', '', '', '', '', NULL, '', NULL, 'dzjlb@netscape.net', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5284, '2007-01-20', 'Elizabeth', 'Duffy', '', '', '', '', NULL, '', NULL, 'elizabethaduffy@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5285, '2007-01-20', 'Eric', 'Maurer', '', '', '', '', NULL, '', NULL, 'emaurer@postique.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5286, '2007-01-20', 'Ted', 'Emch', '', '', '', '', NULL, '', NULL, 'emch@aaps.k12.mi.us', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8879, '2009-10-21', 'Mike', 'Warznie', '', '', '', '', NULL, '', NULL, 'warznie@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-10-21', '2009-10-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5289, '2007-01-20', 'Lori ', 'Fenton', '', '', '', '', NULL, '', NULL, 'fentonhike@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9327, '2010-03-08', '', '', '', '', '', '', NULL, '', NULL, 'k banddow@dow.com', NULL, NULL, true, NULL, NULL, '', '2010-03-08', '2010-03-08', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5291, '2007-01-20', 'Jackie', 'Finegan', '', '', '', '', NULL, '', NULL, 'finfamily1@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5293, '2007-01-20', 'Ellen', 'Tomski', '', '', '', '', NULL, '', NULL, 'fouryos1et@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9334, '2010-04-08', 'Michael', 'Jurek', '13751 Victoria', 'Oak Park', 'MI', '48237', NULL, '(248) 821-4448', NULL, 'mjurek01@yahoo.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '167.236.220.51', true, NULL, NULL, NULL, NULL, NULL, NULL, ':15:17:3:12:11:23:4:20:14:18:22:16:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7732, '2009-01-12', 'Mike', 'McCann', '3679 Canary Way', 'Eagan', 'MN', '55123', NULL, '612-209-6606', NULL, 'mmccann@travelers.com', NULL, NULL, true, 8, NULL, 'I have an interest in finding out more about housing our U-17 girls soccer team.  We are from Eagan, MN.  We would have approximately 16 families ranging from 2 to 6 members each.  Please send me specifics on how past soccer weekend worked and what promotions are available it everyone stayed on premises.  Also, how far is your resort from the soccer playing fields?  I appreciate your response.\r
+\r
+Mike McCann\r
+U-17 Eagan,MN Girls Soccer', '2009-06-18', '2009-06-21', 'Petoskey soccer tournament', ':Soccer Weekend:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8115, '2009-06-03', '', '', '', '', '', '', NULL, '', NULL, 'bpaterick@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-03', '2009-06-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8204, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'greglenting@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5297, '2007-01-20', 'Suzanne', 'Grazul', '', '', '', '', NULL, '', NULL, 'gcs4azul@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5298, '2007-01-20', 'Virginia', 'Icart', '', '', '', '', NULL, '', NULL, 'ginny4464@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5300, '2007-01-20', 'Greg', 'Labun', '', '', '', '', NULL, '', NULL, 'glabun2002@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5301, '2007-01-20', 'Pamela', 'Morrison', '', '', '', '', NULL, '', NULL, 'greathair78@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5302, '2007-01-20', 'Greg', 'Campbell', '', '', '', '', NULL, '', NULL, 'greg@westcottdisplays.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5303, '2007-01-20', 'Harold', 'Klee', '', '', '', '', NULL, '', NULL, 'h.klee@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5304, '2007-01-20', 'Adrian', 'Rogier', '', '', '', '', NULL, '', NULL, 'highland@siua.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6499, '2007-11-21', 'Margaret', 'Proctor', '', '', '', '', NULL, '', NULL, 'mprocter49@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-11-21', '2007-11-21', '', ':23:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5306, '2007-01-20', 'Dean', 'MacKenzie', '', '', '', '', NULL, '', NULL, 'homedad04@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8269, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'kadtree@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8334, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'mfw@mechanova.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5307, '2007-01-20', 'Bonnie', 'Allor', '', '', '', '', NULL, '', NULL, 'huntingh20@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5309, '2007-01-20', 'Matthew', 'Egan', '', '', '', '', NULL, '', NULL, 'ilykcornonthecob@msn.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5311, '2007-01-20', 'Richard', 'Johnston', '', '', '', '', NULL, '', NULL, 'isoready@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5312, '2007-01-20', 'Jack', 'Turk', '', '', '', '', NULL, '', NULL, 'jackturk06@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5313, '2007-01-20', 'James', 'Pelland', '', '', '', '', NULL, '', NULL, 'james@pellandlaw.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5314, '2007-01-20', 'Jeff', 'Braziunas', '', '', '', '', NULL, '', NULL, 'jbraziun@gmail.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5315, '2007-01-20', 'William', 'Cooke', '', '', '', '', NULL, '', NULL, 'jchristensen-5@msn.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5316, '2007-01-20', 'Bonnie', 'Keen', '', '', '', '', NULL, '', NULL, 'jckeen@umich.edu', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5317, '2007-01-20', 'Jim', 'Dales', '', '', '', '', NULL, '', NULL, 'jdales@dales-gs.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5320, '2007-01-20', 'Jeff', 'Csikasz', '', '', '', '', NULL, '', NULL, 'jeffandlaurene@sympatico.ca', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5321, '2007-01-20', 'Jennifer', 'Mercier', '', '', '', '', NULL, '', NULL, 'jennifer.mercier@gmail.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5322, '2007-01-20', 'Jenny', 'Murray', '', '', '', '', NULL, '', NULL, 'jennmarie8675@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5323, '2007-01-20', 'Jessica', 'Kurylowicz', '', '', '', '', NULL, '', NULL, 'jessica.kurylowicz@opco.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5324, '2007-01-20', 'Jo', 'Gallagher', '', '', '', '', NULL, '', NULL, 'jgalls77@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5325, '2007-01-20', 'David', 'Halsey', '', '', '', '', NULL, '', NULL, 'jhalsey@umich.edu', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5326, '2007-01-20', 'Jim', 'White', '', '', '', '', NULL, '', NULL, 'jim.white@ubs.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5329, '2007-01-20', 'Kim', 'Laski', '', '', '', '', NULL, '', NULL, 'jlaski@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5331, '2007-01-20', 'Jack', 'Mccarthy', '', '', '', '', NULL, '', NULL, 'jm0506@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5332, '2007-01-20', 'Joel', 'McUmber', '', '', '', '', NULL, '', NULL, 'jmctune@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5333, '2007-01-20', 'Cathy', 'Dulin', '', '', '', '', NULL, '', NULL, 'jmdski22@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5403, '2007-01-27', 'Kimberly', 'Forystek', '', '', '', '', NULL, '', NULL, 'mcgilteach@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-27', '2007-01-27', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5338, '2007-01-20', 'Thomas', 'Miller', '', '', '', '', NULL, '', NULL, 'joe_miller7@excite.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5340, '2007-01-20', 'John', 'Potucek', '', '', '', '', NULL, '', NULL, 'johnmonp@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8027, '2009-05-22', 'Scott', 'Gilbert', '', '', '', '', NULL, '', NULL, 'gibstracity@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-05-22', '2009-05-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5343, '2007-01-23', 'Joshua', 'Hernandez', '', '', '', '', NULL, '', NULL, 'joshua.t.hernandez@gmail.com', NULL, NULL, true, NULL, NULL, '', '2007-01-23', '2007-01-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5344, '2007-01-23', 'Jon', 'Long', '', '', '', '', NULL, '', NULL, 'jplong3999@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-01-23', '2007-01-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5345, '2007-01-23', 'Jeanne', 'Seyfried', '', '', '', '', NULL, '', NULL, 'jseyfried@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-01-23', '2007-01-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5346, '2007-01-23', 'Jim', 'Tyler', '', '', '', '', NULL, '', NULL, 'jst9999@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-23', '2007-01-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7821, '2009-02-04', 'Robert', 'Morris', '', '', '', '', NULL, '', NULL, 'bobmorris07@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-02-04', '2009-02-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5348, '2007-01-23', 'Julia', 'Erickson', '', '', '', '', NULL, '', NULL, 'juliaburns77@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-01-23', '2007-01-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8741, '2009-10-13', 'Mat', 'Zajac ', '', '', '', '', NULL, '', NULL, 'mzajac@att.net', NULL, NULL, true, NULL, NULL, '', '2009-10-13', '2009-10-13', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5351, '2007-01-23', 'Kelly', 'Craig', '', '', '', '', NULL, '', NULL, 'kacraig08@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-01-23', '2007-01-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5352, '2007-01-23', 'David & Michele', 'Kaplan', '', '', '', '', NULL, '', NULL, 'kaplmom@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-23', '2007-01-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5353, '2007-01-23', 'Kathleen ', 'Ryan', '', '', '', '', NULL, '', NULL, 'KathRyan@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-23', '2007-01-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5354, '2007-01-23', 'Katherine', 'Wheeler', '', '', '', '', NULL, '', NULL, 'kathyw6378@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-01-23', '2007-01-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5357, '2007-01-26', 'George', 'Gilin', '6522 Ellinwood', 'White Lake', 'MI', '48383', NULL, '248-417-2952', NULL, 'marilyngilin@hotmail.com', NULL, NULL, true, NULL, NULL, '', NULL, NULL, 'We stayed here early Dec. and lost a pin.  Its gold, round with a ski patrol cross in the center.  Please call if found.', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8116, '2009-06-03', '', '', '', '', '', '', NULL, '', NULL, 'bpbowler11@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-06-03', '2009-06-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5359, '2007-01-26', 'Ken', 'Falat', '', '', '', '', NULL, '', NULL, 'kenfalat@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-01-26', '2007-01-26', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5360, '2007-01-26', 'Gina & Kurt', 'Hoenshield', '', '', '', '', NULL, '', NULL, 'kgh1651@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-01-26', '2007-01-26', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5361, '2007-01-26', 'Kathleen', 'Griffiths', '', '', '', '', NULL, '', NULL, 'kgriffiths@cch.org', NULL, NULL, true, NULL, NULL, '', '2007-01-26', '2007-01-26', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5362, '2007-01-26', 'Kathleen', 'Wortham', '', '', '', '', NULL, '', NULL, 'khallett77@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-01-26', '2007-01-26', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5363, '2007-01-26', 'Kim', 'Offenburger', '', '', '', '', NULL, '', NULL, 'kimoff@hcis.net', NULL, NULL, true, NULL, NULL, '', '2007-01-26', '2007-01-26', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5364, '2007-01-26', 'Kristen', 'Yakamovich', '', '', '', '', NULL, '', NULL, 'kmyakamovich@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-01-26', '2007-01-26', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5366, '2007-01-26', 'Kevin', 'Smith', '', '', '', '', NULL, '', NULL, 'kpsmith01@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-01-26', '2007-01-26', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5367, '2007-01-26', 'Michelle', 'Nelson', '', '', '', '', NULL, '', NULL, 'krinel@umich.edu', NULL, NULL, true, NULL, NULL, '', '2007-01-26', '2007-01-26', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5355, '2007-01-23', 'Kim', 'Bell', '', '', '', '', NULL, '', NULL, 'kim@reptileindustries.com ', NULL, NULL, true, NULL, NULL, '', '2007-01-23', '2007-01-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5369, '2007-01-26', 'Leo', 'Marcy', '', '', '', '', NULL, '', NULL, 'l.marcy@att.net', NULL, NULL, true, NULL, NULL, '', '2007-01-26', '2007-01-26', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5389, '2007-01-27', 'Joe', 'Milauckas', '', '', '', '', NULL, '', NULL, 'lsr@wmol.com', NULL, NULL, false, NULL, NULL, '', '2007-01-27', '2007-01-27', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5371, '2007-01-26', 'Stephen', 'LaCommare', '', '', '', '', NULL, '', NULL, 'lacommare@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-01-26', '2007-01-26', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8270, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'karencolvill@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8764, '2009-10-16', 'Doug', 'Burkholder', '', '', '', '', NULL, '', NULL, 'dougburkholder@ymail.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-16', '2009-10-16', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5376, '2007-01-26', 'James', 'Lee', '', '', '', '', NULL, '', NULL, 'leemar@chartermi.net', NULL, NULL, true, NULL, NULL, '', '2007-01-26', '2007-01-26', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5377, '2007-01-26', 'Denise', 'Arnos', '', '', '', '', NULL, '', NULL, 'lettersrbest@buckeye-express.com', NULL, NULL, true, NULL, NULL, '', '2007-01-26', '2007-01-26', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8335, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'mg_neumayr@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5382, '2007-01-26', 'Lisa', 'Grieb', '', '', '', '', NULL, '', NULL, 'lisagrieb@wowway.com', NULL, NULL, true, NULL, NULL, '', '2007-01-26', '2007-01-26', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5384, '2007-01-26', 'Laurie', 'Banks', '', '', '', '', NULL, '', NULL, 'ljbanks1012@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-01-26', '2007-01-26', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5385, '2007-01-26', 'Laura', 'Marchin', '', '', '', '', NULL, '', NULL, 'lmarchin@donerus.com', NULL, NULL, true, NULL, NULL, '', '2007-01-26', '2007-01-26', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5387, '2007-01-26', 'Linda', 'Barbour', '', '', '', '', NULL, '', NULL, 'lsbarbour@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-26', '2007-01-26', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5391, '2007-01-27', 'Leila', 'Weber', '', '', '', '', NULL, '', NULL, 'lweber@pennlife.com', NULL, NULL, true, NULL, NULL, '', '2007-01-27', '2007-01-27', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5392, '2007-01-27', 'Lauren', 'Wood', '', '', '', '', NULL, '', NULL, 'lwood@ci.birmingham.mi.us', NULL, NULL, true, NULL, NULL, '', '2007-01-27', '2007-01-27', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5394, '2007-01-27', 'Melissa', 'Bistodeau', '', '', '', '', NULL, '', NULL, 'mabistodeau@msn.com', NULL, NULL, true, NULL, NULL, '', '2007-01-27', '2007-01-27', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5397, '2007-01-27', 'Margaret', 'Brouwer', '', '', '', '', NULL, '', NULL, 'margaretbr20@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-01-27', '2007-01-27', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5398, '2007-01-27', 'Mary Beth', 'Accivatti', '', '', '', '', NULL, '', NULL, 'maryba@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2007-01-27', '2007-01-27', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8773, '2009-10-20', 'David', 'Decaminada', '', '', '', '', NULL, '', NULL, 'decon52@hotmail.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5400, '2007-01-27', 'Margret', 'Biggs', '', '', '', '', NULL, '', NULL, 'mbiggs206@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-01-27', '2007-01-27', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8435, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'spearritt@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5402, '2007-01-27', 'Mary ', 'Fedewa', '', '', '', '', NULL, '', NULL, 'mbthomas21@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-01-27', '2007-01-27', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5404, '2007-01-27', 'Debra', 'McKeown', '', '', '', '', NULL, '', NULL, 'mckeowns@voyager.net', NULL, NULL, true, NULL, NULL, '', '2007-01-27', '2007-01-27', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5405, '2007-01-27', 'Maureen', 'Thorrez', '', '', '', '', NULL, '', NULL, 'mcthorrez@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-01-27', '2007-01-27', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5407, '2007-01-27', 'Michelle', 'Wolfe', '', '', '', '', NULL, '', NULL, 'michellerwolfe@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-01-27', '2007-01-27', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5408, '2007-01-27', 'Michelle ', 'Williams', '', '', '', '', NULL, '', NULL, 'michwill01@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-01-27', '2007-01-27', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8506, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'youngsha63@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5409, '2007-01-27', 'Gregory', 'Hickerson', '', '', '', '', NULL, '', NULL, 'mikefirefightermedic@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-01-27', '2007-01-27', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5410, '2007-01-27', 'Mike', 'Weber', '', '', '', '', NULL, '', NULL, 'mikejweber@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-01-27', '2007-01-27', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5428, '2007-01-28', 'Dawn', 'Hovie', '', '', '', '', NULL, '', NULL, 'patoonya@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-01-28', '2007-01-28', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5412, '2007-01-27', 'Mike & Kathy', 'Haist', '', '', '', '', NULL, '', NULL, 'mjhaist@wowway.com', NULL, NULL, true, NULL, NULL, '', '2007-01-27', '2007-01-27', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5413, '2007-01-27', 'Mark', 'Kehlenbeck', '', '', '', '', NULL, '', NULL, 'mkehlenbeck@delfield.com', NULL, NULL, true, NULL, NULL, '', '2007-01-27', '2007-01-27', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5416, '2007-01-28', 'Melissa', 'Mozdzen', '', '', '', '', NULL, '', NULL, 'mmozdzen@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-01-28', '2007-01-28', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5421, '2007-01-28', 'Manoj', 'Sharma', '', '', '', '', NULL, '', NULL, 'msharma1111@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-01-28', '2007-01-28', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5422, '2007-01-28', 'Natalie', 'Williams', '', '', '', '', NULL, '', NULL, 'nnngrier@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-28', '2007-01-28', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5450, '2007-01-28', 'Richard', 'Bragaw', '', '', '', '', NULL, '', NULL, 'rbragaw@bragawpr.com', NULL, NULL, true, NULL, NULL, '', '2007-01-28', '2007-01-28', '', ':3:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5427, '2007-01-28', 'Peter', 'Ellis', '', '', '', '', NULL, '', NULL, 'Paellis20@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-28', '2007-01-28', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8028, '2009-05-22', 'Bill', 'Steffes', '', '', '', '', NULL, '', NULL, 'bill.steffes@accessbusinessgroup.com', NULL, NULL, true, NULL, NULL, '', '2009-05-22', '2009-05-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5429, '2007-01-28', 'Pat', 'Doyle', '', '', '', '', NULL, '', NULL, 'patrick.doyle@lpl.com', NULL, NULL, true, NULL, NULL, '', '2007-01-28', '2007-01-28', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5430, '2007-01-28', 'Jennifer', 'Patton', '', '', '', '', NULL, '', NULL, 'patton1193@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-28', '2007-01-28', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5433, '2007-01-28', 'Robert', 'Summers', '', '', '', '', NULL, '', NULL, 'paulasummers@charter.net', NULL, NULL, true, NULL, NULL, '', '2007-01-28', '2007-01-28', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5434, '2007-01-28', 'Lorriane', 'Brugger', '', '', '', '', NULL, '', NULL, 'pbrugger11@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-01-28', '2007-01-28', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5437, '2007-01-28', 'Robert', 'Penrod', '', '', '', '', NULL, '', NULL, 'penrodr@gdls.com', NULL, NULL, true, NULL, NULL, '', '2007-01-28', '2007-01-28', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5438, '2007-01-28', 'Bill', 'Perod', '', '', '', '', NULL, '', NULL, 'perodw@michigan.gov', NULL, NULL, true, NULL, NULL, '', '2007-01-28', '2007-01-28', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5439, '2007-01-28', 'Peggy', 'James', '', '', '', '', NULL, '', NULL, 'pjames@transunion.com', NULL, NULL, true, NULL, NULL, '', '2007-01-28', '2007-01-28', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5441, '2007-01-28', 'Pam', 'Hennig', '', '', '', '', NULL, '', NULL, 'plh04rome@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-01-28', '2007-01-28', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5442, '2007-01-28', 'Tom', 'Plodzeen', '', '', '', '', NULL, '', NULL, 'plodzeen@netscape.net', NULL, NULL, true, NULL, NULL, '', '2007-01-28', '2007-01-28', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5443, '2007-01-28', 'Paul', 'Padesky', '', '', '', '', NULL, '', NULL, 'ppadesky@gmail.com', NULL, NULL, true, NULL, NULL, '', '2007-01-28', '2007-01-28', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7822, '2009-02-04', 'Bonnie', 'Marszalek', '', '', '', '', NULL, '', NULL, 'bonnie60491@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-02-04', '2009-02-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5446, '2007-01-28', 'Todd', 'Mislan', '', '', '', '', NULL, '', NULL, 'queenjoan1@juno.com', NULL, NULL, true, NULL, NULL, '', '2007-01-28', '2007-01-28', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5448, '2007-01-28', 'Phil', 'Anderson', '', '', '', '', NULL, '', NULL, 'random_pja@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-01-28', '2007-01-28', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8117, '2009-06-03', '', '', '', '', '', '', NULL, '', NULL, 'bpdroste@stgerard.org', NULL, NULL, true, NULL, NULL, '', '2009-06-03', '2009-06-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5451, '2007-01-28', 'Ron', 'Breitner', '', '', '', '', NULL, '', NULL, 'rbrite@wowway.com', NULL, NULL, true, NULL, NULL, '', '2007-01-28', '2007-01-28', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5452, '2007-01-28', 'Russ', 'Cooper', '', '', '', '', NULL, '', NULL, 'rcoopcal@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-28', '2007-01-28', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5455, '2007-01-28', 'Debra', 'Simpson', '', '', '', '', NULL, '', NULL, 'rdkcs@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-28', '2007-01-28', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5456, '2007-01-28', 'Karen & Doug', 'Byers', '', '', '', '', NULL, '', NULL, 'redstealth32@wowway.com', NULL, NULL, true, NULL, NULL, '', '2007-01-28', '2007-01-28', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5457, '2007-01-28', 'Thomas', 'Richardson', '', '', '', '', NULL, '', NULL, 'redbadger4@cox.net', NULL, NULL, true, NULL, NULL, '', '2007-01-28', '2007-01-28', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5458, '2007-01-28', 'Thomas ', 'Richardson', '', '', '', '', NULL, '', NULL, 'richardsonk_59@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-01-28', '2007-01-28', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5459, '2007-01-28', 'Rick', 'Popiolek', '', '', '', '', NULL, '', NULL, 'rick@danberry.com', NULL, NULL, true, NULL, NULL, '', '2007-01-28', '2007-01-28', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5460, '2007-01-28', 'Tina', 'Pyzik', '', '', '', '', NULL, '', NULL, 'rjntina2@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-01-28', '2007-01-28', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8206, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'guticcindy@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5464, '2007-01-28', 'Robert ', 'Powell', '', '', '', '', NULL, '', NULL, 'robert.powell@kohler.com', NULL, NULL, true, NULL, NULL, '', '2007-01-28', '2007-01-28', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5466, '2007-01-28', 'Cameron', 'Young', '', '', '', '', NULL, '', NULL, 'ronbrant@umich.edu', NULL, NULL, true, NULL, NULL, '', '2007-01-28', '2007-01-28', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5468, '2007-01-28', 'Rhonda', 'Penning', '', '', '', '', NULL, '', NULL, 'rpx2@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-01-28', '2007-01-28', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5470, '2007-01-28', 'Colbert ', 'Watson', '', '', '', '', NULL, '', NULL, 'russwatson9193360@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-01-28', '2007-01-28', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5471, '2007-01-28', 'Sandy', 'Angart', '', '', '', '', NULL, '', NULL, 'sangart@ameritech.net', NULL, NULL, true, NULL, NULL, '', '2007-01-28', '2007-01-28', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5472, '2007-01-28', 'David', 'Sansoterra', '', '', '', '', NULL, '', NULL, 'sansoterraDMSDN@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-28', '2007-01-28', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5476, '2007-01-28', 'Mary', 'Kretz', '', '', '', '', NULL, '', NULL, 'sewcrazy06@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-01-28', '2007-01-28', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5477, '2007-01-28', 'Stephen', 'Flechsig', '', '', '', '', NULL, '', NULL, 'sflechsig@mackadmin.com', NULL, NULL, true, NULL, NULL, '', '2007-01-28', '2007-01-28', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5479, '2007-01-28', 'David', 'Shawn', '', '', '', '', NULL, '', NULL, 'shawdave1@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-01-28', '2007-01-28', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5480, '2007-01-28', 'Shawn', 'Gaidis', '', '', '', '', NULL, '', NULL, 'shawn.gaidis@gmail.com', NULL, NULL, true, NULL, NULL, '', '2007-01-28', '2007-01-28', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5482, '2007-01-28', 'Sheila', 'Joki', '', '', '', '', NULL, '', NULL, 'sheila.joki@citigroup.com', NULL, NULL, true, NULL, NULL, '', '2007-01-28', '2007-01-28', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8271, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'karlotafun@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5484, '2007-01-28', 'Mark', 'Fetters', '', '', '', '', NULL, '', NULL, 'sherri.fetters@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2007-01-28', '2007-01-28', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5485, '2007-01-28', 'Stacie', 'Hurst', '', '', '', '', NULL, '', NULL, 'shurst2003@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-01-28', '2007-01-28', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5486, '2007-01-28', 'Crystal', 'Dean', '', '', '', '', NULL, '', NULL, 'sideburnsie@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-01-28', '2007-01-28', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5487, '2007-01-28', 'Denise', 'Simard', '', '', '', '', NULL, '', NULL, 'simardhouse@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-01-28', '2007-01-28', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5488, '2007-01-28', 'Thomas', 'Duvall', '', '', '', '', NULL, '', NULL, 'Skierbuddies@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-28', '2007-01-28', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5489, '2007-01-28', 'Lisa', 'Hanson', '', '', '', '', NULL, '', NULL, 'skipper380@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-28', '2007-01-28', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5490, '2007-01-28', 'Andrei', 'Slavin', '', '', '', '', NULL, '', NULL, 'slavin@oakland.edu', NULL, NULL, true, NULL, NULL, '', '2007-01-28', '2007-01-28', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5491, '2007-01-28', 'Stacy', 'Layman', '', '', '', '', NULL, '', NULL, 'slmlayman@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-01-28', '2007-01-28', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5493, '2007-01-28', 'Dru Anne', 'Smyth', '', '', '', '', NULL, '', NULL, 'smythfive@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-28', '2007-01-28', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5494, '2007-01-28', 'Qing', 'Chang', '', '', '', '', NULL, '', NULL, 'songwei_zhang@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-01-28', '2007-01-28', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7734, '2009-01-21', 'Bill', 'Yacullo', '', '', '', '', NULL, '', NULL, 'wyacullo@aol.com', NULL, NULL, true, 6, NULL, 'We had an enjoyable stay last August. What is the weekly rate for two large condos? Also did we leave a security deposit?\r
+Bill Yacullo', NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5496, '2007-01-28', 'Sue', 'Robell', '', '', '', '', NULL, '', NULL, 'srobell@med.wayne.edu', NULL, NULL, true, NULL, NULL, '', '2007-01-28', '2007-01-28', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7735, '2009-01-26', 'Jan', 'Buchanen', '', '', '', '', NULL, '', NULL, 'janbucha@umich.edu', NULL, NULL, true, NULL, NULL, '', '2009-01-26', '2009-01-26', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5501, '2007-01-29', 'Sue', 'Johnson', '', '', '', '', NULL, '', NULL, 'suejohnson12345@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-01-29', '2007-01-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5502, '2007-01-29', 'Dan', 'Suiter', '', '', '', '', NULL, '', NULL, 'suiter@ugs.com', NULL, NULL, true, NULL, NULL, '', '2007-01-29', '2007-01-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5503, '2007-01-29', 'Scott', 'Voss', '', '', '', '', NULL, '', NULL, 'svoss@vossins.com', NULL, NULL, true, NULL, NULL, '', '2007-01-29', '2007-01-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5504, '2007-01-29', 'Sandra', 'Walther', '', '', '', '', NULL, '', NULL, 'swalther6@cs.com', NULL, NULL, true, NULL, NULL, '', '2007-01-29', '2007-01-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8880, '2009-10-21', 'James', 'Turner', '', '', '', '', NULL, '', NULL, 'jturner@vistaurum.com', NULL, NULL, true, NULL, NULL, '', '2009-10-21', '2009-10-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5506, '2007-01-29', 'Matt', 'Manceau', '', '', '', '', NULL, '', NULL, 'tatankasquirrel@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-01-29', '2007-01-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5508, '2007-01-29', 'Chris', 'King', '', '', '', '', NULL, '', NULL, 'the4kings@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-01-29', '2007-01-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5512, '2007-01-29', 'Ursula', 'Thomas', '', '', '', '', NULL, '', NULL, 'ursulathomas@juno.com', NULL, NULL, true, NULL, NULL, '', '2007-01-29', '2007-01-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5514, '2007-01-29', 'Valerie', 'Carpenter', '', '', '', '', NULL, '', NULL, 'valerie.carpenter@eds.com', NULL, NULL, true, NULL, NULL, '', '2007-01-29', '2007-01-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8118, '2009-06-03', '', '', '', '', '', '', NULL, '', NULL, 'bradyfamily4@mac.com', NULL, NULL, true, NULL, NULL, '', '2009-06-03', '2009-06-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5516, '2007-01-29', 'Carla', 'Vaughn', '', '', '', '', NULL, '', NULL, 'vicupdate@earthlink.net', NULL, NULL, true, NULL, NULL, '', '2007-01-29', '2007-01-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5517, '2007-01-29', 'Kent ', 'Wallace', '', '', '', '', NULL, '', NULL, 'visionworks@chartermi.net', NULL, NULL, true, NULL, NULL, '', '2007-01-29', '2007-01-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5518, '2007-01-29', 'Victoria', 'Neville', '', '', '', '', NULL, '', NULL, 'vneville@techteam.com', NULL, NULL, true, NULL, NULL, '', '2007-01-29', '2007-01-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7823, '2009-02-04', 'Donna', 'Bourgoin', '', '', '', '', NULL, '', NULL, 'bourgoinfam8@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-02-04', '2009-02-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5522, '2007-01-29', 'Martha', 'Koch', '', '', '', '', NULL, '', NULL, 'warnermart@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-29', '2007-01-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5523, '2007-01-29', 'Chris', 'Hegele', '', '', '', '', NULL, '', NULL, 'wehegeles@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-01-29', '2007-01-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5525, '2007-01-29', 'Beverly', 'Darr', '', '', '', '', NULL, '', NULL, 'wjdarr@earthlink.net', NULL, NULL, true, NULL, NULL, '', '2007-01-29', '2007-01-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5526, '2007-01-29', 'Earle', 'Wolfs', '', '', '', '', NULL, '', NULL, 'wolfek@cablespeed.com', NULL, NULL, true, NULL, NULL, '', '2007-01-29', '2007-01-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5527, '2007-01-29', 'Windy', 'Ostrom', '', '', '', '', NULL, '', NULL, 'wostrom2@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-29', '2007-01-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5528, '2007-01-29', 'Yoon', 'Huh', '', '', '', '', NULL, '', NULL, 'yoonhuh@umich.edu', NULL, NULL, true, NULL, NULL, '', '2007-01-29', '2007-01-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5532, '2007-01-29', 'Jeff', 'Zimmer', '', '', '', '', NULL, '', NULL, 'zimprint@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-01-29', '2007-01-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5534, '2007-02-05', 'T.', 'DOnofrio', '16350 Bak Rd', 'Belleville', 'MI', '48111', NULL, '7344542411', NULL, 'cwa4050@yahoo.com', NULL, NULL, true, 8, 4, 'Need to know cost of 5 days lodging for 5-6 and if ski lift tickets are included, as well as which Ski hill the tickets are good at.  Can you let me know asap?', '2007-02-25', '2007-03-01', 'Pure Michigan eSpecials Newsletter', ':Ski Trip:Fall Color Tour:Biking:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7580, '2008-11-13', 'Jane', 'Beaudoin', '', '', '', '', NULL, '', NULL, 'jbeaudoi@eup.k12.mi.us', NULL, NULL, true, NULL, NULL, '', '2008-11-13', '2008-11-13', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5538, '2007-02-27', 'Daniel', '', '', '', '', '', NULL, '', NULL, 'dansandme@hotmail.com', NULL, NULL, true, 4, 1, 'We would like to bring our dog with us. Do you accept pets?  If so could you let me know which units we could do that with, and I will check out the condo online and call to make the reservation.  Thanks for your time', '2007-03-16', '2007-03-18', '', ':Ski Trip:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5539, '2007-03-09', 'Sarah', 'Siterlet', '475 Cherry', 'Troy', 'MI', '48083', NULL, '', NULL, 'ssiterlet@hotmail.com', NULL, NULL, false, 8, NULL, 'I am the PTO Treasurer for Morse Elementary School in Troy.  We are having our annual Sock Hop and Auction to raise funds for educational materials and resources on May 4, 2007.  We are looking for donations to Auction that night.  We are a non-profit organization with a tax ID.  I have a copy of the letter that I can send through email for your donation purposes.  Please let me know if you are able to donate to such a wonderful cause.\r
+\r
+Sincerely,\r
+\r
+Sarah Siterlet\r
+Morse Elementary PTO Treasurer\r
+Fundraising Parent\r
+', NULL, NULL, 'Michigan Travel Magazine', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5540, '2007-03-12', 'Rhett', 'Barnes', '', '', '', '', NULL, '', NULL, 'rhett_a_barnes@yahoo.com', NULL, NULL, true, 7, NULL, 'For Nickie:  Wanted to send my email address again as I''ve not received email with information as to how to apply my unused credit for reservation 74168 guest ID 34619 to a future reservation.  Thank you,\r
+Rhett A. Barnes', NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5541, '2007-03-26', 'Beth', 'Zaborney', '', '', '', '', NULL, '', NULL, 'bzaborney@wowway.com', NULL, NULL, true, NULL, NULL, '', '2007-03-26', '2007-03-26', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5544, '2007-03-26', 'Kim', 'Schryer', '', '', '', '', NULL, '', NULL, 'msugirly@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-03-26', '2007-03-26', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5545, '2007-03-26', 'Dale', 'Gonzales', '', '', '', '', NULL, '', NULL, 'dsgonzales@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-03-26', '2007-03-26', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5546, '2007-03-26', 'Charlotte', 'Cheslock', '', '', '', '', NULL, '', NULL, 'ch2rx@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-03-26', '2007-03-26', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5547, '2007-03-26', 'Nancy', 'Doran', '', '', '', '', NULL, '', NULL, 'mwdoran@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2007-03-26', '2007-03-26', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5549, '2007-03-26', 'Daniel', 'Komendera', '', '', '', '', NULL, '', NULL, 'skomendera@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-03-26', '2007-03-26', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5550, '2007-03-26', 'Connie', 'Minarik', '', '', '', '', NULL, '', NULL, 'connieminarik@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-03-26', '2007-03-26', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5551, '2007-03-26', 'Richard', 'O''Neill', '', '', '', '', NULL, '', NULL, 'oneillrjo@ameritech.net', NULL, NULL, true, NULL, NULL, '', '2007-03-26', '2007-03-26', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5552, '2007-03-26', 'Ron', 'Raade', '', '', '', '', NULL, '', NULL, 'rraade@ewgi.net', NULL, NULL, true, NULL, NULL, '', '2007-03-26', '2007-03-26', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5554, '2007-03-27', '', '', '', '', '', '', NULL, '', NULL, 'pjhumphrey80@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-03-27', '2007-03-27', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5435, '2007-01-28', 'Paul', 'Clements', '', '', '', '', NULL, '', NULL, 'olivepaste@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-01-28', '2007-01-28', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5555, '2007-03-27', 'Tina', 'Harrison', '', '', '', '', NULL, '', NULL, 'tharris1ma@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-03-27', '2007-03-27', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5556, '2007-03-27', 'Joan & Wayne', 'Richards', '', '', '', '', NULL, '', NULL, 'joanmrichards@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-03-27', '2007-03-27', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5557, '2007-03-27', 'Assunta', 'Benvenuto', '', '', '', '', NULL, '', NULL, 'mpquinto@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-03-27', '2007-03-27', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6185, '2007-09-28', 'WCCS Realty, LLC', '', '', '', '', '', NULL, '', NULL, 'ecpsbier@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7591, '2008-11-13', 'Jennifer ', 'Bell', '', '', '', '', NULL, '', NULL, 'mjbell@bbbmi.com', NULL, NULL, true, NULL, NULL, '', '2008-11-13', '2008-11-13', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9569, '2011-08-01', 'michael', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'mgtomaszewski@yahoo.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '71.10.18.20', true, 6, 3, NULL, '2011-08-13', '2011-08-20', NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5559, '2007-04-05', 'Stephanie', '', '', '', '', '', NULL, '', NULL, 'mwolf10@charter.net', NULL, NULL, true, 8, NULL, 'I am looking for enought condos for 5 families for the Petoskey soccer tournament.  Do you have any available?', '2007-06-15', '2007-06-17', '', ':Soccer Weekend:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5560, '2007-04-23', 'Michael', 'LaLonde', '', '', '', '', NULL, '', NULL, 'mjlalonde@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-04-23', '2007-04-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5561, '2007-04-23', 'Penny', 'Peifer', '', '', '', '', NULL, '', NULL, 'ppeifer@cogeco.ca', NULL, NULL, true, NULL, NULL, '', '2007-04-23', '2007-04-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5562, '2007-04-23', 'Monika', 'Kairouz', '', '', '', '', NULL, '', NULL, 'monika@beddingtons.com', NULL, NULL, true, NULL, NULL, '', '2007-04-23', '2007-04-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5563, '2007-04-23', 'Joe ', 'Martin', '', '', '', '', NULL, '', NULL, 'lmartin12@columbus.rr.com', NULL, NULL, true, NULL, NULL, '', '2007-04-23', '2007-04-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5564, '2007-05-01', 'WILLIAM', 'KETTMAN', '606 RAVINIA DR', 'SHOREWOOD', 'IL', '60404', NULL, '8157442902', NULL, 'BONESMAGE@SBCGLOBAL.NET', NULL, NULL, true, 6, 1, 'THERE WOULD BE 3 ADULTS ONE JUNIOR 16,THE JUNIOR AND ONE ADULT GOLFING 4 ROUNDS, COULD YOU GIVE A TOTAL PACKAGE PRICE, AND WHAT ACTIVITIES WOULD YOU HAVE FOR MY WIFE AND MOTHER-IM LAW TO DO DURING THE DAY.ALSO DO THE UNITS HAVE DECKS TO LAY OUT IN THE SUN THANKS FOR YOUR HELP.', '2007-06-03', '2007-06-08', '', ':Pleasure Vacation:Big 4 Golf Package:Family vacation:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9328, '2010-03-16', 'Kerry', 'Voorhees', '', '', '', '', NULL, '', NULL, 'kerryTv8@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2010-03-16', '2010-03-16', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5567, '2007-05-18', 'Church', 'Village', '', '', '', '', NULL, '', NULL, '417bruce@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-05-18', '2007-05-18', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5568, '2007-05-18', 'Sheryl', 'McGrath', '', '', '', '', NULL, '', NULL, '5mcgraths@ameritech.net', NULL, NULL, true, NULL, NULL, '', '2007-05-18', '2007-05-18', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8029, '2009-05-22', 'John', 'Flannery', '', '', '', '', NULL, '', NULL, 'flanman@cablespeed.com', NULL, NULL, true, NULL, NULL, '', '2009-05-22', '2009-05-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5572, '2007-05-18', 'Aaron', 'Wisniewski', '', '', '', '', NULL, '', NULL, 'aawisnie@gmail.com', NULL, NULL, true, NULL, NULL, '', '2007-05-18', '2007-05-18', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5573, '2007-05-18', 'Ann', 'Alexopoulos', '', '', '', '', NULL, '', NULL, 'acube15@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-05-18', '2007-05-18', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5574, '2007-05-18', 'Dick', 'Adams', '', '', '', '', NULL, '', NULL, 'adamsd@graphicpkg.com', NULL, NULL, true, NULL, NULL, '', '2007-05-18', '2007-05-18', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5576, '2007-05-18', 'Amy', 'Grake', '', '', '', '', NULL, '', NULL, 'agrake26.2@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-05-18', '2007-05-18', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5577, '2007-05-18', 'Scott ', 'Wickson', '', '', '', '', NULL, '', NULL, 'ahcsswickson@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-05-18', '2007-05-18', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5578, '2007-05-18', 'Anne', 'Heise', '', '', '', '', NULL, '', NULL, 'aheise@wccnet.org', NULL, NULL, true, NULL, NULL, '', '2007-05-18', '2007-05-18', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5579, '2007-05-18', 'Diana', 'Pessina', '', '', '', '', NULL, '', NULL, 'aketels@msn.com', NULL, NULL, true, NULL, NULL, '', '2007-05-18', '2007-05-18', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5580, '2007-05-18', 'Adam', 'Lis', '', '', '', '', NULL, '', NULL, 'alis@tm.net', NULL, NULL, true, NULL, NULL, '', '2007-05-18', '2007-05-18', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5581, '2007-05-18', 'Dave', 'Lucas', '', '', '', '', NULL, '', NULL, 'alucas@new.rr.com', NULL, NULL, true, NULL, NULL, '', '2007-05-18', '2007-05-18', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5582, '2007-05-22', 'Tina', 'Konke', '', '', '', '', NULL, '', NULL, 'tinamkonke@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-05-22', '2007-05-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5584, '2007-05-22', 'Mike', 'Barkman', '', '', '', '', NULL, '', NULL, 'barkman.mike@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2007-05-22', '2007-05-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5585, '2007-05-22', 'Joel', 'Webb', '', '', '', '', NULL, '', NULL, 'mendywebb@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-05-22', '2007-05-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5586, '2007-05-22', 'Lisa', 'Damone', '', '', '', '', NULL, '', NULL, 'ltdamone@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-05-22', '2007-05-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5590, '2007-05-22', 'Lynne ', 'Mills', '', '', '', '', NULL, '', NULL, 'jakelukecameron@gmail.com', NULL, NULL, true, NULL, NULL, '', '2007-05-22', '2007-05-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8207, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'hendricksong@marsusa.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8272, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'karstenfun@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5595, '2007-05-22', 'Loren', 'Crandell', '', '', '', '', NULL, '', NULL, 'alainacrandell@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-05-22', '2007-05-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5596, '2007-05-22', 'Lisa', 'Bell', '', '', '', '', NULL, '', NULL, 'wilimor@shaw.ca', NULL, NULL, true, NULL, NULL, '', '2007-05-22', '2007-05-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5597, '2007-05-22', 'Laura', 'Walworth', '', '', '', '', NULL, '', NULL, 'laurielw@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-05-22', '2007-05-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5599, '2007-05-22', 'Tom', 'Gearhart', '', '', '', '', NULL, '', NULL, 'tom.gearhart@nmfn.com', NULL, NULL, true, NULL, NULL, '', '2007-05-22', '2007-05-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5602, '2007-05-22', 'Rich', 'Borgetti', '', '', '', '', NULL, '', NULL, 'richborgetti@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2007-05-22', '2007-05-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5603, '2007-05-22', 'Jeff', 'Ziulkowski', '', '', '', '', NULL, '', NULL, 'jziu@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-05-22', '2007-05-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5606, '2007-05-22', 'Esther', 'Wolfe', '', '', '', '', NULL, '', NULL, 'ejre@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2007-05-22', '2007-05-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5609, '2007-05-22', 'Gary', 'Miller', '', '', '', '', NULL, '', NULL, 'fsabre@charter.net', NULL, NULL, true, NULL, NULL, '', '2007-05-22', '2007-05-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5610, '2007-05-22', 'Peggy', 'McBrien', '', '', '', '', NULL, '', NULL, 'peggy@schummersskishop.com', NULL, NULL, true, NULL, NULL, '', '2007-05-22', '2007-05-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5611, '2007-05-22', 'Annette', 'Whitman', '', '', '', '', NULL, '', NULL, 'adwhitman@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2007-05-22', '2007-05-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5612, '2007-05-22', 'Carl', 'Williams', '', '', '', '', NULL, '', NULL, 'rcwilliams@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2007-05-22', '2007-05-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5613, '2007-05-22', 'Mike', 'Hecker', '', '', '', '', NULL, '', NULL, 'mhecker101@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-05-22', '2007-05-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5614, '2007-05-24', 'Devon', 'Mehl', '34253 Parkgrove Dr. ', 'Westland', 'MI', '48185-1457', NULL, '734-522-9612', NULL, 'drmehl@aol.com', NULL, NULL, true, 9, NULL, 'Need to cancel reservation #74597\r
+Guest ID# 34785', NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5615, '2007-05-25', 'Nicholas', 'May', '', '', '', '', NULL, '250 753 7200', NULL, 'Nick@realestatewebmasters.com', NULL, NULL, true, 6, NULL, 'Hello,\r
+\r
+My name is Nick May. I am a Link Builder for Real Estate Webmasters. I am emailing you today to introduce a new system we have developed, based on contextual-quality links. This system is designed to put more focus on a fewer amount of links, as they would be located on pages full of content, relative to the site.\r
+\r
+Instead of having links placed in directories, 5 links will be placed on an already established contextually relevant page. You add 5 of our clients to one of your content pages and in return, we will add your site to each of those client’s sites, on a content filled page.\r
+\r
+This is just an introductory email to let you know a little bit about it. This system is working for our clients and I have some examples to show you, if you’re interested. Email me back and I will fill you in with all the information you need. \r
+\r
+Thanks for taking the time to read this. I hope you will take part in this excellent new program. \r
+\r
+Take Care!\r
+', NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8336, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'mhegel_98@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7736, '2009-01-26', 'Miriam', 'Gallagher', '', '', '', '', NULL, '', NULL, 'gallagher20@fuse.net', NULL, NULL, true, NULL, NULL, '', '2009-01-26', '2009-01-26', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5618, '2007-06-04', 'Cindy', 'Vickery', '', '', '', '', NULL, '', NULL, 'vickfam@charter.net', NULL, NULL, false, 2, NULL, 'We are staying at Trout Creek during the Petoskey Tournament.  Are there grills available near the units?  We would like to have a team party there.\r
+\r
+Thanks!', NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5620, '2007-06-24', 'tim', '', '', '', '', '', NULL, '', NULL, 'tjoseph@aptechnologies.com', NULL, NULL, true, 9, NULL, 'interested in special golf package for 4-5 golfers for 2-3 rounds while at TC Aug 11-18 with family', NULL, NULL, '', ':Big 4 Golf Package:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9329, '2010-03-16', 'Judie', 'Dobroc', '', '', '', '', NULL, '', NULL, 'blondie347455@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2010-03-16', '2010-03-16', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5622, '2007-07-09', 'Ann', 'Barker', '', '', '', '', NULL, '', NULL, 'amb4735@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5624, '2007-07-09', 'Andrea', 'Knab', '', '', '', '', NULL, '', NULL, 'andaalk@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8120, '2009-06-03', '', '', '', '', '', '', NULL, '', NULL, 'brewbikeski@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-03', '2009-06-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5627, '2007-07-09', 'Ann', 'Thomas', '', '', '', '', NULL, '', NULL, 'annthomas@esacredheart.org', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5628, '2007-07-09', 'Art', 'Jennings', '', '', '', '', NULL, '', NULL, 'art.r.jennings@sympatico.ca', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5629, '2007-07-09', 'Atsuko', 'Chapman', '', '', '', '', NULL, '', NULL, 'atsukochap7@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8208, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'hicksfamily@centurytel.net', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8273, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'kathietown@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5633, '2007-07-09', 'Ben', 'Pauzus', '', '', '', '', NULL, '', NULL, 'ben.pauzus@bilsing-automation.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5635, '2007-07-09', 'Liz', 'Morton', '', '', '', '', NULL, '', NULL, 'bobreeb@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5637, '2007-07-09', 'Bryan', 'Pepp', '', '', '', '', NULL, '', NULL, 'bryan@peppmotors.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5638, '2007-07-09', 'Cindy', 'Ayers', '', '', '', '', NULL, '', NULL, 'bshardacre@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5639, '2007-07-09', 'Susan', 'Krick', '', '', '', '', NULL, '', NULL, 'bskrick@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5640, '2007-07-09', 'Beverly', 'Spicknall', '', '', '', '', NULL, '', NULL, 'bspicknall@new.rr.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5646, '2007-07-09', 'Christy', 'Baker', '', '', '', '', NULL, '', NULL, 'cbaker@michiganpga.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5647, '2007-07-09', 'Cindy', 'Cesario', '', '', '', '', NULL, '', NULL, 'ccesario@oldmissionwindows.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8560, '2009-07-17', 'Rick', 'Poole', '', '', '', '', NULL, '', NULL, 'bumperpoole@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5652, '2007-07-09', 'Cheryl', 'Burt', '', '', '', '', NULL, '', NULL, 'cheryl.burt@eaglegroupusa.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5653, '2007-07-09', 'Richard', 'Markley', '', '', '', '', NULL, '', NULL, 'chip.boat1952@verizon.net', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5654, '2007-07-09', 'Chris', 'Bishop', '', '', '', '', NULL, '', NULL, 'chrisbish7@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5655, '2007-07-09', 'Christopher', 'O''Connor', '', '', '', '', NULL, '', NULL, 'chrisoconnor2@earthlink.net', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5656, '2007-07-09', 'Christine', 'Cullen', '', '', '', '', NULL, '', NULL, 'christinecullen@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5657, '2007-07-09', 'Tom', 'Colville', '', '', '', '', NULL, '', NULL, 'cjcolv@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8391, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'rlramirez@comerica.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8436, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'sportute@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5665, '2007-07-09', 'Carol', 'Coury', '', '', '', '', NULL, '', NULL, 'couryfam@ameritech.net', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5666, '2007-07-09', 'Mike', 'Trombley', '', '', '', '', NULL, '', NULL, 'cows@voyager.net', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5667, '2007-07-09', 'Charles', 'Thomson', '', '', '', '', NULL, '', NULL, 'ctstnt@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8751, '2009-10-16', 'Bert', 'Shuert', '', '', '', '', NULL, '', NULL, 'ebshuert@comcast.net ', NULL, NULL, true, NULL, NULL, '', '2009-10-16', '2009-10-16', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8507, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'yountssa@muohio.edu', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5702, '2007-07-09', 'Eric', 'Steinwascher', '', '', '', '', NULL, '', NULL, 'eric@nationalconeyisland.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5672, '2007-07-09', 'Daniel', 'Cook', '', '', '', '', NULL, '', NULL, 'dancook1@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5673, '2007-07-09', 'Daniel', 'Komendera', '', '', '', '', NULL, '', NULL, 'danokomendera@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5674, '2007-07-09', 'Daniel', 'Scott', '', '', '', '', NULL, '', NULL, 'danscott@mergisgroup.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5675, '2007-07-09', 'Lisa', 'Davani', '', '', '', '', NULL, '', NULL, 'davanilm@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5676, '2007-07-09', 'Dave', 'Lucas', '', '', '', '', NULL, '', NULL, 'dave@americanvideoandsecurity.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8765, '2009-10-16', 'Don', 'Cahoon', '', '', '', '', NULL, '', NULL, 'itsue2002@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-10-16', '2009-10-16', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5678, '2007-07-09', 'David', 'Young', '', '', '', '', NULL, '', NULL, 'davidkarri@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8512, '2009-06-15', 'Maria', 'Aguilera', '17252 Arlington Ave', 'Allen Park', 'MI', '48101', NULL, '313-399-8541', NULL, 'maguile8@ford.com', NULL, NULL, true, NULL, NULL, '', '2009-06-15', '2009-06-15', '', ':3:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5680, '2007-07-09', 'MAC10 Ski Group', '', '', '', '', '', NULL, '', NULL, 'ddwomack@aaamichigan.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5682, '2007-07-09', 'David', 'Mengebier', '', '', '', '', NULL, '', NULL, 'dgmengebier@cmsenergy.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5683, '2007-07-09', 'Alex', 'Gyemi', '', '', '', '', NULL, '', NULL, 'dialgy@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5684, '2007-07-09', 'Harold', 'Dickieson', '', '', '', '', NULL, '', NULL, 'dickie07@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5685, '2007-07-09', 'Debra', 'Adams', '', '', '', '', NULL, '', NULL, 'dkaadams@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5686, '2007-07-09', 'Donald', 'McCan', '', '', '', '', NULL, '', NULL, 'dmccan@marshallremc.coop', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5688, '2007-07-09', 'Chrstine', 'Bertram', '', '', '', '', NULL, '', NULL, 'docbertram@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5689, '2007-07-09', 'Michael', 'Manley', '', '', '', '', NULL, '', NULL, 'doozhee@chartermi.net', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8591, '2009-07-17', 'James', 'Tousignant', '', '', '', '', NULL, '', NULL, 'JTousign@dmc.org', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8608, '2009-07-17', 'Yvonne', 'Cherry', '', '', '', '', NULL, '', NULL, 'sonnycherry@mac.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5691, '2007-07-09', 'Susan', 'Richardson', '', '', '', '', NULL, '', NULL, 'dsglenarbor4@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7737, '2009-01-27', 'Lisa', 'Gross', '1522 Joy Ave.', 'Jackson', 'MI', '49203', NULL, '517-782-2551', NULL, 'lisamgross@comcast.net', NULL, NULL, false, 6, NULL, 'I work for a non-profit charity: Catholic Charities of Jackson County and we are looking for a resort that is willing to donate a weekend prize package for a raffle that we will be holding in August 2009.  ', NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5696, '2007-07-09', 'Cindy', 'Dupuis', '', '', '', '', NULL, '', NULL, 'dupes@brktel.on.ca', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5697, '2007-07-09', 'Eric', 'Dumire', '', '', '', '', NULL, '', NULL, 'eedumire@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5698, '2007-07-09', 'Elaine', 'Keiser', '', '', '', '', NULL, '', NULL, 'elaine@ekarchitect.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5699, '2007-07-09', 'Edward', 'Lennon', '', '', '', '', NULL, '', NULL, 'elennon@lennonlawpllc.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5703, '2007-07-09', 'Edward', 'Widlund', '', '', '', '', NULL, '', NULL, 'ewidlund@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7825, '2009-02-04', 'David', 'Barnett', '', '', '', '', NULL, '', NULL, 'brbarnett2003@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-02-04', '2009-02-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5706, '2007-07-09', 'Garnet', 'Eckstrand', '', '', '', '', NULL, '', NULL, 'garnet@eckstrand.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5707, '2007-07-09', 'James', 'Brusstar', '', '', '', '', NULL, '', NULL, 'gbrusstar@gmail.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5708, '2007-07-09', 'Regina', 'Bruttell', '', '', '', '', NULL, '', NULL, 'gerinab@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5709, '2007-07-09', 'Greg', 'Walters', '', '', '', '', NULL, '', NULL, 'glwalt@gmail.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5710, '2007-07-09', 'Dana', 'Rutland', '', '', '', '', NULL, '', NULL, 'grutland@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5712, '2007-07-09', 'Gregory', 'Topp', '', '', '', '', NULL, '', NULL, 'gtopp@wideopenwest.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5713, '2007-07-09', 'Cathy', 'Gilbert', '', '', '', '', NULL, '', NULL, 'hairsense1@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5714, '2007-07-09', 'Heidi', 'Kapsokavathis', '', '', '', '', NULL, '', NULL, 'hikeannie@wowway.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7911, '2009-02-16', 'David', 'Sholly', '', '', '', '', NULL, '', NULL, 'davidrsholly@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-02-16', '2009-02-16', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5717, '2007-07-09', 'Tim', 'Hollis', '', '', '', '', NULL, '', NULL, 'hollisti@msu.edu', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5718, '2007-07-09', 'Janet', 'Tice', '', '', '', '', NULL, '', NULL, 'htice@columbus.rr.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5720, '2007-07-09', 'Brett', 'Cuper', '', '', '', '', NULL, '', NULL, 'jacuper@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5721, '2007-07-09', 'Jamye', 'Olthoff', '', '', '', '', NULL, '', NULL, 'jamyejoy@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5723, '2007-07-09', 'Jeanine', 'Holderead', '', '', '', '', NULL, '', NULL, 'jeanineholderead@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5724, '2007-07-09', 'Jeff', 'Hackett', '', '', '', '', NULL, '', NULL, 'jeffjhack@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5726, '2007-07-09', 'Jennifer', 'Schmidt', '', '', '', '', NULL, '', NULL, 'jenniferlynnschmidt@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5728, '2007-07-09', 'Jim', 'Beck', '', '', '', '', NULL, '', NULL, 'jim.beck@dowcorning.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5729, '2007-07-09', 'Jim', 'Streeter', '', '', '', '', NULL, '', NULL, 'jim.streeter@emich.edu', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5730, '2007-07-09', 'Nina', 'McIntyre', '', '', '', '', NULL, '', NULL, 'jimandninamac@wowway.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5731, '2007-07-09', 'Jimena', 'Loveluck', '', '', '', '', NULL, '', NULL, 'jimena@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5732, '2007-07-09', 'Jim', 'Jax', '', '', '', '', NULL, '', NULL, 'jimjax@wowway.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5733, '2007-07-09', 'Jennifer', 'Gruber', '', '', '', '', NULL, '', NULL, 'jjgruber@wideopenwest.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5734, '2007-07-09', 'John', 'Margle', '', '', '', '', NULL, '', NULL, 'jmarg51@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8752, '2009-10-16', 'Dave', 'Anderson', '', '', '', '', NULL, '', NULL, 'tad94@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-10-16', '2009-10-16', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5736, '2007-07-09', 'John', 'Millerschin', '', '', '', '', NULL, '', NULL, 'jmillerschin@auto-pr.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8121, '2009-06-03', '', '', '', '', '', '', NULL, '', NULL, 'brian.hodek@kellogg.com', NULL, NULL, true, NULL, NULL, '', '2009-06-03', '2009-06-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5738, '2007-07-09', 'Julia', 'Totoraitis', '', '', '', '', NULL, '', NULL, 'jmtotoraitis@oagr.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5739, '2007-07-09', 'Tamara', 'Siddall', '', '', '', '', NULL, '', NULL, 'jojosid@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5740, '2007-07-09', 'Marie Joyce', 'Chhun', '', '', '', '', NULL, '', NULL, 'joyce_chhun@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5741, '2007-07-09', 'John', 'Lindow', '', '', '', '', NULL, '', NULL, 'jplindow@mac.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5743, '2007-07-09', 'James', 'Pratt', '', '', '', '', NULL, '', NULL, 'jpratt0128@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8209, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'hkleyn@grcc.edu', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5746, '2007-07-09', 'Jonathan', 'Finch', '', '', '', '', NULL, '', NULL, 'jtfinch@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5747, '2007-07-09', 'Jennifer', 'Lovell', '', '', '', '', NULL, '', NULL, 'jtlovell@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5749, '2007-07-09', 'Kenneth', 'Brzozowski', '', '', '', '', NULL, '', NULL, 'k2brzozowski@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5750, '2007-07-09', 'Kimberley', 'Rose', '', '', '', '', NULL, '', NULL, 'kar03akr04@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5789, '2007-07-09', 'Nicole', 'Cobe', '', '', '', '', NULL, '', NULL, 'ncobe@alphacomm.net', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5754, '2007-07-09', 'Kelly', 'Sprague', '', '', '', '', NULL, '', NULL, 'kel267@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5755, '2007-07-09', 'Kelly ', 'Bagnall', '', '', '', '', NULL, '', NULL, 'kelly.bagnall@amseco.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5756, '2007-07-09', 'Kevin', 'Hodgins', '', '', '', '', NULL, '', NULL, 'kevin.hodgins@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8274, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'kathy_mcdonald@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5758, '2007-07-09', 'Kevin', 'Kott', '', '', '', '', NULL, '', NULL, 'kkott@dspaceinc.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5762, '2007-07-09', 'Lang', 'Balazer', '', '', '', '', NULL, '', NULL, 'lang_m_balazer@whirlpool.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8766, '2009-10-16', 'Mike', 'Calvert', '', '', '', '', NULL, '', NULL, 'cmcalvert@roadrunner.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-16', '2009-10-16', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5765, '2007-07-09', 'Sandy', 'Little', '', '', '', '', NULL, '', NULL, 'littlejimsandy@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5766, '2007-07-09', 'Thomas', 'Forkin', '', '', '', '', NULL, '', NULL, 'ljforkin@wowway.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5768, '2007-07-09', 'Laura', 'Plischke', '', '', '', '', NULL, '', NULL, 'lplischke@bcbsm.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5770, '2007-07-09', 'Corey', 'Goodman', '', '', '', '', NULL, '', NULL, 'lvbuza@kalcounty.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5771, '2007-07-09', 'Amanda', 'Wolfbrandt', '', '', '', '', NULL, '', NULL, 'mandella@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5772, '2007-07-09', 'Michelle', 'Palmer', '', '', '', '', NULL, '', NULL, 'mandm5748@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5773, '2007-07-09', 'Randy', 'Heitz', '', '', '', '', NULL, '', NULL, 'maplelawn@myclearwave.net', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5775, '2007-07-09', 'Mark', 'Ruhala', '', '', '', '', NULL, '', NULL, 'mcruhala@msn.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5776, '2007-07-09', 'Kurt', 'Meador', '', '', '', '', NULL, '', NULL, 'meadorktpg1@netscape.net', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5777, '2007-07-09', 'Paul', 'Kozulis', '', '', '', '', NULL, '', NULL, 'melinda.kozulis@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5778, '2007-07-09', 'Matt', 'Funato', '', '', '', '', NULL, '', NULL, 'mfunato@yamaha.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5779, '2007-07-09', 'Michael', 'Gandham', '', '', '', '', NULL, '', NULL, 'mjgandham@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5780, '2007-07-09', 'Michelle', 'Knezek', '', '', '', '', NULL, '', NULL, 'mknezek@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5781, '2007-07-09', 'Kathy', 'Weaver', '', '', '', '', NULL, '', NULL, 'mkw003@wowway.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8881, '2009-10-22', 'Karl', 'Scott', '', '', '', '', NULL, '', NULL, 'scotts26@sbcglobal.net ', NULL, NULL, true, NULL, NULL, '', '2009-10-22', '2009-10-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5785, '2007-07-09', 'Mark', 'Misch', '', '', '', '', NULL, '', NULL, 'mmisch@aaahawk.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8561, '2009-07-17', 'Charles', 'Rieckhoff', '', '', '', '', NULL, '', NULL, 'ret08@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5787, '2007-07-09', 'Mary', 'Raftery', '', '', '', '', NULL, '', NULL, 'mrraftery@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7826, '2009-02-04', 'Brent', 'Crist', '', '', '', '', NULL, '', NULL, 'brentcrist@msn.com', NULL, NULL, true, NULL, NULL, '', '2009-02-04', '2009-02-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5790, '2007-07-09', 'Nedra', 'Lambert', '', '', '', '', NULL, '', NULL, 'nlambert@twp.independence.mi.us', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5791, '2007-07-09', 'Gloria', 'Esch', '', '', '', '', NULL, '', NULL, 'nyesch5@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5792, '2007-07-09', 'Nicolle', 'Zinck', '', '', '', '', NULL, '', NULL, 'nzinck@buckeye-express.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5793, '2007-07-09', 'Pat', 'Tasich', '', '', '', '', NULL, '', NULL, 'oakleaf7@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2432, '2004-10-22', 'Bob', 'Zaleski', '', '', '', '', NULL, '', NULL, 'r_zaleski@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', ':23:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5795, '2007-07-09', 'Patricia', 'Stroker', '', '', '', '', NULL, '', NULL, 'patriciastroker@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5796, '2007-07-09', 'Paul', 'Shaffstall', '', '', '', '', NULL, '', NULL, 'paulshaf@windstream.net', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5797, '2007-07-09', 'Paul', 'Twa', '', '', '', '', NULL, '', NULL, 'paultwa@charter.net', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5799, '2007-07-09', 'Janet', 'Piper', '', '', '', '', NULL, '', NULL, 'peterpiper@shaw.ca', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5800, '2007-07-09', 'Pandora', 'Knoy', '', '', '', '', NULL, '', NULL, 'pknoy@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5801, '2007-07-09', 'Stephen', 'Moore', '', '', '', '', NULL, '', NULL, 'pleasehelp990@gmail.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6225, '2007-09-28', 'Franz and Joan', 'Neubrecht', '', '', '', '', NULL, '', NULL, 'fneubrecht@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5803, '2007-07-09', 'Pete', 'Rieveley', '', '', '', '', NULL, '', NULL, 'prieveley@cogeco.ca', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5804, '2007-07-09', 'Paul', 'Whitecar', '', '', '', '', NULL, '', NULL, 'pwhitecar1@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5805, '2007-07-09', 'Julie', 'Orler', '', '', '', '', NULL, '', NULL, 'r_orler@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5806, '2007-07-09', 'Rachelle', 'Beale', '', '', '', '', NULL, '', NULL, 'rachelle.beale@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5807, '2007-07-09', 'Alison', 'Hildebrand', '', '', '', '', NULL, '', NULL, 'racy90@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9330, '2010-03-16', 'Carol', 'Knode', '', '', '', '', NULL, '', NULL, 'ob1and2@charter.net', NULL, NULL, true, NULL, NULL, '', '2010-03-16', '2010-03-16', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5809, '2007-07-09', 'Rhonda', 'Morin', '', '', '', '', NULL, '', NULL, 'rhondamorin12@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5810, '2007-07-09', 'Richard', 'McMullen', '', '', '', '', NULL, '', NULL, 'richard.mcmullen@wmich.edu', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5812, '2007-07-09', 'Richard', 'Moroso', '', '', '', '', NULL, '', NULL, 'rmoroso@shaw.ca', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5813, '2007-07-09', 'Rob', 'Perkins', '', '', '', '', NULL, '', NULL, 'robert.r.perkins@pfizer.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5814, '2007-07-09', 'Rob', 'Fazio', '', '', '', '', NULL, '', NULL, 'robfazio@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5818, '2007-07-09', 'Stacy', 'Gallagher', '', '', '', '', NULL, '', NULL, 'rst90@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5817, '2007-07-09', 'Sara', 'Stauffer', '', '', '', '', NULL, '', NULL, 'rsstauffer@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5788, '2007-07-09', 'Natalie', 'Pappalardo', '', '', '', '', NULL, '', NULL, 'nater1285@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5821, '2007-07-09', 'Steve', 'Cannon', '', '', '', '', NULL, '', NULL, 'scannon1554@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5822, '2007-07-09', 'Steven', 'Dalga', '', '', '', '', NULL, '', NULL, 'sdalga@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5823, '2007-07-09', 'Keith', 'Kallen', '', '', '', '', NULL, '', NULL, 'sdkallen@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5824, '2007-07-09', 'Seowook', 'Park', '', '', '', '', NULL, '', NULL, 'seowook@earthlink.net', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5802, '2007-07-09', 'Sue', 'Poirier', '', '', '', '', NULL, '', NULL, 'poirier3780@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5828, '2007-07-09', 'Simone', 'McFarlen', '', '', '', '', NULL, '', NULL, 'simone1988@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7912, '2009-02-16', 'Kristen', 'Keegstra', '', '', '', '', NULL, '', NULL, 'kristenkeeg@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-02-16', '2009-02-16', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5830, '2007-07-09', 'Stephen', 'Heisler', '', '', '', '', NULL, '', NULL, 'spheisler@ciaccess.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5831, '2007-07-09', 'Brian', 'Kelly', '', '', '', '', NULL, '', NULL, 'spk970@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5833, '2007-07-09', 'Nancy', 'Lopiccolo', '', '', '', '', NULL, '', NULL, 'spsnancyrn@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5835, '2007-07-09', 'Stephen', 'Kim', '', '', '', '', NULL, '', NULL, 'stevenskim@gmail.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7738, '2009-02-02', 'Richard ', 'Keyes', '', '', '', '', NULL, '', NULL, 'keyesjen@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-02-02', '2009-02-02', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5837, '2007-07-09', 'Deb', 'Sumner', '', '', '', '', NULL, '', NULL, 'sumnerd@westottawa.net', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5838, '2007-07-09', 'Susan', 'Schuster', '', '', '', '', NULL, '', NULL, 'susan.schuster@nationalcity.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5839, '2007-07-09', 'Susan', 'Bartush', '', '', '', '', NULL, '', NULL, 'susanbartush@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5840, '2007-07-09', 'Scott', 'Tarzwell', '', '', '', '', NULL, '', NULL, 'swtarz@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7913, '2009-02-16', 'Donald', 'McGee', '', '', '', '', NULL, '', NULL, 'mcgees@accesstoledo.com', NULL, NULL, true, NULL, NULL, '', '2009-02-16', '2009-02-16', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5842, '2007-07-09', 'Therese', 'Mianecki', '', '', '', '', NULL, '', NULL, 't.mianecki@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5843, '2007-07-09', 'Mary', 'Thoms', '', '', '', '', NULL, '', NULL, 'thomsmary@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5844, '2007-07-09', 'Marie', 'Tighe', '', '', '', '', NULL, '', NULL, 'tighe6@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5845, '2007-07-09', 'John Todd', 'Ralph', '', '', '', '', NULL, '', NULL, 'toddralph@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5846, '2007-07-09', 'Tom', 'Andrew', '', '', '', '', NULL, '', NULL, 'tomandrew@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5847, '2007-07-09', 'Tom', 'Fredericks', '', '', '', '', NULL, '', NULL, 'tomfredericks@cablespeed.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5850, '2007-07-09', 'Vincent', 'Pierik', '', '', '', '', NULL, '', NULL, 'v.pierik@idealtech.us', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5851, '2007-07-09', 'Jeff', 'VanLake', '', '', '', '', NULL, '', NULL, 'vanlake4@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5852, '2007-07-09', 'Rob', 'Vosler', '', '', '', '', NULL, '', NULL, 'velvajean3@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3946, '2006-04-18', 'Ruth', 'Braun', '', 'Ann Arbor', 'MI', '48104', NULL, '734-998-0594', NULL, 'ruthbbraun@gmail.com', NULL, NULL, true, NULL, NULL, '', '2006-04-18', '2006-04-18', '', ':23:', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5855, '2007-07-09', 'William', 'Solinski', '', '', '', '', NULL, '', NULL, 'wsollnn@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5856, '2007-07-10', 'Francis', 'Steiner', '2420 State Road', 'Hillsdale', 'MI', '49242', NULL, '517-437-3823', NULL, 'fxs@hillsdale.edu', NULL, NULL, true, 6, NULL, '', NULL, NULL, 'Please send information on your resort & properties', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5858, '2007-07-13', 'Robert', 'Blunden', '', '', '', '', NULL, '', NULL, 'clblunden@wowway.com', NULL, NULL, true, NULL, NULL, '', '2007-07-13', '2007-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5859, '2007-07-13', 'Kari', 'Routledge', '', '', '', '', NULL, '', NULL, 'routlek@walledlake.k12.mi.us', NULL, NULL, true, NULL, NULL, '', '2007-07-13', '2007-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5861, '2007-07-13', 'Claudia', 'Rodgers', '', '', '', '', NULL, '', NULL, 'roderinsurance@acd.net', NULL, NULL, true, NULL, NULL, '', '2007-07-13', '2007-07-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5862, '2007-07-19', 'Jessica', 'Boucher', '117 W. Stoddard Street', 'Charlotte', 'MI', '48813', NULL, '517-541-3094', NULL, 'jessicab@accidentfund.com', NULL, NULL, false, 6, NULL, 'Attempting to plan a family reunion for approx 170-200 people. Gathering window is between 6/15/09 and 8/15/09.  Reservations between 2 and 7 nights depending on the individual family.  Would require a meeting room large enough to accommodate a Saturday evening group dinner and presentation.  Please provide any available information including rate information.  Thank you for your assistance.', NULL, NULL, '', ':Family Reunion:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8562, '2009-07-17', 'Ned', 'Sokoloff', '', '', '', '', NULL, '', NULL, 'ned@specialtygroup.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5864, '2007-07-24', 'Brian', 'Fitzpatrick', '', '', '', '', NULL, '', NULL, 'Fitzpatrick.brian@towerautomotive.com', NULL, NULL, false, NULL, NULL, 'We''ll be there from 07-26 thru 07-30.  Can I get an internet connection somewhere at Trout Creek?', NULL, NULL, 'Internet availability', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5866, '2007-07-31', 'Ann', 'Hogan', '', '', '', '', NULL, '', NULL, 'hoganann44@hotmail.com', NULL, NULL, true, 8, 4, '', '2007-09-01', '2007-09-28', 'It is near our family''s home.', ':Family Reunion:Senior Packages:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5869, '2007-08-14', 'Kathleen', 'Gullette', '', '', '', '', NULL, '', NULL, 'dkgullette5@msn.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5870, '2007-08-14', 'Katie', '', '', '', '', '', NULL, '', NULL, 'katiemccrary1@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5871, '2007-08-14', 'Madeleine', 'Bowes', '', '', '', '', NULL, '', NULL, 'bowesam@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8123, '2009-06-03', '', '', '', '', '', '', NULL, '', NULL, 'brucerogers@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-03', '2009-06-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5874, '2007-08-14', 'Robert', 'Tomaszewski', '', '', '', '', NULL, '', NULL, 'sueto@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5875, '2007-08-14', 'Paige and Michael', 'Domzalski', '', '', '', '', NULL, '', NULL, 'paigeandmichael@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5877, '2007-08-14', '', '', '', '', '', '', NULL, '', NULL, 'duke_jodie@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5878, '2007-08-14', 'Giancarlo', 'Pinterpe', '', '', '', '', NULL, '', NULL, 'jelennie2@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5879, '2007-08-14', 'Diane', 'Walker', '', '', '', '', NULL, '', NULL, 'precision_dwalker@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5880, '2007-08-14', 'Rob ', '', '', '', '', '', NULL, '', NULL, 'wpotter@lifetimeplanning.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5882, '2007-08-14', 'Sylvia and Ronald', 'Sakuta', '', '', '', '', NULL, '', NULL, 'ssaku@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5885, '2007-08-14', 'Kathy', 'Peters', '', '', '', '', NULL, '', NULL, 'peterskg@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5886, '2007-08-14', 'Pam', 'Brooks', '', '', '', '', NULL, '', NULL, 'perlbrooks@charter.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5887, '2007-08-14', 'Jeffrey', 'Budaj', '', '', '', '', NULL, '', NULL, 'jbudaj@tbrcpa.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5888, '2007-08-14', 'Michelle', 'Young', '', '', '', '', NULL, '', NULL, 'myoung@berkley.k12.mi.us', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5889, '2007-08-14', 'Najat', 'LaFave', '', '', '', '', NULL, '', NULL, 'najatlafave@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5893, '2007-08-14', 'Kristine', 'Hudak', '', '', '', '', NULL, '', NULL, 'kristineww@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5895, '2007-08-14', 'Dianne', 'Agro', '', '', '', '', NULL, '', NULL, 'adagro@wowway.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5896, '2007-08-14', 'Kenneth ', 'Allard', '', '', '', '', NULL, '', NULL, 'kennypga@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5898, '2007-08-14', 'Marsha', 'Arbulu', '', '', '', '', NULL, '', NULL, 'mnarbulu@mac.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5899, '2007-08-14', 'Suzanne ', 'Artzberger', '', '', '', '', NULL, '', NULL, 'sartz@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5900, '2007-08-14', 'Patrice', 'Asimakis', '', '', '', '', NULL, '', NULL, '1patrice@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5901, '2007-08-14', 'Kimberly', 'Auspitz', '', '', '', '', NULL, '', NULL, 'auspitz@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5902, '2007-08-14', 'Todd', 'Bakran', '', '', '', '', NULL, '', NULL, 'tbakran@altelco.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5903, '2007-08-14', 'Kelly ', 'Balough', '', '', '', '', NULL, '', NULL, 'kpage52@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5905, '2007-08-14', 'Michael ', 'Bindig', '', '', '', '', NULL, '', NULL, 'biggie1226@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5910, '2007-08-14', 'Tonya', 'Bondale', '', '', '', '', NULL, '', NULL, 'tbondale@charter.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5911, '2007-08-14', 'Thomas', 'Bondy', '', '', '', '', NULL, '', NULL, 'bethannieann@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5912, '2007-08-14', 'Monica', 'Boynton', '', '', '', '', NULL, '', NULL, 'mtb123@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9331, '2010-03-16', 'Cheryl', 'Walter', '', '', '', '', NULL, '', NULL, 'walter2063@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2010-03-16', '2010-03-16', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5916, '2007-08-14', 'Dan', 'Chilcott', '', '', '', '', NULL, '', NULL, 'ksdnchilcott@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7828, '2009-02-04', '', 'wohlscheid', '', '', '', '', NULL, '', NULL, 'brianw@municipalsupply.com', NULL, NULL, true, NULL, NULL, '', '2009-02-04', '2009-02-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5919, '2007-08-14', 'Greg', 'Coursen', '', '', '', '', NULL, '', NULL, 'courseng@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5920, '2007-08-14', 'Donna', 'Cukrowski', '', '', '', '', NULL, '', NULL, 'wcukrowski@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5921, '2007-08-14', 'Patricia', 'Curd', '', '', '', '', NULL, '', NULL, 'pkc906@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5924, '2007-08-14', 'Janet', 'Darby', '', '', '', '', NULL, '', NULL, 'jdarby@chartermi.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5927, '2007-08-14', 'Ken', 'Demski', '', '', '', '', NULL, '', NULL, 'kdemski@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5928, '2007-08-14', 'Sharon', 'Deptula', '', '', '', '', NULL, '', NULL, 'sdeptula@us.ibm.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5929, '2007-08-14', 'Jim', 'DeRupa', '', '', '', '', NULL, '', NULL, 'jderupa@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5930, '2007-08-14', 'Kari', 'DeSantis', '', '', '', '', NULL, '', NULL, 'desantis4@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5931, '2007-08-14', 'Pam', 'DeTizio', '', '', '', '', NULL, '', NULL, 'detiz@usol.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5932, '2007-08-14', 'Lorraine', 'Dugoff', '', '', '', '', NULL, '', NULL, 'lorraine.dugoff@uchsc.edu', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5934, '2007-08-14', 'Heidi', 'Elder', '', '', '', '', NULL, '', NULL, 'eldertime@hughes.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5936, '2007-08-14', 'Melissa', 'Engebretsen', '', '', '', '', NULL, '', NULL, 'misses5e@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5938, '2007-08-14', 'Steven', 'Ensley', '', '', '', '', NULL, '', NULL, 'scensley@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5961, '2007-08-14', 'Carolyne & Mark ', 'Hoerr', '', '', '', '', NULL, '', NULL, 'mark@donhoerrandsons.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5940, '2007-08-14', 'Roxanne', 'Ezzo', '', '', '', '', NULL, '', NULL, 'roxanne@avci.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5941, '2007-08-14', 'Deedee', 'Fair', '', '', '', '', NULL, '', NULL, 'deedeekfair@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8032, '2009-05-22', 'Tom', 'DeFouw', '', '', '', '', NULL, '', NULL, 'coffeeman58@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-05-22', '2009-05-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5943, '2007-08-14', 'Laura', 'Fiedernitz', '', '', '', '', NULL, '', NULL, 'lfieb@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5945, '2007-08-14', 'Renee', 'Fluker', '', '', '', '', NULL, '', NULL, 'rfluker206@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5946, '2007-08-14', 'Sally', 'Fog', '', '', '', '', NULL, '', NULL, 'wsfog531@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5947, '2007-08-14', 'Richard', 'Goebel', '', '', '', '', NULL, '', NULL, 'dickgoebel@tx.rr.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5950, '2007-08-14', 'Susan', 'Golbiw', '', '', '', '', NULL, '', NULL, 'sgolbiw@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5951, '2007-08-14', 'James', 'Greene', '', '', '', '', NULL, '', NULL, 'jegreene@chartermi.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5952, '2007-08-14', 'Matthew', 'Greene', '', '', '', '', NULL, '', NULL, 'mgreene@cicchicago.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8124, '2009-06-03', '', '', '', '', '', '', NULL, '', NULL, 'bsparks21@wowway.com', NULL, NULL, true, NULL, NULL, '', '2009-06-03', '2009-06-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5954, '2007-08-14', 'Marti', 'Grifka', '', '', '', '', NULL, '', NULL, 'martigra68@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5955, '2007-08-14', 'Barbara', 'Handy', '', '', '', '', NULL, '', NULL, 'ashidol1@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5956, '2007-08-14', 'Sandy', 'Hebert', '', '', '', '', NULL, '', NULL, 'dandylynn@charter.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5957, '2007-08-14', 'Janet', 'Herwaldt', '', '', '', '', NULL, '', NULL, 'spartan440@msn.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5958, '2007-08-14', 'Monica', 'Hewitt', '', '', '', '', NULL, '', NULL, 'ushewey@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5959, '2007-08-14', 'Michael', 'Hinz', '', '', '', '', NULL, '', NULL, 'mfhinz@gmail.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5960, '2007-08-14', 'Pamela', 'Hoelscher', '', '', '', '', NULL, '', NULL, 'plhoelscher@juno.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7914, '2009-02-16', 'Tana', 'Bridge', '', '', '', '', NULL, '', NULL, 'tbridge@emich.edu', NULL, NULL, true, NULL, NULL, '', '2009-02-16', '2009-02-16', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5963, '2007-08-14', 'Sarah', 'Jegla', '', '', '', '', NULL, '', NULL, 'djsjjegla@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5953, '2007-08-14', 'Thomas', 'Griffith', '', '', '', '', NULL, '', NULL, 'howdyamy@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5965, '2007-08-14', 'Stacey', 'Junn', '', '', '', '', NULL, '', NULL, 'drillnfill1991@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5966, '2007-08-14', 'David', 'Jurk', '', '', '', '', NULL, '', NULL, 'davidjurk@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5967, '2007-08-14', 'Shirley', 'Kadets', '', '', '', '', NULL, '', NULL, 'smkad@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5968, '2007-08-14', 'Carol', 'Kanan', '', '', '', '', NULL, '', NULL, 'jpkanan@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5969, '2007-08-14', 'Achla', 'Karnani', '', '', '', '', NULL, '', NULL, 'achla_k@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8882, '2009-10-22', 'Paul', 'Simmons', '', '', '', '', NULL, '', NULL, 'pwsimmons313@yahoo.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-22', '2009-10-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5972, '2007-08-14', 'Donna', 'Kenealy', '', '', '', '', NULL, '', NULL, 'kenealydonna@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5973, '2007-08-14', 'Laura', 'Kenrick', '', '', '', '', NULL, '', NULL, 'tlkenrick@ameritech.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5974, '2007-08-14', 'Cecilia', 'Kiefiuk', '', '', '', '', NULL, '', NULL, 'drcarolep@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5977, '2007-08-14', 'Lucille', 'Kraus', '', '', '', '', NULL, '', NULL, 'jwkraus@cogeco.ca', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5979, '2007-08-14', 'Catherine', 'Kucherak', '', '', '', '', NULL, '', NULL, 'cathy@kucherak.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5981, '2007-08-14', 'Carol', 'Kuligoski', '', '', '', '', NULL, '', NULL, 'lbuckeyes@charter.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5982, '2007-08-14', 'James', 'Kutz', '', '', '', '', NULL, '', NULL, 'janet4248108@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7740, '2009-02-02', 'Nina', 'Bufalino ', '', '', '', '', NULL, '', NULL, 'nina@investmentreo.com', NULL, NULL, true, NULL, NULL, '', '2009-02-02', '2009-02-02', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5984, '2007-08-14', 'Paul', 'Kuzemka', '', '', '', '', NULL, '', NULL, 'fudejiu@netzero.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5985, '2007-08-14', 'Pamela', 'Kyle', '', '', '', '', NULL, '', NULL, 'pkyle@lakeorion.k12.mi.us', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5986, '2007-08-14', 'Terry', 'LaBan', '', '', '', '', NULL, '', NULL, 'tlaban@earthlink.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5989, '2007-08-14', 'Julie', 'Landa', '', '', '', '', NULL, '', NULL, 'slanda45@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5990, '2007-08-14', 'Jim', 'Langan', '', '', '', '', NULL, '', NULL, 'jlangan1466@wowway.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5991, '2007-08-14', 'Kelli', 'Lasagna', '', '', '', '', NULL, '', NULL, 'lasagnakm@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5992, '2007-08-14', 'Paul', 'Lauer', '', '', '', '', NULL, '', NULL, 'laup979@charter.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5993, '2007-08-14', 'Ginger', 'Lawson', '', '', '', '', NULL, '', NULL, 'glawson@wcs.k12.mi.us', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5994, '2007-08-14', 'Judy', 'Legree', '', '', '', '', NULL, '', NULL, 'ljujube@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5995, '2007-08-14', 'Christin', 'Lehman', '', '', '', '', NULL, '', NULL, 'lehmanfamily@charter.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5997, '2007-08-14', 'Sanford', 'Lesnick', '', '', '', '', NULL, '', NULL, 'ladymcmom@ameritech.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7829, '2009-02-04', 'Robert', 'Britton', '', '', '', '', NULL, '', NULL, 'britton.5@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-02-04', '2009-02-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5999, '2007-08-14', 'Jeffrey', 'Litch', '', '', '', '', NULL, '', NULL, 'jefflitch@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8125, '2009-06-03', '', '', '', '', '', '', NULL, '', NULL, 'btb4u@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-03', '2009-06-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6001, '2007-08-14', 'Kuen Kuen', 'Liu', '', '', '', '', NULL, '', NULL, 'kuenbird@yahoo.com.hk', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6002, '2007-08-14', 'Sandra', 'Lorence', '', '', '', '', NULL, '', NULL, 'csdangler@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6003, '2007-08-14', 'Ellen', 'Lounds', '', '', '', '', NULL, '', NULL, 'elounds@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6004, '2007-08-14', 'Jean', 'Lounsbury', '', '', '', '', NULL, '', NULL, 'jlounsbury9137@msn.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6005, '2007-08-14', 'Patty', 'Lusk', '', '', '', '', NULL, '', NULL, 'patty11932@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6006, '2007-08-14', 'James', 'MacDonald', '', '', '', '', NULL, '', NULL, 'userj7798@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7915, '2009-02-16', 'Dale', 'Ott', '', '', '', '', NULL, '', NULL, 'do7mucs@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-02-16', '2009-02-16', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6008, '2007-08-14', 'Laura', 'Makela', '', '', '', '', NULL, '', NULL, 'lauramakela@gmail.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6009, '2007-08-14', 'Andrew', 'Malyszek', '', '', '', '', NULL, '', NULL, 'shrekvader@gmail.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6011, '2007-08-14', 'Rebecca', 'Manship', '', '', '', '', NULL, '', NULL, 'lmanship@indy.rr.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6012, '2007-08-14', 'Chris', 'Marcangelo', '', '', '', '', NULL, '', NULL, 'chrismarcangelo@mac.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8211, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'hossman67@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6017, '2007-08-14', 'Andrew', 'Maternowski', '', '', '', '', NULL, '', NULL, 'chachalaca22@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6018, '2007-08-14', 'Tammy', 'Matthews', '', '', '', '', NULL, '', NULL, 'matt_fam@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6019, '2007-08-14', 'Yolanda', 'Matthews', '', '', '', '', NULL, '', NULL, 'chuckmatt@mindspring.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6020, '2007-08-14', 'Steve', 'Maxim', '', '', '', '', NULL, '', NULL, 'dmaxim2@cogeco.ca', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7360, '2008-10-03', 'Mark', 'Bloom', '', '', '', '', NULL, '', NULL, 'mark.bloom@ssi-tek.com', NULL, NULL, false, 9, 1, 'Can you give me a price for the same unit we have stayed in, in the past.  can never remember the number.', '2008-12-19', '2008-12-20', '', ':Ski Trip:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6022, '2007-08-14', 'Mark', 'McElwee', '', '', '', '', NULL, '', NULL, 'mrm18@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8275, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'kcadwell_kma@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6027, '2007-08-14', 'Martha', 'Merkel', '', '', '', '', NULL, '', NULL, 'mmerkel19@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6028, '2007-08-14', 'Alan', 'Michaels', '', '', '', '', NULL, '', NULL, 'alanandbethm@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6029, '2007-08-14', 'Amy Jo', 'Middleton', '', '', '', '', NULL, '', NULL, 'amyjo1019@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6030, '2007-08-14', 'Kim', 'Moesta', '', '', '', '', NULL, '', NULL, 'kpmoesta@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8339, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'mike@garneragency.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6076, '2007-08-14', 'Jerry', 'Risher', '', '', '', '', NULL, '', NULL, 'jerryrisher@oclrx.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6034, '2007-08-14', 'Garth', 'Moreau', '', '', '', '', NULL, '', NULL, 'gmoreau@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6035, '2007-08-14', 'Ron', 'Mowicki', '', '', '', '', NULL, '', NULL, 'ronronowicki@msn.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6036, '2007-08-14', 'Pam', 'Murrell', '', '', '', '', NULL, '', NULL, 'pkmurrell@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6038, '2007-08-14', 'Patricia', 'Noll', '', '', '', '', NULL, '', NULL, 'plnoll@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6039, '2007-08-14', 'Lisa', 'Norwick', '', '', '', '', NULL, '', NULL, 'lnor63@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6040, '2007-08-14', 'Mark', 'Nowotarski', '', '', '', '', NULL, '', NULL, 'mcnowotarski@bex.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6042, '2007-08-14', 'Kevin', 'O''Keefe', '', '', '', '', NULL, '', NULL, 'kokeefe2316@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6055, '2007-08-14', 'Ellen', 'Potter', '', '', '', '', NULL, '', NULL, 'ellen.humphrey@xerox.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6044, '2007-08-14', 'Robert', 'Orosey', '', '', '', '', NULL, '', NULL, 'papa.bob2@netzero.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8392, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'rlstorer@dow.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6047, '2007-08-14', 'Alison', 'Papin', '', '', '', '', NULL, '', NULL, 'adpapin@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6049, '2007-08-14', 'Randy', 'Petiprin', '', '', '', '', NULL, '', NULL, 'rpetiprin@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6050, '2007-08-14', 'Jim', 'Petrena', '', '', '', '', NULL, '', NULL, 'kpetrena@wideopenwest.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6054, '2007-08-14', 'Javier', 'Pozo', '', '', '', '', NULL, '', NULL, 'nancy.pozo@nationalcity.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6057, '2007-08-14', 'Megan', 'Pugh', '', '', '', '', NULL, '', NULL, 'mmpugh123@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6059, '2007-08-14', 'Linda', 'Pytel', '', '', '', '', NULL, '', NULL, 'pytels@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6060, '2007-08-14', 'Mary Jane', 'Rantz', '', '', '', '', NULL, '', NULL, 'luv2skitr@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6061, '2007-08-14', 'Plamen', 'Ratchev', '', '', '', '', NULL, '', NULL, 'plamen@ratchev.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6062, '2007-08-14', 'Dennis', 'Reef', '', '', '', '', NULL, '', NULL, 'dreef@mspcpa.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6063, '2007-08-14', 'Cheryl', 'Reitzloff', '', '', '', '', NULL, '', NULL, 'cherreitz@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7741, '2009-02-02', 'Kathy', 'Mikolajczak', '', '', '', '', NULL, '', NULL, 'mikol@bex.net ', NULL, NULL, true, NULL, NULL, '', '2009-02-02', '2009-02-02', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7830, '2009-02-04', 'Ken', 'Brown', '', '', '', '', NULL, '', NULL, 'brownken@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-02-04', '2009-02-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6067, '2007-08-14', 'Beth', 'Rogler', '', '', '', '', NULL, '', NULL, 'rogsailer@charter.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6068, '2007-08-14', 'Carthy', 'Romkema', '', '', '', '', NULL, '', NULL, 'cathypage3@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6070, '2007-08-14', 'Louise', 'Sable', '', '', '', '', NULL, '', NULL, 'lbsable@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6071, '2007-08-14', 'Patrick', 'Samolewski', '', '', '', '', NULL, '', NULL, 'pcs@svsu.edu', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6073, '2007-08-14', 'Bob', 'Schaburg', '', '', '', '', NULL, '', NULL, 'schaberg@i-c.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6075, '2007-08-14', 'Tracy', 'Schatko', '', '', '', '', NULL, '', NULL, 'tracy63@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6078, '2007-08-14', 'Denise', 'Schesky', '', '', '', '', NULL, '', NULL, 'dschesky@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6079, '2007-08-14', 'Ladye Mary', 'Scheuerman', '', '', '', '', NULL, '', NULL, 'curts254@alltel.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6081, '2007-08-14', 'Joan', 'Schrubba', '', '', '', '', NULL, '', NULL, 'ronjoschrubba@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6082, '2007-08-14', 'Gary', 'Schwind', '', '', '', '', NULL, '', NULL, 'gjschwind@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6083, '2007-08-14', 'Frank', 'Sebest', '', '', '', '', NULL, '', NULL, 'fsebest@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6084, '2007-08-14', 'Bruce', 'Selman', '', '', '', '', NULL, '', NULL, 'btch69linkinpark@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6086, '2007-08-14', 'Christine', 'Seno', '', '', '', '', NULL, '', NULL, 'christineseno@mac.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6087, '2007-08-14', 'Gunjan', 'Shah', '', '', '', '', NULL, '', NULL, 'gps5657@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6089, '2007-08-14', 'Slavi', 'Slavov', '', '', '', '', NULL, '', NULL, 'sgslavov@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6090, '2007-08-14', 'Steven', 'Sobek', '', '', '', '', NULL, '', NULL, 'steve2247@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6091, '2007-08-14', 'Leonard', 'Sosnowski', '', '', '', '', NULL, '', NULL, 'lsosnowski@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7916, '2009-02-16', 'Christy', 'Prather', '', '', '', '', NULL, '', NULL, 'gprather5@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-02-16', '2009-02-16', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8883, '2009-10-22', 'Anthony ', 'Stevenson ', '', '', '', '', NULL, '', NULL, 'clamcentral@hotmail.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-22', '2009-10-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6095, '2007-08-14', 'Mary', 'Stronati', '', '', '', '', NULL, '', NULL, 'maryt710@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6096, '2007-08-14', 'Thomas', 'Strong', '', '', '', '', NULL, '', NULL, 'tjstrong@pgatourhq.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7382, '2008-10-06', 'Robert', 'Struble', '', '', '', '', NULL, '', NULL, 'rstruble@iowatelecom.net', NULL, NULL, true, NULL, NULL, '', '2008-10-06', '2008-10-06', '', ':17:12:23:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6101, '2007-08-14', 'John', 'Thornburgh', '', '', '', '', NULL, '', NULL, 'dthornburgh@orchard.org', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6103, '2007-08-14', 'Joel', 'Toupin', '', '', '', '', NULL, '', NULL, 'drjetamdg@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6105, '2007-08-14', 'Michael', 'Trainor', '', '', '', '', NULL, '', NULL, 'mtrainor2@charter.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8034, '2009-05-22', 'Maria', 'Lampinen', '', '', '', '', NULL, '', NULL, 'maria1207@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-05-22', '2009-05-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6108, '2007-08-14', 'Charles', 'Turnbull', '', '', '', '', NULL, '', NULL, 'jillyflo@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8126, '2009-06-03', '', '', '', '', '', '', NULL, '', NULL, 'bwarra612@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-03', '2009-06-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6110, '2007-08-14', 'Steve', 'Urbaniak', '', '', '', '', NULL, '', NULL, 'surbania@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6111, '2007-08-14', 'Donald', 'Vachon', '', '', '', '', NULL, '', NULL, 'don_vachon@bsbcom.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6112, '2007-08-14', 'Steven', 'Van Doornik', '', '', '', '', NULL, '', NULL, 'svandoornik@mmpc.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8212, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'HOUSTONSILVFOX@COMCAST.NET', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6114, '2007-08-14', 'Kevin', 'VanDette', '', '', '', '', NULL, '', NULL, 'rkvgolfs@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6115, '2007-08-14', 'Leslie', 'Vanhouzen', '', '', '', '', NULL, '', NULL, 'lvanhouzen@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6116, '2007-08-14', 'Marney', 'Vincentini', '', '', '', '', NULL, '', NULL, 'mvincentini@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8276, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'kcwin45@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6119, '2007-08-14', 'Woei', 'Wang', '', '', '', '', NULL, '', NULL, 'wanschyi@msu.edu', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6120, '2007-08-14', 'Kent', 'Wantroba', '', '', '', '', NULL, '', NULL, 'kentlisa6061@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6121, '2007-08-14', 'Charles', 'Weissman', '', '', '', '', NULL, '', NULL, 'cweissman@fabricantweissman.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6122, '2007-08-14', 'Jeffery', 'Westheimer', '', '', '', '', NULL, '', NULL, 'judywestheimer@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6123, '2007-08-14', 'Sheila', 'Whelan', '', '', '', '', NULL, '', NULL, 'sheila.whelan@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6125, '2007-08-14', 'Barry', 'Wigent', '', '', '', '', NULL, '', NULL, 'bwigentcpa@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6127, '2007-08-14', 'Ron', 'Winters', '', '', '', '', NULL, '', NULL, 'ronald_winters@dell.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6128, '2007-08-14', 'Bob', 'Wootton', '', '', '', '', NULL, '', NULL, 'bjwootton@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6130, '2007-08-14', 'Jisun', 'Yang', '', '', '', '', NULL, '', NULL, 'missyang82@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7742, '2009-02-02', 'Dennis ', 'Osworth ', '', '', '', '', NULL, '', NULL, 'osworthda@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-02-02', '2009-02-02', '', ':25:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6132, '2007-08-14', 'Valerie', 'Zale', '', '', '', '', NULL, '', NULL, 'val725@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6134, '2007-08-29', 'Dr. Janet M.', 'Burns', '', '', '', '', NULL, '', NULL, 'jmburns57@yahoo.com', NULL, NULL, false, 8, NULL, '', NULL, NULL, 'Please change my contact info to:  37941 Spring Lane, Farmington Hills, MI  48331 and home phone:  248-991-9924 and cell:  231-313-1869.  I am the owner of Unit #7.  Please advise that you have received this message.  Thank you.  ', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1067, '2003-12-20', 'Nikki', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'nikki@troutcreek.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; AskTB5.6; BO1IE8_v1;ENUS)', '71.13.68.235', true, 8, NULL, NULL, NULL, NULL, 'Hello', '', NULL, '1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6137, '2007-09-06', 'Roger ', 'Kirwin', '17527 S. Pecan Ln.', 'Tinley Park', 'IL', '60487', NULL, '', NULL, 'rocker918@gmail.com', NULL, NULL, true, 4, 1, 'i was not able to view rates can you help me?', '2008-01-06', '2008-01-11', 'I am interested in staying in Condo 106!', ':Ski Trip:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6138, '2007-09-10', 'Frank', 'Maxwell', '', '', '', '', NULL, '', NULL, 'SpartyMax@comcast.net', NULL, NULL, true, 4, NULL, 'Pets permitted???', NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6141, '2007-09-12', 'Brian ', 'Schad', '', '', '', '', NULL, '', NULL, 'schads@earthlink.net', NULL, NULL, true, 9, 4, '', '2008-06-19', '2008-06-25', 'Interest in condo #5.  Am flexible with dates in late June.', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6142, '2007-09-13', 'Linda ', 'Barry', '4920 Deer Run Lane', 'Holt', 'Michigan', '48842', NULL, '517-6944699', NULL, 'lbarry@hpsk12.net', NULL, NULL, true, 9, 1, '', NULL, NULL, 'Elizabeth Roach; Thank you for replying back to me. I heard that you had a list of ALL the condo''s that are at Trout Creek for sale, not just your listings and no, we don''t have a realtor helping us. Thank you for your help. Linda Barry', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6143, '2007-09-18', 'Penny', 'Severin', 'PO Box 10', 'Benton', 'IL', '62812', NULL, '618-435-5555', NULL, 'dpseverin@verizon.net', NULL, NULL, true, 6, 5, 'We would like to bring our standard poodle, Truman.', '2007-10-04', '2007-10-07', '', ':Pleasure Vacation:Romantic Getaway:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6144, '2007-09-20', 'Tim', 'Bender', '', '', '', '', NULL, '', NULL, 'meltimbender@yahoo.com', NULL, NULL, false, 6, NULL, 'We are thinking of staying at Trout Creek over Christmas week this year.  Is there a shuttle that week that runs to/from Trout Creek and the ski slopes?\r
+\r
+Thank you.\r
+\r
+Tim', NULL, NULL, '', ':Ski Trip:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6145, '2007-09-24', 'dave ', '', '', '', '', '', NULL, '', NULL, 'dave@nexesrealty.com', NULL, NULL, true, 8, NULL, 'I need Stewart to e-mail me ', NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6146, '2007-09-24', 'Julie', 'Batog', '6987 Martinchek Road', 'Petoskey', 'Mi ', '49770', NULL, '231.347.4030', NULL, 'juliebatog@hotmail.com', NULL, NULL, true, 2, NULL, 'I saw on the your website that you have an indoor space available for weddings.  I would have a significantly larger reception than allowed indoors, but I was wondering if there was an outdoor open space available that could accomodate a tent for an outdoor reception? If so, would you know any price specification or availability?', NULL, NULL, '', ':Wedding Group:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6147, '2007-09-25', 'Maureen ', 'Bonhard', '', '', '', '', NULL, '', NULL, 'mbonhard@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-09-25', '2007-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6148, '2007-09-25', 'Kathleen', 'Merchak', '', '', '', '', NULL, '', NULL, 'kmerchak@peoplepc.com', NULL, NULL, true, NULL, NULL, '', '2007-09-25', '2007-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7917, '2009-02-16', 'Aaron ', 'Phillips', ' ', '', '', '', NULL, '', NULL, 'tobesdrums@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-02-16', '2009-02-16', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7831, '2009-02-04', 'Daniel', 'Bruetman', '', '', '', '', NULL, '', NULL, 'bruetman@msn.com', NULL, NULL, true, NULL, NULL, '', '2009-02-04', '2009-02-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6263, '2007-09-28', 'Brian and Jane', 'Adamczyk', '', '', '', '', NULL, '', NULL, 'janeadamczyk@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6152, '2007-09-25', 'Pat', 'Sherlock', '', '', '', '', NULL, '', NULL, 'ptsherlock@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-09-25', '2007-09-25', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9308, '2010-01-20', 'Nikki', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'nikki@troutcreek.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; AskTB5.6; BO1IE8_v1;ENUS)', '71.13.68.235', true, 8, NULL, NULL, NULL, NULL, 'Hello', '', NULL, '1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6153, '2007-09-27', 'Sharon', 'Bellefleur', '', '', '', '', NULL, '', NULL, 'Aussiemom@comcast.net', NULL, NULL, true, 1, NULL, 'We stayed here once while we went golfing and just loved the condos.  They were very clean and smoke free.  We would like to come and stay again in October, but we do have a small 28lb. dog and she travels everywhere with us.  Do you except small pets?  Thank you.', NULL, NULL, '', ':Pleasure Vacation:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6213, '2007-09-28', 'Lori', 'Andrezejewski', '', '', '', '', NULL, '', NULL, 'loria2@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6156, '2007-09-28', 'Paul and Patricia', 'Dufault', '', '', '', '', NULL, '', NULL, 'paul_g_dufault@comerica.com', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6189, '2007-09-28', '', '', '', '', '', '', NULL, '', NULL, '', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8035, '2009-05-22', 'Kirk', 'Sledzinski', '', '', '', '', NULL, '', NULL, 'sledzinski@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-05-22', '2009-05-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6206, '2007-09-28', 'Ellen', 'Potter', '', '', '', '', NULL, '', NULL, 'ellen.potter@xerox.com', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8127, '2009-06-03', '', '', '', '', '', '', NULL, '', NULL, 'cahee201@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-03', '2009-06-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6181, '2007-09-28', 'James', 'Collins', '', '', '', '', NULL, '', NULL, 'jimfloc@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6182, '2007-09-28', 'Roger and Kathleen', 'Dooley', '', '', '', '', NULL, '', NULL, 'rogermdooley@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6183, '2007-09-28', 'Thomas', 'Martinelli', '', '', '', '', NULL, '', NULL, 'alyse.f.martinelli@att.com', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8213, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'hrsmuck@comteck.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6157, '2007-09-28', 'John and Linda', 'Lamb', '', '', '', '', NULL, '', NULL, 'llamb1@charter.net', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8277, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'kcycholl@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6201, '2007-09-28', 'Gerald ', 'Risher', '', '', '', '', NULL, '', NULL, 'jerry@oclrx.com', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6159, '2007-09-28', 'Pam and Kevin', 'Cooper', '', '', '', '', NULL, '', NULL, 'cooperdds@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6164, '2007-09-28', 'Bernadette', 'Lois', '', '', '', '', NULL, '', NULL, 'slavicgal@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6165, '2007-09-28', 'Deb', 'Mustard', '', '', '', '', NULL, '', NULL, 'dmustardwible@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6166, '2007-09-28', 'Sam and Marti', 'Osnowitz', '', '', '', '', NULL, '', NULL, 'sosnowitz@buckeye-express.com', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7603, '2008-11-13', 'Beth', 'Hess', '', '', '', '', NULL, '', NULL, 'gbhess@juno.com', NULL, NULL, true, NULL, NULL, '', '2008-11-13', '2008-11-13', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6167, '2007-09-28', 'Mike and Bonny', 'Silver', '', '', '', '', NULL, '', NULL, 'bonny428@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6168, '2007-09-28', 'David and Heidi', 'Foxworthy', '', '', '', '', NULL, '', NULL, 'hfoxworthy@hughes.net', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6169, '2007-09-28', 'Bill and Nancy', 'Lamb', '', '', '', '', NULL, '', NULL, 'wjlamb@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6170, '2007-09-28', 'Kevin and Kathleen', 'Summers', '', '', '', '', NULL, '', NULL, 'ksummers@psedlaw.com', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6188, '2007-09-28', 'Pat', 'Zawadzki', '', '', '', '', NULL, '', NULL, 'mamazwad@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6174, '2007-09-28', 'Mike', 'Wehby', '', '', '', '', NULL, '', NULL, 'mwehby@tacworldwide.com', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7918, '2009-02-16', 'Karen', 'Knister', '', '', '', '', NULL, '', NULL, 'k2shop@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-02-16', '2009-02-16', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6176, '2007-09-28', 'Neil and Jill', 'McCullough', '', '', '', '', NULL, '', NULL, 'mccullough6@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6178, '2007-09-28', 'Dennis', 'Perkins', '', '', '', '', NULL, '', NULL, 'bwperkins@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6179, '2007-09-28', 'Joel and Deb', 'LaMothe', '', '', '', '', NULL, '', NULL, 'joelwswan@msn.com', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8036, '2009-05-22', 'Jeff', 'Rosenthal', '', '', '', '', NULL, '', NULL, 'jamroses@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-05-22', '2009-05-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7368, '2008-10-06', 'Glenn ', 'Purvis', '', '', '', '', NULL, '', NULL, 'mruiter@netzero.net', NULL, NULL, true, NULL, NULL, '', '2008-10-06', '2008-10-06', '', ':17:23:14:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6186, '2007-09-28', 'Larry and Sandra', 'Hartwig', '', '', '', '', NULL, '', NULL, 'lhartwig@juno.com', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6187, '2007-09-28', 'Roberta ', 'Kulawik', '', '', '', '', NULL, '', NULL, 'bkulawik@cs.com', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8128, '2009-06-03', '', '', '', '', '', '', NULL, '', NULL, 'canno1979@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-03', '2009-06-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7371, '2008-10-06', 'Tracy', 'Dushane', '', '', '', '', NULL, '', NULL, 'tracyd@peoplepc.com', NULL, NULL, true, NULL, NULL, '', '2008-10-06', '2008-10-06', '', ':20:17:23:14:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6191, '2007-09-28', 'Arnold and Clarita', 'Ketels', '', '', '', '', NULL, '', NULL, 'arnold_ketels@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7374, '2008-10-06', 'Jason', 'Mayley', '', '', '', '', NULL, '', NULL, 'mayles@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2008-10-06', '2008-10-06', '', ':17:12:23:14:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6193, '2007-09-28', 'James', 'Sanborn', '', '', '', '', NULL, '', NULL, 'james.sanborn@us.bosch.com', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7377, '2008-10-06', 'Jennifer', 'Kelly', '', '', '', '', NULL, '', NULL, 'jenatassi@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2008-10-06', '2008-10-06', '', ':20:17:12:23:14:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6196, '2007-09-28', 'Mike and JoAnn', 'Sanborn', '', '', '', '', NULL, '', NULL, 'mjsanborn@tc3net.com', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6197, '2007-09-28', 'David and Diana', 'Battin', '', '', '', '', NULL, '', NULL, 'dddk_4@msn.com', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6198, '2007-09-28', 'Louis and Laurell', 'Bruska', '', '', '', '', NULL, '', NULL, 'rallyback@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7300, '2008-09-22', 'Peter', 'Geshel', '', '', '', '', NULL, '', NULL, 'pgeshel@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', ':12:23:22:16:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6200, '2007-09-28', 'Cindy and Steven', 'Schwartz', '', '', '', '', NULL, '', NULL, 'mdkrx73@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7320, '2008-09-22', 'Scott', 'Kemerling', '', '', '', '', NULL, '', NULL, 'amybk@wowway.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', ':12:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6203, '2007-09-28', 'Larry', 'Boon', '', '', '', '', NULL, '', NULL, 'larry.boon.ab8t@statefarm.com', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5290, '2007-01-20', 'Jeff', 'Clemens', '', '', '', '', NULL, '', NULL, 'finance@raycs.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', ':23:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7307, '2008-09-22', 'Michelle & Rob', 'Shores', '', '', '', '', NULL, '', NULL, 'rcshores@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', ':12:23:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6209, '2007-09-28', 'Victoria', 'Getner', '', '', '', '', NULL, '', NULL, 'vgetner@pappasfinancial.com', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6210, '2007-09-28', 'Doug and Valerie', 'Pontious', '', '', '', '', NULL, '', NULL, 'doug.pontious@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8214, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'ja2boggs1@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6212, '2007-09-28', 'Gary and Kathryn', 'Manthey', '', '', '', '', NULL, '', NULL, 'garymanthey@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6214, '2007-09-28', 'Craig and Barbara', 'Bailey', '', '', '', '', NULL, '', NULL, 'bkbailey@accesstoledo.com', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7231, '2008-09-22', 'Tony & Jan', 'Vettraino', '', '', '', '', NULL, '', NULL, 'janvettraino@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', ':12:23:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6216, '2007-09-28', 'Mark and Angela', 'Jungwirth', '', '', '', '', NULL, '', NULL, 'mjungwir@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6218, '2007-09-28', 'Michael', 'Dornan', '', '', '', '', NULL, '', NULL, 'mdornan@ci.wixom.mi.us', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6219, '2007-09-28', 'Paul and Ruth', 'O''Brien', '', '', '', '', NULL, '', NULL, 'pobmsu@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6220, '2007-09-28', 'Joel', 'Rosenberg', '', '', '', '', NULL, '', NULL, 'rosey4@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6221, '2007-09-28', 'Tony and Shannon', 'DeMartinis', '', '', '', '', NULL, '', NULL, 'ademarti@ford.com', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6222, '2007-09-28', 'Roger and Cinty', 'Novotney', '', '', '', '', NULL, '', NULL, 'a089028@allstate.com', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6226, '2007-09-28', 'Kowk Lock', 'Lam', '', '', '', '', NULL, '', NULL, 'kl.lam@sympatico.ca', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6230, '2007-09-28', 'Janice and George', 'Buchanen', '', '', '', '', NULL, '', NULL, 'jbuchan1@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6493, '2007-11-21', 'Monica', 'Paquette', '', '', '', '', NULL, '', NULL, 'mj.paquette@att.net', NULL, NULL, true, NULL, NULL, '', '2007-11-21', '2007-11-21', '', ':3:12:23:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6233, '2007-09-28', 'Kevin and Kim', 'Spillane', '', '', '', '', NULL, '', NULL, 'kspillane@incat.com', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6234, '2007-09-28', 'Howard', 'Merkel', '', '', '', '', NULL, '', NULL, 'hmerkel@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6272, '2007-10-09', 'Mary Beth ', 'Castorri', '', '', '', '', NULL, '', NULL, 'marycastorri@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-10-09', '2007-10-09', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6238, '2007-09-28', 'Tim', 'Monicatti', '', '', '', '', NULL, '', NULL, 'tsmonicatti@monicattichrysler.com', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6239, '2007-09-28', 'Glenn', 'Reynolds', '', '', '', '', NULL, '', NULL, 'garreynolds@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7363, '2008-10-06', 'June', 'Terens', '', '', '', '', NULL, '', NULL, 'jterens@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-10-06', '2008-10-06', '', ':20:17:23:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6241, '2007-09-28', 'Joseph', 'Arden Place Assoc.', '', '', '', '', NULL, '', NULL, 'mjoseph@crawfordgrp.com', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6242, '2007-09-28', 'Banion', 'Zielinski', '', '', '', '', NULL, '', NULL, 'bettybzielinski@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6244, '2007-09-28', 'James', 'Hatcher', '', '', '', '', NULL, '', NULL, 'jbhjames@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6245, '2007-09-28', 'Jim', 'Line', '', '', '', '', NULL, '', NULL, 'jline1373@charter.net', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7919, '2009-02-17', 'Patrick', 'Wilson', '', '', '', '', NULL, '', NULL, 'p0wilso1@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-02-17', '2009-02-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7369, '2008-10-06', 'April', 'Logiudice', '', '', '', '', NULL, '', NULL, 'alogiudice@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-10-06', '2008-10-06', '', ':20:17:23:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6250, '2007-09-28', 'Timothy and Jacqueline', 'Esper', '', '', '', '', NULL, '', NULL, 'jacky_esper@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6252, '2007-09-28', 'Herb and Kathy', 'Kindt', '', '', '', '', NULL, '', NULL, 'hkindt46804@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6253, '2007-09-28', 'Harley and Sharon', 'Beslock', '', '', '', '', NULL, '', NULL, 'sbeslock@bloomfieldtwp.org', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7372, '2008-10-06', 'Dennis', 'Fodell', '', '', '', '', NULL, '', NULL, 'dsfodellfam@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-10-06', '2008-10-06', '', ':17:12:23:14:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7833, '2009-02-04', 'Mike', 'Campabello', '', '', '', '', NULL, '', NULL, 'campabello@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-02-04', '2009-02-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7375, '2008-10-06', 'Janet', 'Dobson', '', '', '', '', NULL, '', NULL, 'janetdobson@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-10-06', '2008-10-06', '', ':20:17:23:14:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6257, '2007-09-28', 'Grant and Anne', 'Brown', '', '', '', '', NULL, '', NULL, 'granthb@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7378, '2008-10-06', 'Shari', 'Crowell', '', '', '', '', NULL, '', NULL, 'csr@raderfishman.com', NULL, NULL, true, NULL, NULL, '<p>Shari</p>', '2008-10-06', '2008-10-06', '', ':20:17:23:18:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6259, '2007-09-28', 'Anthony and Alexandra', 'Pirie', '', '', '', '', NULL, '', NULL, 'piriechiro@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6273, '2007-10-11', 'Carol', 'Sarosik', '', '', '', '', NULL, '', NULL, 'csarosik@comcast.net', NULL, NULL, false, 4, NULL, 'Do you take pets?', NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6261, '2007-09-28', 'Gary ', 'Schamehorn', '', '', '', '', NULL, '', NULL, 'gschamehorn@sterling-heights.net', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6260, '2007-09-28', 'Dave and Sue', 'Johnson', '', '', '', '', NULL, '', NULL, 'd.johnson@frontiernet.net', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6262, '2007-09-28', 'Peter and Carol', 'Walters', '', '', '', '', NULL, '', NULL, 'cwalters48@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6822, '2008-05-03', 'Kelly', 'Schulte', '', '', '', '', NULL, '', NULL, 'kellys@hvc.rr.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', ':20:23:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7337, '2008-09-22', 'Donald ', 'Walker', '', '', '', '', NULL, '', NULL, 'upnorfus@i-star.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', ':23:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6277, '2007-11-07', 'Renee ', 'Labadie', '', '', '', '', NULL, '', NULL, 'rmanceau@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-11-07', '2007-11-07', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8037, '2009-05-22', 'G.', 'Plaskie', '', '', '', '', NULL, '', NULL, 'gplaskie@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-05-22', '2009-05-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6161, '2007-09-28', 'Don and Elizabeth', 'Molosky', '', '', '', '', NULL, '', NULL, 'lizroach@charter.net', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6274, '2007-10-12', 'Michael', 'Kahl', '', '', '', '', NULL, '', NULL, 'mlv86@aol.com', NULL, NULL, true, 6, 6, 'Looking for lodging for 12 and 18 holes in the afternoon on the 8th, 36 holes on the 9th, and 18 holes in the morning on the 10th.  We''ve been doing golf trips in Michigan for the past 11 years and a re looking for some great golf with some great deals.  Thank you.', '2008-05-08', '2008-05-10', '', ':Big 4 Golf Package:Golf Trip:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6275, '2007-10-18', 'Kevin', 'Schultz', '14501 Haggerty', 'Plymouth', 'Michigan', '48154', NULL, '734-891-0157', NULL, 'christe68@aol.com', NULL, NULL, true, 9, 4, '                  My name is Kevin Schultz.  I’m currently on the school board at New Morning School, which is located in Plymouth Michigan.   New Morning students learn on a 9 to 1 student/teacher ratio.  The school is celebrating our 35th year and we would like to make this years auction a huge success.  The auction is taking place at Laurel Manor in Livonia Michigan on April 5, 2008.  The theme of next years auction is the roaring twenties. We are asking for donations and/or advertisements this year, any donation would be greatly appreciated.   The deadline for auction merchandise is January 17, 2008.  Last years attendance was 600.  We are a non-profit organization. Thanks in advance.\r
+\r
+\r
+\r
+\r
+\r
+\r
+\r
+                                                               Kevin Schultz\r
+                                                               (VP of Membership)\r
+                                                               14501 Haggerty\r
+                                                               Plymouth, Michigan 48170\r
+                                                               (734) 891-0157\r
+                                                                                                                                                       www.newmorningschool.com\r
+', NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6276, '2007-10-21', 'Debbie', 'Aceves', '1529 Charlevois', 'Troy', 'mi', '48085', NULL, '248 457 1528', NULL, 'daceves@wowway.com', NULL, NULL, true, 4, NULL, 'We stayed at your resort on October 19,20 and left on October 21.  We were in condo #47.  I left some of my clothes in the dresser that had the Tv on it in the bedroom. Could someone please mail me my jeans and I will send you a check.  I will try and call you on Sunday.\r
+\r
+Thank you', NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6249, '2007-09-28', 'Thomas and Rosemary', 'Doyle', '', '', '', '', NULL, '', NULL, 'doyma@att.net', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7366, '2008-10-06', 'Robert', 'Herrgott', '', '', '', '', NULL, '', NULL, 'jenny@21st-psi.com', NULL, NULL, true, NULL, NULL, '', '2008-10-06', '2008-10-06', '', ':17:12:23:14:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6297, '2007-11-20', 'Annelies', 'Trice', '', '', '', '', NULL, '', NULL, '1cougarmom@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8129, '2009-06-03', '', '', '', '', '', '', NULL, '', NULL, 'casps@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-06-03', '2009-06-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8215, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'jala@hartmantyner.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6281, '2007-11-07', 'Lori ', 'Ott', '', '', '', '', NULL, '', NULL, 'lorijott@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2007-11-07', '2007-11-07', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6282, '2007-11-07', 'Tejay ', 'Skidmore', '', '', '', '', NULL, '', NULL, 'tms52901@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-11-07', '2007-11-07', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6283, '2007-11-07', 'Shannon', 'Pacella', '', '', '', '', NULL, '', NULL, 'pacellas@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-11-07', '2007-11-07', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6284, '2007-11-07', 'Kara', 'Wood', '', '', '', '', NULL, '', NULL, 'woodkara@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-11-07', '2007-11-07', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6285, '2007-11-07', 'Lisa', 'Lazaroff', '', '', '', '', NULL, '', NULL, 'agi_tator@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-11-07', '2007-11-07', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6286, '2007-11-07', 'Terri', 'Wallace', '', '', '', '', NULL, '', NULL, 'codybri@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-11-07', '2007-11-07', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6287, '2007-11-07', 'Paula', 'Wilson', '', '', '', '', NULL, '', NULL, 'pwilson72@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-11-07', '2007-11-07', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6288, '2007-11-07', 'Rebecca', 'Pillion', '', '', '', '', NULL, '', NULL, 'rebeccapillion@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2007-11-07', '2007-11-07', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7744, '2009-02-02', 'Elizabeth', 'Peterson', '', '', '', '', NULL, '', NULL, '1peterson@lafcu.com', NULL, NULL, true, NULL, NULL, '', '2009-02-02', '2009-02-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7920, '2009-02-17', 'Lauren', 'Moeller', '', '', '', '', NULL, '', NULL, 'pamoeller@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-02-17', '2009-02-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6311, '2007-11-20', 'Robert', 'Friedrichs', '', '', '', '', NULL, '', NULL, 'bfriedrichs@sanluisrassini.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6292, '2007-11-07', 'Linda ', 'Farrow', '', '', '', '', NULL, '', NULL, 'lpharoah@ameritech.net', NULL, NULL, true, NULL, NULL, '', '2007-11-07', '2007-11-07', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6294, '2007-11-07', 'Terri', 'Williams', '', '', '', '', NULL, '', NULL, 'mmouse101@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-11-07', '2007-11-07', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8130, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'caw716@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6296, '2007-11-07', 'Kristin', 'Thompson', '', '', '', '', NULL, '', NULL, 'kmt613@msn.com', NULL, NULL, true, NULL, NULL, '', '2007-11-07', '2007-11-07', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7834, '2009-02-04', 'chad', 'Parker', '', '', '', '', NULL, '', NULL, 'caparks18@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-02-04', '2009-02-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6299, '2007-11-20', 'Kristen', 'Dow', '', '', '', '', NULL, '', NULL, 'adow6985@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6300, '2007-11-20', 'Dave', 'Rich', '', '', '', '', NULL, '', NULL, 'aems_medic19@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6301, '2007-11-20', 'Arlene', 'Feller', '', '', '', '', NULL, '', NULL, 'afeller957@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7969, '2009-04-02', 'Marie', 'Kenny', '2788 W Genesee St', 'Lapeer', 'MI', '48446', NULL, '810-245-4564', NULL, 'mebkenny@msn.com', NULL, NULL, true, 6, NULL, 'Below is information on our benefit and our donation request.  I would love for you to receive some new business through this and also have it be financially beneficial for you.  If you wanted to do a free night with a paid night, or some sort of "extra''s package" with a two night stay, or another idea of your choice, that would be wonderful!\r
+\r
+The soccer families from Lapeer Michigan are joining together in order to raise money for the new Lapeer East and Lapeer West varsity field.   We have two high schools and are working together as a community to create one varsity soccer field that both schools can use.  Our community Optimist group generously built a grass field.  We are now trying to raise money to finish the project.    Monies raised from this event will enable us to move towards furnishing the facility with team benches, bleachers, a sound system and storage shed. \r
+\r
+We are looking for donations that we can include in our auction on May 15.   The busy vacation time is soon to arrive and we are looking for new vacation ideas for our families that will draw their interest.    We would love to include you on our donors list and “top vacation destinations list”.  In return, your business name will appear in our fliers as well as any promotional material leading up to the date of the auction.  Ads will be run in the County Press (circulation 11,691) and LA View (circulation 35,000).  At the auction, each bidder will receive a program booklet that will include all your contact information as well.  We expect to have more than 600 bidders at the auction.  A tax deductible donor form is attached.\r
+\r
+Thank you for your consideration.  With your generosity we can make this a spectacular event and take a big step towards fulfilling facility goals.  We also hope that through your donation, some of our supporters will be visiting you for one of their vacation stops this year.\r
+\r
+\r
+\r
+Marie Kenny\r
+Lapeer East 1994\r
+Chairperson- Pasta Dinner/Auction\r
+2788 W. Genesee St.\r
+Lapeer, MI 48446\r
+mebkenny@msn.com \r
+(810) 245-4564\r
+', NULL, NULL, '', ':Family Vacation:Romantic Getaway:Soccer Weekend:Summer Vacation:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6303, '2007-11-20', 'Anne', 'Kruszewski', '', '', '', '', NULL, '', NULL, 'akruszewski207035mi@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6304, '2007-11-20', 'Michelle', 'Albert', '', '', '', '', NULL, '', NULL, 'albert_jen2002@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8216, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'jalexander@saultstar.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6308, '2007-11-20', 'Ryan', 'Maier', '', '', '', '', NULL, '', NULL, 'anryinfl@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6312, '2007-11-20', 'Bobbi', 'Galarno', '', '', '', '', NULL, '', NULL, 'bgalarno@spsd.net', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6313, '2007-11-20', 'Brian', 'Garvey', '', '', '', '', NULL, '', NULL, 'bgarveycpa@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6315, '2007-11-20', 'Brian', 'Jaynes', '', '', '', '', NULL, '', NULL, 'bjaynes@jerviswebb.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6316, '2007-11-20', 'Robert', 'Garvey', '', '', '', '', NULL, '', NULL, 'bobgarvey@ameritech.net', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6320, '2007-11-20', 'Bernadette', 'Harkness', '', '', '', '', NULL, '', NULL, 'bsharkne5@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6321, '2007-11-20', 'Linda', 'Burns', '', '', '', '', NULL, '', NULL, 'burfam6@shianet.org', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6322, '2007-11-20', 'Craig', 'Leland', '', '', '', '', NULL, '', NULL, 'buroak2thdoc@embarqmail.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6324, '2007-11-20', 'Bob', 'Weiss', '', '', '', '', NULL, '', NULL, 'bweiss@vinu.edu', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6326, '2007-11-20', 'Carolyn', 'Conklin', '', '', '', '', NULL, '', NULL, 'cac82980@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6327, '2007-11-20', 'Caroline', 'Campbell', '', '', '', '', NULL, '', NULL, 'campbellmom2@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6328, '2007-11-20', 'Christine', 'McCoy', '', '', '', '', NULL, '', NULL, 'camtem@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6329, '2007-11-20', 'Michael', 'Kontos', '', '', '', '', NULL, '', NULL, 'cathedraldean@rrohio.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6330, '2007-11-20', 'David', 'Cawthon', '', '', '', '', NULL, '', NULL, 'cawthon@chartermi.net', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6332, '2007-11-20', 'Carol', 'Lalka', '', '', '', '', NULL, '', NULL, 'cclalka@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6318, '2007-11-20', 'Jane', 'Kerrigan', '', '', '', '', NULL, '', NULL, 'bridgetsma@netzero.net', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', ':23:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6334, '2007-11-20', 'Cynthia', 'Dudek', '', '', '', '', NULL, '', NULL, 'cdudek4@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6335, '2007-11-20', 'Lori', 'Grysman', '', '', '', '', NULL, '', NULL, 'cgrysman@rogers.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6337, '2007-11-20', 'Cheryl', 'Lewandowski', '', '', '', '', NULL, '', NULL, 'cheryl74hygiene@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6338, '2007-11-20', 'Cheryl', 'Krisniski', '', '', '', '', NULL, '', NULL, 'cherylmel@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6340, '2007-11-20', 'Harry', 'Cole', '', '', '', '', NULL, '', NULL, 'cole22468@wideopenwest.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6341, '2007-11-20', 'Dianna', 'Collins', '', '', '', '', NULL, '', NULL, 'collinsd@ewashtenaw.org', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6343, '2007-11-20', 'Deanna', 'Flynn', '', '', '', '', NULL, '', NULL, 'crescent26@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6345, '2007-11-20', 'Dawn', 'Cruz', '', '', '', '', NULL, '', NULL, 'cruzindawn@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6348, '2007-11-20', 'John', 'Whitehead', '', '', '', '', NULL, '', NULL, 'cwjw@wowway.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7745, '2009-02-02', 'Carol', 'Barry', '', '', '', '', NULL, '', NULL, '6barry97@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-02-02', '2009-02-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6350, '2007-11-20', 'Thomas', 'Fedewa', '', '', '', '', NULL, '', NULL, 'dalefedewa@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6351, '2007-11-20', 'David', 'Edwards', '', '', '', '', NULL, '', NULL, 'dane0123@charter.net', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6352, '2007-11-20', 'David ', 'Willson', '', '', '', '', NULL, '', NULL, 'davewillson@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7835, '2009-02-04', 'Steve', 'Carlson', '', '', '', '', NULL, '', NULL, 'carlson54@msn.com', NULL, NULL, true, NULL, NULL, '', '2009-02-04', '2009-02-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6354, '2007-11-20', 'David', 'Briegal', '', '', '', '', NULL, '', NULL, 'dbriegel@swmich.edu', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7921, '2009-02-17', 'Patrick', 'McLaughlin', '', '', '', '', NULL, '', NULL, 'patrick@mmgtv.com', NULL, NULL, true, NULL, NULL, '', '2009-02-17', '2009-02-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6356, '2007-11-20', 'Derek', 'Diacono', '', '', '', '', NULL, '', NULL, 'ddiacono@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6358, '2007-11-20', 'David', 'Griffus', '', '', '', '', NULL, '', NULL, 'dgriffus@umich.edu', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6359, '2007-11-20', 'Diane', 'Charbonneau', '', '', '', '', NULL, '', NULL, 'dianecharb@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7970, '2009-04-06', 'Thomas & Denise', 'Crystal', '', '', '', '', NULL, '', NULL, 'schdt597@cs.com', NULL, NULL, true, NULL, NULL, '', '2009-04-06', '2009-04-06', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6361, '2007-11-20', 'David', 'Nacht', '', '', '', '', NULL, '', NULL, 'dnacht@nachtlaw.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6362, '2007-11-20', 'Christine', 'McCarthy', '', '', '', '', NULL, '', NULL, 'dnmccarthy@ameritech.net', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8039, '2009-05-22', 'Bob', 'Quackenbush', '', '', '', '', NULL, '', NULL, 'rquack@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-05-22', '2009-05-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6364, '2007-11-20', 'Dorothea', 'Genetos', '', '', '', '', NULL, '', NULL, 'dorotheaag322@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6365, '2007-11-20', 'Damon', 'Parker', '', '', '', '', NULL, '', NULL, 'dpkts@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8131, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'cb_heaser@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6367, '2007-11-20', 'Oleg', 'Dubkovetski', '', '', '', '', NULL, '', NULL, 'dubkovetski@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10036, '2013-07-23', 'nicole', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'ndsnyder13@yahoo.com', 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)', '24.140.90.75', false, NULL, NULL, NULL, '2013-07-26', '2013-07-28', NULL, NULL, NULL, ':3:', '2', NULL, '1', NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6369, '2007-11-20', 'Chris', 'Clark', '', '', '', '', NULL, '', NULL, 'elclark@deloitte.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6371, '2007-11-20', 'Linda', 'Emaus', '', '', '', '', NULL, '', NULL, 'emo_mom49@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6372, '2007-11-20', 'Mike', 'Eykens', '', '', '', '', NULL, '', NULL, 'eykens@sympatico.ca', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6373, '2007-11-20', 'Gail', 'Roberts', '', '', '', '', NULL, '', NULL, 'gail7084@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8217, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'james.faulkner@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6375, '2007-11-20', 'George', 'Ames', '', '', '', '', NULL, '', NULL, 'games3832@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6376, '2007-11-20', 'Gary', 'Garlock', '', '', '', '', NULL, '', NULL, 'garlockg@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6424, '2007-11-20', 'Joyce', 'Stoflinsky', '', '', '', '', NULL, '', NULL, 'joycestof@columbus.rr.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', ':23:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6378, '2007-11-20', 'Tony', 'Cammarata', '', '', '', '', NULL, '', NULL, 'gcamm71@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6379, '2007-11-20', 'Denise', 'Chapman', '', '', '', '', NULL, '', NULL, 'gchapman@csdesigngroup.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6380, '2007-11-20', 'John', 'Girard', '', '', '', '', NULL, '', NULL, 'girard@chartermi.net', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6402, '2007-11-20', 'Joel', 'Drechny', '', '', '', '', NULL, '', NULL, 'jcdrechny@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6382, '2007-11-20', 'Tracy', 'Hackman', '', '', '', '', NULL, '', NULL, 'glenhackman@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6383, '2007-11-20', 'Amy and David', 'Green', '', '', '', '', NULL, '', NULL, 'greenenterprises@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6384, '2007-11-20', 'Liliana', 'Stoneback', '', '', '', '', NULL, '', NULL, 'gstoneb669@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6385, '2007-11-20', 'Harold', 'Shugarman', '', '', '', '', NULL, '', NULL, 'hal@shugarman.net', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6386, '2007-11-20', 'Harry', 'Miller', '', '', '', '', NULL, '', NULL, 'harry.miller@trw.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6387, '2007-11-20', 'Harry', 'Rajt', '', '', '', '', NULL, '', NULL, 'harry_rajt@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6388, '2007-11-20', 'Herbert', 'Driscoll', '', '', '', '', NULL, '', NULL, 'hbdriscoll@charter.net', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6389, '2007-11-20', 'Heather', 'Christian', '', '', '', '', NULL, '', NULL, 'hchristian@hanover.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6390, '2007-11-20', 'Heidi', 'Doyle', '', '', '', '', NULL, '', NULL, 'hdoyle@charter.net', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6391, '2007-11-20', 'Hina', 'Desai', '', '', '', '', NULL, '', NULL, 'hisanjani@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6392, '2007-11-20', 'Howard', 'Lee', '', '', '', '', NULL, '', NULL, 'howardlee@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6393, '2007-11-20', 'Heather', 'Hufnagel', '', '', '', '', NULL, '', NULL, 'hrhuf@voyager.net', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6394, '2007-11-20', 'Joey', 'Huston', '', '', '', '', NULL, '', NULL, 'huston@msu.edu', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8278, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'kdjonas@charter.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6396, '2007-11-20', 'Greg', 'Abraham', '', '', '', '', NULL, '', NULL, 'infoarch2@msn.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6397, '2007-11-20', 'Alicia', 'Knox', '', '', '', '', NULL, '', NULL, 'jad0177@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6398, '2007-11-20', 'James', 'Hummert', '', '', '', '', NULL, '', NULL, 'jamiehummert@msn.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6399, '2007-11-20', 'Roxanne', 'Brooks', '', '', '', '', NULL, '', NULL, 'jamrbrooks@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6400, '2007-11-20', 'janet', 'Spiegel', '', '', '', '', NULL, '', NULL, 'janetlspiegel@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6401, '2007-11-20', 'John', 'Bahlman', '', '', '', '', NULL, '', NULL, 'jbahlman@dstewart.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8341, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'millsgang@shaw.ca', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6403, '2007-11-20', 'Jack', 'Christensen', '', '', '', '', NULL, '', NULL, 'jchris6811@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6404, '2007-11-20', 'John', 'Lewis', '', '', '', '', NULL, '', NULL, 'jdlewis172@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8393, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'rlwagner99@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6405, '2007-11-20', 'Jeff', 'Hutting', '', '', '', '', NULL, '', NULL, 'jeff.hutting@autoliv.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6406, '2007-11-20', 'Jennifer', 'Franke', '', '', '', '', NULL, '', NULL, 'jenfranke1@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9599, '2011-09-23', 'Mark', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'idolguard-mcjd@yahoo.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SearchToolbar 1.1; InfoPath.2; AskTB5.6)', '76.249.45.145', false, 9, NULL, 'Looking to contact Liz Roach.  Is she still there selling real estate?  Do you have a contact #?\r
+\r
+Thanks,\r
+Mark', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6411, '2007-11-20', 'Jill', 'Bentley', '', '', '', '', NULL, '', NULL, 'jillbentley4@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6409, '2007-11-20', 'Joe ', 'Horn', '', '', '', '', NULL, '', NULL, 'jh3157@att.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8884, '2009-10-22', 'Joseph', 'Sullivan ', '', '', '', '', NULL, '', NULL, 'sullijos@yahoo.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-22', '2009-10-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7971, '2009-04-06', 'Richard & Susan', 'Dudzik', '', '', '', '', NULL, '', NULL, 'dudzikrj@yahoo.com ', NULL, NULL, true, NULL, NULL, '', '2009-04-06', '2009-04-06', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8040, '2009-05-22', 'Dick', 'Hitch', '', '', '', '', NULL, '', NULL, 'rphitch@ameritech.net', NULL, NULL, true, NULL, NULL, '', '2009-05-22', '2009-05-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6413, '2007-11-20', 'Jim', 'Williams', '', '', '', '', NULL, '', NULL, 'jjw@wwrplaw.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6445, '2007-11-20', 'John', 'Kirwan', '', '', '', '', NULL, '', NULL, 'kirwanje@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6415, '2007-11-20', 'Lisa', 'Fulgenzi', '', '', '', '', NULL, '', NULL, 'jlfulgenzi@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6417, '2007-11-20', 'John', 'McGehee', '', '', '', '', NULL, '', NULL, 'jmcgehee@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6427, '2007-11-20', 'James', 'Baumgartner', '', '', '', '', NULL, '', NULL, 'jwbaumgartner1@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', ':23:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6419, '2007-11-20', 'Marissa', 'Williams', '', '', '', '', NULL, '', NULL, 'jnay@msdwt.k12.in.us', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6420, '2007-11-20', 'John', 'Fields', '', '', '', '', NULL, '', NULL, 'jnfields1@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6421, '2007-11-20', 'Joerg', 'Burzer', '', '', '', '', NULL, '', NULL, 'joerg.burzer@gmx.de', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6422, '2007-11-20', 'John', 'McMahon', '', '', '', '', NULL, '', NULL, 'johng@mcmahonbaldwin.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6423, '2007-11-20', 'Joshua', 'Dulin', '', '', '', '', NULL, '', NULL, 'joshua_dulin@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8218, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'janetkellerman@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6425, '2007-11-20', 'Judy', 'Calewarts', '', '', '', '', NULL, '', NULL, 'judith.calewarts@aurora.org', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6426, '2007-11-20', 'Julie', 'MacArthur', '', '', '', '', NULL, '', NULL, 'julie.macarthur@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8279, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'kellyo@chartermi.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6428, '2007-11-20', 'Jason', 'Weisler', '', '', '', '', NULL, '', NULL, 'jweisler@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6429, '2007-11-20', 'Kathryn', 'Logan', '', '', '', '', NULL, '', NULL, 'kalogan2@uiuc.edu', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6430, '2007-11-20', 'Karen', 'Brines', '', '', '', '', NULL, '', NULL, 'karenbrines@charter.net', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6431, '2007-11-20', 'Michael', 'Sharp', '', '', '', '', NULL, '', NULL, 'kathleen@plumspring.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6432, '2007-11-20', 'Kathleen', 'Summers', '', '', '', '', NULL, '', NULL, 'kathys711@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6433, '2007-11-20', 'Kevin', 'Beadle', '', '', '', '', NULL, '', NULL, 'kb2697@att.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8342, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'mistephans@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6436, '2007-11-20', 'Charlene', 'Madison', '', '', '', '', NULL, '', NULL, 'kcabmadison@peoplepc.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6437, '2007-11-20', 'Kathie & Mark', 'Cesario', '', '', '', '', NULL, '', NULL, 'kcesario@mhc.net', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6438, '2007-11-20', 'Patty', 'Kearly', '', '', '', '', NULL, '', NULL, 'kearly@chartermi.net', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6439, '2007-11-20', 'Kelly', 'Hahn', '', '', '', '', NULL, '', NULL, 'kelpro12@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6440, '2007-11-20', 'Ken', 'McLaughlin', '', '', '', '', NULL, '', NULL, 'kenmclaughlin@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6441, '2007-11-20', 'Mr. and Mrs.', 'Herman', '', '', '', '', NULL, '', NULL, 'khahn@pentastaraviation.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6442, '2007-11-20', 'Keri', 'Hultink', '', '', '', '', NULL, '', NULL, 'khultink@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8394, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'rnimps@wcoil.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6444, '2007-11-20', 'Kirk', 'Olson', '', '', '', '', NULL, '', NULL, 'Kirklolson@msn.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8437, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'srdreez@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6446, '2007-11-20', 'Kristi', 'Lewis', '', '', '', '', NULL, '', NULL, 'kjdlewis@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8474, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'tom.nienhaus@live.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6448, '2007-11-20', 'Karen', 'Sucher', '', '', '', '', NULL, '', NULL, 'klsucher@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8508, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'z629@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6451, '2007-11-20', 'Kristy', 'Stratman', '', '', '', '', NULL, '', NULL, 'kocenasek@co.genesee.mi.us', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8563, '2009-07-17', 'Ann', 'Steenwyk', '', '', '', '', NULL, '', NULL, 'kasteenwyk@charter.net', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6453, '2007-11-20', 'Richard', 'Letarte', '', '', '', '', NULL, '', NULL, 'kriss@nhtt.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6454, '2007-11-20', 'Kristine', 'Austin', '', '', '', '', NULL, '', NULL, 'kristine13@msn.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6455, '2007-11-20', 'Kelly', 'Thomas', '', '', '', '', NULL, '', NULL, 'krthomas1@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6458, '2007-11-21', 'Michael', 'La Charite', '', '', '', '', NULL, '', NULL, 'lacharit@edzone.net', NULL, NULL, true, NULL, NULL, '', '2007-11-21', '2007-11-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6459, '2007-11-21', 'Renee', 'Lane', '', '', '', '', NULL, '', NULL, 'lane447@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-11-21', '2007-11-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8513, '2009-06-15', 'Janet', 'pugno', '', '', '', '', NULL, '', NULL, 'janpugno@yahoo.com', NULL, NULL, false, 4, 3, 'We are arriving this Thurs, June 18th , Res # 80843.We will need two high chairs and 2 pack and play baby cribs.\r
+Thank you.\r
+Jan Pugno ', NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6461, '2007-11-21', 'Lindsay', 'Nicholson', '', '', '', '', NULL, '', NULL, 'lindsay_erickson@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-11-21', '2007-11-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6462, '2007-11-21', 'Lisa', 'Bott', '', '', '', '', NULL, '', NULL, 'lisabott@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2007-11-21', '2007-11-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8592, '2009-07-17', 'Bill', 'Rimmke', '', '', '', '', NULL, '', NULL, 'rimmsouth@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6464, '2007-11-21', 'Laurel', 'MacKay', '', '', '', '', NULL, '', NULL, 'liwymi_1972@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-11-21', '2007-11-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6465, '2007-11-21', 'Jane', 'McNally', '', '', '', '', NULL, '', NULL, 'ljmcnally@shaw.ca', NULL, NULL, true, NULL, NULL, '', '2007-11-21', '2007-11-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6466, '2007-11-21', 'Lynne', 'Kent', '', '', '', '', NULL, '', NULL, 'lkent329@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-11-21', '2007-11-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6467, '2007-11-21', 'Tim and Laurette', 'Stone', '', '', '', '', NULL, '', NULL, 'lmstone@comerica.com', NULL, NULL, true, NULL, NULL, '', '2007-11-21', '2007-11-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6468, '2007-11-21', 'Lori', 'Maurice', '', '', '', '', NULL, '', NULL, 'lorim@ci.royal-oak.mi.us', NULL, NULL, true, NULL, NULL, '', '2007-11-21', '2007-11-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6469, '2007-11-21', 'Lisa', 'Sutton', '', '', '', '', NULL, '', NULL, 'lsutton@hrblock.com', NULL, NULL, true, NULL, NULL, '', '2007-11-21', '2007-11-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6470, '2007-11-21', 'Luciana', 'Antonelli', '', '', '', '', NULL, '', NULL, 'luciana_antonelli@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-11-21', '2007-11-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6471, '2007-11-21', 'Lynn', 'Kennedy', '', '', '', '', NULL, '', NULL, 'lynn.kennedy@eds.com', NULL, NULL, true, NULL, NULL, '', '2007-11-21', '2007-11-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6473, '2007-11-21', 'Jon Christian', 'McCall', '', '', '', '', NULL, '', NULL, 'm3lamm@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-11-21', '2007-11-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7747, '2009-02-02', 'Adam', 'Lis', '', '', '', '', NULL, '', NULL, 'adamlis01@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-02-02', '2009-02-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6475, '2007-11-21', 'Anne Marie', 'Jurack', '', '', '', '', NULL, '', NULL, 'mackybaby2@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-11-21', '2007-11-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6477, '2007-11-21', 'Mary', 'Bester', '', '', '', '', NULL, '', NULL, 'marybester@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-11-21', '2007-11-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7923, '2009-02-17', 'Paul', 'Beitz', '', '', '', '', NULL, '', NULL, 'paul.beitz@cbre.com', NULL, NULL, true, NULL, NULL, '', '2009-02-17', '2009-02-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6479, '2007-11-21', 'Mary', 'Parsons', '', '', '', '', NULL, '', NULL, 'maryparsons77@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-11-21', '2007-11-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7972, '2009-04-06', 'Tony           ', 'Ferlito', '', '', '', '', NULL, '', NULL, 'tonyf@ferlitoconstruction.com', NULL, NULL, true, NULL, NULL, '', '2009-04-06', '2009-04-06', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6481, '2007-11-21', 'Lisa', 'Shepard', '', '', '', '', NULL, '', NULL, 'mattshep@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-11-21', '2007-11-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6482, '2007-11-21', 'Matt', 'Sinke', '', '', '', '', NULL, '', NULL, 'mattsinke@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-11-21', '2007-11-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6483, '2007-11-21', 'Susannah', 'Thomas', '', '', '', '', NULL, '', NULL, 'matt-susannah@chartermi.net', NULL, NULL, true, NULL, NULL, '', '2007-11-21', '2007-11-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6484, '2007-11-21', 'Melissa', 'Fabits', '', '', '', '', NULL, '', NULL, 'mbfabits@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-11-21', '2007-11-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6485, '2007-11-21', 'Matt', 'Catlin', '', '', '', '', NULL, '', NULL, 'mcatlin@futureeng.com', NULL, NULL, true, NULL, NULL, '', '2007-11-21', '2007-11-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8041, '2009-05-22', 'Ann', 'Titus', '', '', '', '', NULL, '', NULL, 'pdtamt@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-05-22', '2009-05-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6487, '2007-11-21', 'Michael', 'Cox', '', '', '', '', NULL, '', NULL, 'mcox@galaxyc.us', NULL, NULL, true, NULL, NULL, '', '2007-11-21', '2007-11-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6488, '2007-11-21', 'Molly', 'Evans', '', '', '', '', NULL, '', NULL, 'mevans9@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-11-21', '2007-11-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8133, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'chris.waier@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8219, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'janetlynnbree@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8280, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'kemclean@dow.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6492, '2007-11-21', 'Kathleen', 'Merryman', '', '', '', '', NULL, '', NULL, 'mivol@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2007-11-21', '2007-11-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8343, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'mnmckellar@mshiplaw.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6494, '2007-11-21', 'Marilyn', 'Westbrook', '', '', '', '', NULL, '', NULL, 'mjwestbrook@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-11-21', '2007-11-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6495, '2007-11-21', 'Mark', 'Gates', '', '', '', '', NULL, '', NULL, 'mmbagates@charter.net', NULL, NULL, true, NULL, NULL, '', '2007-11-21', '2007-11-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6496, '2007-11-21', 'Maria', 'Miller', '', '', '', '', NULL, '', NULL, 'mmiller5@hfhs.org', NULL, NULL, true, NULL, NULL, '', '2007-11-21', '2007-11-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6497, '2007-11-21', 'Teressa', 'Zettelmaier', '', '', '', '', NULL, '', NULL, 'mnikitas@tds.net', NULL, NULL, true, NULL, NULL, '', '2007-11-21', '2007-11-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8395, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'robertf@myself.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8438, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'staceybaker@campbelldodge.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6500, '2007-11-21', 'Michael', 'Theile', '', '', '', '', NULL, '', NULL, 'mtheile@co.genesee.mi.us', NULL, NULL, true, NULL, NULL, '', '2007-11-21', '2007-11-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6501, '2007-11-21', 'natalie', 'Snow', '', '', '', '', NULL, '', NULL, 'nbncsnow@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2007-11-21', '2007-11-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6502, '2007-11-21', 'Natasha', 'Crowell', '', '', '', '', NULL, '', NULL, 'nbutkovich@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-11-21', '2007-11-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6503, '2007-11-21', 'Nancy', 'Golden', '', '', '', '', NULL, '', NULL, 'nkgolden@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-11-21', '2007-11-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6504, '2007-11-21', 'Gus', 'Kott', '', '', '', '', NULL, '', NULL, 'noelkott@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2007-11-21', '2007-11-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8475, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'tomnewcomb@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6506, '2007-11-21', 'James', 'Murray', '', '', '', '', NULL, '', NULL, 'oedy@adelphia.net', NULL, NULL, true, NULL, NULL, '', '2007-11-21', '2007-11-21', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6508, '2007-11-23', 'Robert', 'Brown', '', '', '', '', NULL, '', NULL, 'pachas@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6509, '2007-11-23', 'Phyllis', 'Allen', '', '', '', '', NULL, '', NULL, 'pachesney1@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6510, '2007-11-23', 'Linda', 'Parker', '', '', '', '', NULL, '', NULL, 'parkerdirtcycle@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8509, '2009-06-08', 'John', 'Cooper', '', '', '', '', NULL, '', NULL, 'johncooper02@sprynet.com', NULL, NULL, true, 9, NULL, 'Arriving with group for Buttons on Thursday, Condo numbers 18 and 20.  Is there an outdoor fire pit for evening relaxing on property?', NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6512, '2007-11-23', 'Patricia', 'Riggs', '', '', '', '', NULL, '', NULL, 'patlriggs@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9463, '2010-12-20', 'amy', 'kremer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'amykremer72@yahoo.com', 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_8; en-us) AppleWebKit/533.18.1 (KHTML, like Gecko) Version/5.0.2 Safari/533.18.5', '24.247.180.188', false, 6, 2, NULL, '2010-12-27', '2010-12-30', NULL, ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8564, '2009-07-17', 'Dan', 'Stuart', '', '', '', '', NULL, '', NULL, 'danbstuart@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6515, '2007-11-23', 'Phillip', 'Labelle', '', '', '', '', NULL, '', NULL, 'philip.labelle@marriott.com', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6516, '2007-11-23', 'Pamela', 'Forton', '', '', '', '', NULL, '', NULL, 'profftu@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8593, '2009-07-17', 'Peter', 'Vanden Berg', '', '', '', '', NULL, '', NULL, 'p.vberg@att.net', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6518, '2007-11-23', 'Floy', 'Schaeffer', '', '', '', '', NULL, '', NULL, 'pshaeffam@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8649, '2009-07-17', 'Randy', '', '', '', '', '', NULL, '810-635-2916', NULL, '', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6521, '2007-11-23', 'Bob', 'Musch', '', '', '', '', NULL, '', NULL, 'r.musch@dowcorning.com', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6522, '2007-11-23', 'Dottie', 'Britz', '', '', '', '', NULL, '', NULL, 'randdcellars@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7748, '2009-02-02', 'Jessica', 'Adams', '', '', '', '', NULL, '', NULL, 'adamsj18@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-02-02', '2009-02-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6524, '2007-11-23', 'Richard', 'Bryant', '', '', '', '', NULL, '', NULL, 'rbryant156@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6525, '2007-11-23', 'Rebecca', 'Gowan', '', '', '', '', NULL, '', NULL, 'rgowan@randmcnally.com', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6526, '2007-11-23', 'Susan', 'Halonen', '', '', '', '', NULL, '', NULL, 'rhalonen@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6527, '2007-11-23', 'Rhonda', 'Gould', '', '', '', '', NULL, '', NULL, 'rhondagreg87@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6531, '2007-11-23', 'Joseph', 'Rebh', '', '', '', '', NULL, '', NULL, 'rrconstruction05@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6529, '2007-11-23', 'Richard', 'Storch', '', '', '', '', NULL, '', NULL, 'richard.storch@hp.com', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6530, '2007-11-23', 'Rose', 'Noble', '', '', '', '', NULL, '', NULL, 'rosen@catholicweb.com', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6523, '2007-11-23', 'Richard', 'Bainter', '', '', '', '', NULL, '', NULL, 'rbainter@newmarcorp.com', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6553, '2007-11-23', 'Sheila', 'McNab', '', '', '', '', NULL, '', NULL, 'mcnab@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7838, '2009-02-05', 'Neil ', 'Wallace ', '', '', '', '', NULL, '', NULL, 'newall@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-02-05', '2009-02-05', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7924, '2009-02-17', 'Paula', 'Harris', '', '', '', '', NULL, '', NULL, 'paulaharris@juf.org', NULL, NULL, true, NULL, NULL, '', '2009-02-17', '2009-02-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6535, '2007-11-23', 'Rob', 'Johnson', '', '', '', '', NULL, '', NULL, 'rwjohnson@aaamichigan.com', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7973, '2009-04-06', 'Deborah       ', 'Filos', '', '', '', '', NULL, '', NULL, 'dfilos@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-04-06', '2009-04-06', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6537, '2007-11-23', 'Sandy', 'Lorence', '', '', '', '', NULL, '', NULL, 'sandyfleet@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6538, '2007-11-23', 'Sashi', 'Krishnamoorthy', '', '', '', '', NULL, '', NULL, 'sashi_arthi@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6539, '2007-11-23', 'Manny', 'Sanchez', '', '', '', '', NULL, '', NULL, 'sbsan@charter.net', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6540, '2007-11-23', 'Sandra', 'Dailey', '', '', '', '', NULL, '', NULL, 'sdailey11@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8134, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'ciucanudobra@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6542, '2007-11-23', 'Suzanne', 'Knoff', '', '', '', '', NULL, '', NULL, 'sdknoff@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8220, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'janiwilliams@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6544, '2007-11-23', 'Scott', 'Wooster', '', '', '', '', NULL, '', NULL, 'sewooster@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6545, '2007-11-23', 'Sharon', 'Koscik', '', '', '', '', NULL, '', NULL, 'sharon.koscik@osumc.edu', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6546, '2007-11-23', 'Michele', 'Short', '', '', '', '', NULL, '', NULL, 'shortj@plainfieldchartertwp.org', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6547, '2007-11-23', 'Scott', 'Hunter', '', '', '', '', NULL, '', NULL, 'shunter@amwaygrand.com', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8281, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'ken@completeco.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6549, '2007-11-23', 'Sandy', 'Brady', '', '', '', '', NULL, '', NULL, 'slb@oaklandcountycu.com', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6550, '2007-11-23', 'Kirk', 'Sledzinski', '', '', '', '', NULL, '', NULL, 'sledski1@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6551, '2007-11-23', 'Julia', 'Royzenblat', '', '', '', '', NULL, '', NULL, 'slyjul_6973@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6552, '2007-11-23', 'Shari', 'Maat', '', '', '', '', NULL, '', NULL, 'smaat@charter.net', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8344, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'moesern@wideopenwest.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6554, '2007-11-23', 'Scott', 'Larson', '', '', '', '', NULL, '', NULL, 'smlarsen1@juno.com', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6555, '2007-11-23', 'rebecca', 'Stasch', '', '', '', '', NULL, '', NULL, 'stasch5445@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8396, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'roger.quagliano@quebecorworld.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6557, '2007-11-23', 'Steven', 'Pasbjerg', '', '', '', '', NULL, '', NULL, 'stevepasbjerg@wowway.com', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6558, '2007-11-23', 'Amy', 'Stygles', '', '', '', '', NULL, '', NULL, 'stygles@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8439, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'stahlemhs@ameritech.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8476, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'tompark@parkinsurance.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8510, '2009-06-08', 'Katrin', ' ', '', '', '', '', NULL, '', NULL, 'fins2theleft@charter.net', NULL, NULL, true, NULL, NULL, '', NULL, NULL, 'We have a reservation for fathers day weekend under Storer and need to know if wireless internet access is available.  Please advise', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6562, '2007-11-23', 'Svetlana', 'Zikherman', '', '', '', '', NULL, '', NULL, 'szikherman@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6563, '2007-11-23', 'Suzanne', 'Best', '', '', '', '', NULL, '', NULL, 't.t.best@att.net', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6564, '2007-11-23', 'Ted', 'Salna', '', '', '', '', NULL, '', NULL, 'Ted_Salna@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6565, '2007-11-23', 'Dennis', 'Dameron', '', '', '', '', NULL, '', NULL, 'tenadameron@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6566, '2007-11-23', 'Tim', 'Tenbusch', '', '', '', '', NULL, '', NULL, 'tenbuschii@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6602, '2007-12-06', 'Steve', '', '', '', '', '', NULL, '', NULL, 'stevepercha@umich.edu', NULL, NULL, false, 4, 0, 'I am unable to view the prices for the available condos on the weekend on Jan 18 - could you please give me the rates?  Also, are there any ski packages available with a reservation for this weekend?\r
+\r
+Thank you!!\r
+\r
+Steve', '2008-01-18', '2008-01-20', '', ':Ski Trip:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6569, '2007-11-23', 'Thomas', 'Enders', '', '', '', '', NULL, '', NULL, 'the@salvagegroups.com', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8565, '2009-07-17', 'Bob and Nan', 'Commissaris', '', '', '', '', NULL, '', NULL, 'nthompson@jvtr.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6571, '2007-11-23', 'Richard', 'Anderson', '', '', '', '', NULL, '', NULL, 'theramax@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6572, '2007-11-23', 'Tim', 'Hunnicutt', '', '', '', '', NULL, '', NULL, 'thunnicutt@hoveycompanies.com', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6574, '2007-11-23', 'Tom', 'Lewis', '', '', '', '', NULL, '', NULL, 'tlewis3@hfhs.org', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8734, '2009-09-12', 'Kent Cornwall', 'Kent Cornwall', '224 Lawrence Road', 'NEW YORK', 'NEW YORK', '11111', NULL, '000-000-0000', NULL, 'kent3236@gmail.com', NULL, NULL, true, NULL, NULL, '', NULL, NULL, 'Search Engine Optimization\r
+We would like to get your website on first page of Google.\r
+All of our processes use the most ethical "white hat" Search Engine Optimization techniques that will not get your website banned or penalized.\r
+Please reply and I would be happy to send you a proposal.\r
+In order for us to respond to your request for information, please include your company’s website address (mandatory) and or phone number.\r
+', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7925, '2009-02-17', 'Cheri', 'Fox', '', '', '', '', NULL, '', NULL, 'pcfoxhouse@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-02-17', '2009-02-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6577, '2007-11-23', 'Anthony', 'Modaffare', '', '', '', '', NULL, '', NULL, 'tmodaffare@ser-us.com', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6578, '2007-11-23', 'Kimberly', 'Hageman', '', '', '', '', NULL, '', NULL, 'todkimhag@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6579, '2007-11-23', 'Thomas', 'Cousins', '', '', '', '', NULL, '', NULL, 'tomandsharyn@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7839, '2009-02-05', 'Nancy ', 'Daniel', '', '', '', '', NULL, '', NULL, 'njdaniel@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-02-05', '2009-02-05', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6581, '2007-11-23', 'Julie', 'Bowles', '', '', '', '', NULL, '', NULL, 'tribowles@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6582, '2007-11-23', 'Tricia', 'Findh', '', '', '', '', NULL, '', NULL, 'trishfinch@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7974, '2009-04-06', 'Dan & Joanne', 'Kristensen', '', '', '', '', NULL, '', NULL, 'kristensen@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-04-06', '2009-04-06', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6584, '2007-11-23', 'Victoria', 'Galpin', '', '', '', '', NULL, '', NULL, 'victoriag@juno.com', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6585, '2007-11-23', 'Victoria', 'Shanahan', '', '', '', '', NULL, '', NULL, 'vshanahan16@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6586, '2007-11-23', 'Laura', 'Ditto', '', '', '', '', NULL, '', NULL, 'vwditto@adelphia.net', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8043, '2009-05-22', 'David', 'Murbach', '', '', '', '', NULL, '', NULL, 'davidmurbach@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-05-22', '2009-05-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8135, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'clark.mike@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6589, '2007-11-23', 'Will', 'Iglikowski', '', '', '', '', NULL, '', NULL, 'wiglikow@umich.edu', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6590, '2007-11-23', 'Laura', 'Wilczynski', '', '', '', '', NULL, '', NULL, 'wilczynl@saline.k12.mi.us', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6591, '2007-11-23', 'Janette', 'Carras', '', '', '', '', NULL, '', NULL, 'williamcarras@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6592, '2007-11-23', 'William', 'Roemer', '', '', '', '', NULL, '', NULL, 'wroemer@bex.net', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8221, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'janluedtke@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6594, '2007-11-23', 'Eric', 'Zimmerman', '', '', '', '', NULL, '', NULL, 'zimco01@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8282, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'kenfine@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6597, '2007-11-23', 'Marsha', 'Lyttle', '', '', '', '', NULL, '', NULL, 'mra-inc@chartermi.net', NULL, NULL, true, 6, 5, 'Tried to check rates and availability on line but site doesn''t allow a "back" function to view other condos without starting search over.  Please advise rate and any availability for this date period.', '2007-12-27', '2007-12-30', '', ':Ski Trip:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6598, '2007-11-29', 'Judy ', 'Dodge', '2470 walenjus', 'Holt', 'MI', '48842', NULL, '517 353-4420 ext. 307', NULL, 'dodgej@msu.edu', NULL, NULL, false, 4, 5, 'Are small dogs (around 5lbs) allowed?', NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6599, '2007-11-29', 'Irene', 'Marco', '2648 Alger Street SE', 'Grand Rapids,', 'MI', '49546', NULL, '616-974-0664', NULL, 'i.marco@yahoo.com', NULL, NULL, true, NULL, 1, 'Unit 12 and 38.', '2007-12-29', '2008-01-02', 'I am interested in units for sale.', ':Real Estate:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6600, '2007-11-30', 'Henry', 'Vecchioni', '7657 Elmbrooke Way', 'Brighton', 'MI', '48116', NULL, '810-229-4848', NULL, 'hvecchio@charter.net', NULL, NULL, true, 9, NULL, 'I am contacting you to ensure we pay the balance for reservation #76358, 12/29/07-1/01/08. Please call me. Thank you.', NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8397, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'rolmaster7@charter.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6604, '2007-12-10', 'Donna', 'Poyner', '', '', '', '', NULL, '248-885-0446', NULL, 'donna.poyner@caretechsolutions.com', NULL, NULL, false, 8, NULL, 'I will be staying in one of your condos over the next couple days and I was wondering if the wireless internet is available inside all of the condos or just in your conference room?', NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6605, '2007-12-28', 'chad', 'osborne', '41422 coolidge st', 'belleville', 'michigan', '48111', NULL, '734-834-3621', NULL, 'vbfd30@comcast.net', NULL, NULL, true, 1, 6, 'can we substitute one course for another in the big fore package.', '2008-04-01', '2008-08-31', '', ':Big 4 Golf Package:Golf Trip:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6606, '2008-01-02', 'Joe', '', '', '', '', '', NULL, '', NULL, '741@yahoo.com', NULL, NULL, false, 7, NULL, 'You do not need to respond, but I think it would be a great idea if you guys paired with nubs and boyne to create ski and stay pacages. I hope you will consider doing this because I am thinking about coming to trout creek soon.', NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8440, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'stank5486@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6608, '2008-01-08', 'Jim', 'Lucas', '', '', '', '', NULL, '920-540-0632', NULL, 'jim.avs@hotmail.com', NULL, NULL, false, 9, NULL, 'Last summer my family and I stayed in unit 128 for an extended period of time. We were very happy with our stay and I''m sure we will be returning. My question is, can you get me the brandand style information of the bed in the master bedroom of this unit? We haven''t slept as good as when we were there. Thank you,JimLucas', NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8477, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'tr.collins@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9337, '2010-04-15', 'Nick', 'Roopas', '4152 Lake Forest Drive East', 'Ann Arbor', 'MI', '48108', NULL, '7343415443', NULL, 'nickroopas@yahoo.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB6.4; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; Media Center PC 5.0; SLCC1; AskTB5.5)', '98.224.225.52', true, NULL, NULL, NULL, NULL, NULL, NULL, ':15:12:11:2:18:22:16:24:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8526, '2009-07-15', 'Cecelia', 'Maloney', 'CP Road', 'New York ', 'New York ', '10001', NULL, '', NULL, 'cmceceliamaloney540@gmail.com', NULL, NULL, true, 6, NULL, ' Do you wish you could increase your online leads?  Getting a 1st page Google ranking is easier and more cost-effective than you might think.  We have helped a lot of businesses thrive in this market and we can help you!  Simply hit reply and I’ll share with you the cost and the benefits. See you at the top! \r
+', NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6612, '2008-02-06', 'Matthew', 'Smith', '4975 west river road', 'Mt Pleasant', 'MI', '48858', NULL, '1-989-330-4460', NULL, 'mattsmithomatic@gmail.com', NULL, NULL, true, 6, 5, 'I would like a room with the dual showers if possible.', '2008-04-13', '2008-04-20', '', ':Romantic Getaway:Wedding Group:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6256, '2007-09-28', 'Randal', 'Huber', '', '', '', '', NULL, '', NULL, 'rhuber@firstii.com', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3287, '2005-08-30', 'Eric', 'Toczylowski', '', '', '', '', NULL, '', NULL, 'estoz@wowway.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', ':23:', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6615, '2008-02-22', 'Dora', 'Ferrari', '', '', '', '', NULL, '', NULL, 'dferrari01@gmail.com', NULL, NULL, false, NULL, 2, '', NULL, NULL, 'Actually considering a purchase situation for a summer home for a family of equestrians', ':Real Estate:Trout Creek Owner:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6616, '2008-02-23', 'Ron', 'Brown', 'GR', 'GR', 'MI', '49506', NULL, '616-956-7163', NULL, 'Ron@RBBusinessImageServices.com', NULL, NULL, false, 8, NULL, '', NULL, NULL, 'Attn/Marketing Director\r
+\r
+Would you like to affordably advertise Traverse City to millions of affluent West Michigan consumers ?\r
+\r
+Rates from only $300/mo\r
+\r
+At RiverTown Crossings Mall-Busiest location in West Michigan with 15 million annual visitors\r
+\r
+At Celebration Cinemas: Grand Rapids,Muskegon,Mount Pleasant,Lansing,Benton Harbor,Portage\r
+\r
+Email us for more info.\r
+', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7975, '2009-04-06', 'Jim & Barb       ', 'Lawson', '', '', '', '', NULL, '', NULL, 'bjlawson@hughes.net', NULL, NULL, true, NULL, NULL, '', '2009-04-06', '2009-04-06', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9945, '2013-04-05', 'Raymond', 'Nowicki', '6460 Sunningdale Dr.', 'Bloomfield Hills', 'MI', '48301', NULL, '248-408-4099', NULL, 'raynman219@gmail.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.43 Safari/537.31', '75.39.35.238', true, 9, 5, NULL, '2013-05-17', '2013-05-18', NULL, ':15:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6635, '2008-03-12', 'Julie', 'Petrie', '', '', '', '', NULL, '', NULL, 'jpetrie@fhps.us', NULL, NULL, true, NULL, NULL, '', '2008-03-12', '2008-03-12', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6620, '2008-03-10', 'Shawna', 'Clute', '1102 MeadowView Dr.', 'Jackson', 'Ga', '30233', NULL, '989-295-7071', NULL, 'shopaholic24seven@gmail.com', NULL, NULL, true, 4, NULL, 'Hi, I was just wondering if you had a package deal for renting your conference/banquet room and renting 2 condos for family? We live in Georgia and we are planning to have our small wedding in Petoskey/Harbor Springs area, I am just wondering if having a small wedding ( about 30-35 guest attending)in your banquet room is available to do. The date we are looking at to have the actual wedding is June 26,2008.\r
+\r
+Any suggestions would be helpful.\r
+\r
+Thank you,\r
+Troy & Shawna ', NULL, NULL, '', ':Wedding Group:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6621, '2008-03-12', '', '', '', '', '', '', NULL, '', NULL, 'kzoowave@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-03-12', '2008-03-12', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6622, '2008-03-12', '', '', '', '', '', '', NULL, '', NULL, 'dcopeland@businesspeople.com', NULL, NULL, true, NULL, NULL, '', '2008-03-12', '2008-03-12', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6623, '2008-03-12', 'Sandra', 'Werner', '', '', '', '', NULL, '', NULL, 'sanwerner@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-03-12', '2008-03-12', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7840, '2009-02-05', 'Jennifer', 'Otersen', '', '', '', '', NULL, '', NULL, 'njotersen@verizon.net', NULL, NULL, true, NULL, NULL, '', '2009-02-05', '2009-02-05', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6625, '2008-03-12', '', '', '', '', '', '', NULL, '', NULL, 'force4@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-03-12', '2008-03-12', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6626, '2008-03-12', '', '', '', '', '', '', NULL, '', NULL, 'lpgasman1075@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-03-12', '2008-03-12', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8136, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'claudiahuffmaster@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7750, '2009-02-02', 'Amy', 'Gilliam', '', '', '', '', NULL, '', NULL, 'agilliam@acsc.net', NULL, NULL, true, NULL, NULL, '', '2009-02-02', '2009-02-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6627, '2008-03-12', 'Karen', 'Johnson', '', '', '', '', NULL, '', NULL, 'mark-karen@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-03-12', '2008-03-12', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8222, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'jaquette@charter.net', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6624, '2008-03-12', 'Michele', 'Pirrone', '', '', '', '', NULL, '', NULL, 'michele_pirrone@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-03-12', '2008-03-12', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6634, '2008-03-12', 'Kevin', 'DeTrude', '', '', '', '', NULL, '', NULL, 'kdetrude@dslindiana.net', NULL, NULL, true, NULL, NULL, '', '2008-03-12', '2008-03-12', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8283, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'kenn32@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8346, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'mush11@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6641, '2008-04-15', 'Andrew', 'Daily', '', '', '', '', NULL, '', NULL, 'adaily@twmi.rr.com', NULL, NULL, true, NULL, NULL, '', '2008-04-15', '2008-04-15', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6637, '2008-03-31', 'David', 'Brainard', '1939 Providence NE', 'Grand Rapids', 'MI', '49525', NULL, '616-292-6411', NULL, 'davidbrainard@cbc-on-line.com', NULL, NULL, true, 8, NULL, 'We have spent between 10 days and 2 weeks at Boyne Highlands 4 of the last 5 Summers. \r
+We are planning to come North again in July and are weighing out our \r
+options.  Looking at probably July 10-19.  We''ll have two adults and 4 kids (ages 9 and under).  I need your best rate as we will be comparing with what the \r
+Highlands has to offer.\r
+\r
+Please e-mail me your response.\r
+\r
+--David--\r
+', '2008-07-10', '2008-07-19', 'Having been in the area...see comments below.', ':Biking:Family Vacation:Fishing:Summer Vacation:Tennis:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6638, '2008-04-04', 'Kevin', 'Rouse', '', '', '', '', NULL, '', NULL, 'kkjr107@aol.com', NULL, NULL, false, 9, NULL, 'I stayed in Unit 20 last weekend with the Rouse-Ayoub party, I believe I left my eye glassed in downstairs front bedroom on dresser. Any way you could ask cleaning staff our take a look for me?', NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6639, '2008-04-10', 'sheila', 'semrou', '313 E Warnimont Ave', 'Milwaukee', 'WI', '53207', NULL, '414 861 6675', NULL, 'ssemrou@milwpc.com', NULL, NULL, true, 6, 5, 'Can you mail me a hardcopy brochure', NULL, NULL, '', ':Boating/Sailing:Fishing:Romantic Getaway:Tennis:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6640, '2008-04-10', 'Kelly ', 'Wellings', '431 Kimberly', 'Birmingham', 'MI', '48009', NULL, '248 203 2914', NULL, 'kelbuckley@hotmail.com', NULL, NULL, true, 6, 4, 'Hello,\r
+We are very interested in coming to stay at your resort with our 2 and 4 year old and we would like to know how far away the nearest sandy beaches,  restaurants and downtown harbor springs are please.  Thank you very much for your help and hopefully we''ll see you soon.\r
+Kind regards\r
+Kelly Wellings', '2008-08-11', '2008-08-21', '', ':Family Vacation:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8398, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'rosecity1@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6643, '2008-04-25', 'Jamy', 'Hengesbach', '', '', '', '', NULL, '', NULL, 'jrh779@yahoo.com', NULL, NULL, false, 8, 5, '', NULL, NULL, 'More info on Unit # 29 that''s for sale.  Is there a rental program and can you provided gross income amounts for a year.  Is there an association fee and what does it cover?  Thanks, ', ':Real Estate:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8441, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'stevegz02@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6645, '2008-04-29', 'Lori', 'Wilson', '', '', '', '', NULL, '', NULL, 'cuneofam@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-04-29', '2008-04-29', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8478, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'trberndt@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8566, '2009-07-17', 'Liam', 'Van Vorhis', '', '', '', '', NULL, '', NULL, 'mr.vanvorhis@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8594, '2009-07-17', 'Sam', 'Masih', '', '', '', '', NULL, '', NULL, 'smasih4@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8609, '2009-07-17', 'Josh', 'Yurich', '', '', '', '', NULL, '', NULL, 'joshuayurich@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8620, '2009-07-17', 'Dan', 'Kelly', '', '', '', '', NULL, '', NULL, 'superdan777@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8650, '2009-07-17', 'Jerry', 'Bollman', '', '', '', '', NULL, '810-343-8282', NULL, '', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6646, '2008-04-29', 'Jennifer', 'Hercreg', '', '', '', '', NULL, '', NULL, 'jhercreg@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2008-04-29', '2008-04-29', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (255, '2003-08-17', 'Christian', 'Houy', '', 'Howell', 'MI', '48843', NULL, '', NULL, 'CAHOUY@SBCglobal.net', NULL, NULL, true, NULL, NULL, '', '2003-08-17', '2003-08-17', 'owner guest', ':23:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6648, '2008-04-29', 'Alex', 'Hultgren', '', '', '', '', NULL, '', NULL, 'ahultgre@umich.edu', NULL, NULL, true, NULL, NULL, '', '2008-04-29', '2008-04-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8137, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'coachperrie@charter.net', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6660, '2008-05-01', 'Roy', 'Schneider', '', '', '', '', NULL, '', NULL, 'artimiss@bex.net', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6661, '2008-05-01', 'C.M.', 'Keoleian', '', '', '', '', NULL, '', NULL, 'asarmoudlian@msn.com', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7976, '2009-04-06', 'Bonnie', 'Perkins ', '', '', '', '', NULL, '', NULL, 'bonnieperkins@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-04-06', '2009-04-06', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6663, '2008-05-01', 'Amber', 'Vaughn', '', '', '', '', NULL, '', NULL, 'avaughn@emich.edu', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6650, '2008-04-29', 'Andy', 'Geater', '', '', '', '', NULL, '', NULL, 'andygeater@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-04-29', '2008-04-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6654, '2008-04-29', 'Thomas', 'Hughes', '', '', '', '', NULL, '', NULL, 'angelalhughes@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-04-29', '2008-04-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8045, '2009-05-22', 'J', 'Rocholl', '', '', '', '', NULL, '', NULL, 'jrocholl@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-05-22', '2009-05-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6670, '2008-05-01', 'Bill', 'Candey', '', '', '', '', NULL, '', NULL, 'bcandey@wadetrim.com', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6655, '2008-04-29', 'Zaharias', 'Veziridis', '', '', '', '', NULL, '', NULL, 'angelika.veziridis@googlemail.com', NULL, NULL, true, NULL, NULL, '', '2008-04-29', '2008-04-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8223, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'jaycarr63@msn.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6659, '2008-04-29', 'Ark', 'Kalinowski', '', '', '', '', NULL, '', NULL, 'arkkal@cogeco.ca', NULL, NULL, true, NULL, NULL, '', '2008-04-29', '2008-04-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8284, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'kenretire@att.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6665, '2008-05-01', 'Kristin', 'Dolinsky', '', '', '', '', NULL, '', NULL, 'babykennedysmom@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6666, '2008-05-01', 'Jill', 'Barthlow', '', '', '', '', NULL, '', NULL, 'bartjilll@charter.net', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6667, '2008-05-01', 'Brynne', 'Coletti', '', '', '', '', NULL, '', NULL, 'basmfc@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8347, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'nadolnyjenna@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8885, '2009-10-22', 'Dean', 'Tondreau', '', '', '', '', NULL, '', NULL, 'maxig88@att.net ', NULL, NULL, true, NULL, NULL, '', '2009-10-22', '2009-10-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8911, '2009-10-26', 'Kathy', 'Leiter', '', '', '', '', NULL, '', NULL, 'timgandkathyj@charter.net ', NULL, NULL, true, NULL, NULL, '', '2009-10-26', '2009-10-26', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8399, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'rpkys@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6673, '2008-05-01', 'Thomas', 'Jordan', '', '', '', '', NULL, '', NULL, 'BDJordan86@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8442, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'stevek@deckernut.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6675, '2008-05-01', 'Barbara', 'Dawes', '', '', '', '', NULL, '', NULL, 'bdawes@hmfdlaw.com', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8479, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'trick@toronto.ca', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8517, '2009-06-27', 'Randall', 'Vaughn', '', '', '', '', NULL, '', NULL, 'leslielvaughn@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-27', '2009-06-27', '', ':14:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8567, '2009-07-17', 'Bobby', 'V', '', '', '', '', NULL, '', NULL, 'veliofski@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8595, '2009-07-17', 'Mark', 'Thibault', '', '', '', '', NULL, '', NULL, 'markt@bcmac.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6680, '2008-05-01', 'Blair', 'Williams', '', '', '', '', NULL, '', NULL, 'blairwill@wideopenwest.com', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6681, '2008-05-01', 'Balajee', 'Nallamothu', '', '', '', '', NULL, '', NULL, 'bnallamothu@gmail.com', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6682, '2008-05-01', 'Bob ', 'Hanson', '', '', '', '', NULL, '', NULL, 'bob.hanson@hutchinsonssi.com', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6683, '2008-05-01', 'Jan', 'Rich', '', '', '', '', NULL, '', NULL, 'bobandjan@toast.net', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6684, '2008-05-01', 'Bob', 'Minnema', '', '', '', '', NULL, '', NULL, 'bobminn@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8610, '2009-07-17', 'Cole', 'Weber', '', '', '', '', NULL, '', NULL, 'coleweber@bell.blackberry.net', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6686, '2008-05-01', 'Patricia', 'Hardy', '', '', '', '', NULL, '', NULL, 'bozhardy@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6687, '2008-05-01', 'Aldona', 'Pleirys', '', '', '', '', NULL, '', NULL, 'brakauskas01@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6688, '2008-05-01', 'Brandon', 'Odell', '', '', '', '', NULL, '', NULL, 'brandon.odell@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6689, '2008-05-01', 'Brian', 'Scully', '', '', '', '', NULL, '', NULL, 'brian.p.scully@gmail.com', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6690, '2008-05-01', 'Brian', 'Wohlscheid', '', '', '', '', NULL, '', NULL, 'brianw@alertequip.com', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6691, '2008-05-01', 'Brittnee', 'Huntley', '', '', '', '', NULL, '', NULL, 'brittineeo@bex.net', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6692, '2008-05-01', 'Bruce', 'Havenga', '', '', '', '', NULL, '', NULL, 'bruce.havenga@focuspg.com', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8621, '2009-07-17', 'Stephen', 'Kale', '', '', '', '', NULL, '', NULL, 'sjkale@ameritech.net', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8629, '2009-07-17', 'Kevin', 'Wolfram', '', '', '', '', NULL, '', NULL, 'kswolfram@charter.net', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6695, '2008-05-01', 'David ', 'Ro', '', '', '', '', NULL, '', NULL, 'burntmushu@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6696, '2008-05-01', 'May', 'Pak', '', '', '', '', NULL, '', NULL, 'butterfly6787@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8636, '2009-07-17', 'Scott', 'Abbott', '', '', '', '', NULL, '', NULL, 'darillest356@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6698, '2008-05-01', 'Carol', 'Durnwald', '', '', '', '', NULL, '', NULL, 'cabuss12@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8641, '2009-07-17', 'Dave', 'Lichner', '', '', '', '', NULL, '', NULL, 'djlwarrenville@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6700, '2008-05-01', 'Carol', 'Stapleton', '', '', '', '', NULL, '', NULL, 'carolstapleton@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6701, '2008-05-01', 'Demian', 'Manceau', '', '', '', '', NULL, '', NULL, 'carriemanceau@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6702, '2008-05-01', 'Catherine', 'Adams', '', '', '', '', NULL, '', NULL, 'catherine_m_adams@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6703, '2008-05-01', 'Cathleen', 'DeBurton', '', '', '', '', NULL, '', NULL, 'cgdeburton@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6704, '2008-05-01', 'Christine', 'Grifka', '', '', '', '', NULL, '', NULL, 'cgrifka48843@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7718, '2008-11-25', 'Megan', 'Ristau', '', '', '', '', NULL, '', NULL, 'gregandmeg@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-11-25', '2008-11-25', '', ':23:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6706, '2008-05-01', 'Christy', 'Winnell', '', '', '', '', NULL, '', NULL, 'christy_winnell@whirlpool.com', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8527, '2009-07-17', 'Dan', 'Allen', '', '', '', '', NULL, '', NULL, 'danallensr@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6709, '2008-05-01', 'Ji', 'Cleis', '', '', '', '', NULL, '', NULL, 'cleis5@charter.net', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7977, '2009-04-06', 'Cindy ', 'Schwartz', '', '', '', '', NULL, '', NULL, 'schw21@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-04-06', '2009-04-06', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6711, '2008-05-01', 'Clint', 'Guess', '', '', '', '', NULL, '', NULL, 'clint_guess@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6712, '2008-05-01', 'Colleen', 'Dougherty', '', '', '', '', NULL, '', NULL, 'cmdougherty@logic.bm', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6713, '2008-05-01', 'Colleen', 'Flanagan', '', '', '', '', NULL, '', NULL, 'cmflanagan@ameritech.net', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6714, '2008-05-01', 'C. Michael', 'Healy', '', '', '', '', NULL, '', NULL, 'cmichael.healy@ilitchholdings.com', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6715, '2008-05-01', 'Bonnie', 'Nungester', '', '', '', '', NULL, '', NULL, 'CNunge6341@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7842, '2009-02-05', 'Michael', 'Markowitz', '', '', '', '', NULL, '', NULL, 'nm3djs@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-02-05', '2009-02-05', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6717, '2008-05-01', 'Rob', 'Bailey', '', '', '', '', NULL, '', NULL, 'concorp@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6718, '2008-05-01', 'Colin', 'Connor', '', '', '', '', NULL, '', NULL, 'connorc18@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6719, '2008-05-01', 'John', 'Fluharty', '', '', '', '', NULL, '', NULL, 'coquettefluharty@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6720, '2008-05-01', 'Mark ', 'Dagnan', '', '', '', '', NULL, '', NULL, 'countrylawn@mac.com', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6721, '2008-05-01', 'Christina', 'Palo', '', '', '', '', NULL, '', NULL, 'cpalo@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6722, '2008-05-01', 'Craig', 'Grembowski', '', '', '', '', NULL, '', NULL, 'craigtamgrem@peoplepc.com', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6723, '2008-05-01', 'Chuck', 'Meek', '', '', '', '', NULL, '', NULL, 'CWMMEEK@AOL.COM', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6724, '2008-05-01', 'Carol ', 'VanSickle', '', '', '', '', NULL, '', NULL, 'cwv@trihull.com', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6725, '2008-05-01', 'Debi', 'Kaczynski', '', '', '', '', NULL, '', NULL, 'dakaczynski@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6726, '2008-05-01', 'Daniel', 'Maas', '', '', '', '', NULL, '', NULL, 'Danielpmaas@maplenet.net', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6727, '2008-05-01', 'Joe', 'Kucik', '', '', '', '', NULL, '', NULL, 'dc7730@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8046, '2009-05-22', 'P', 'Lamarche', '', '', '', '', NULL, '', NULL, 'plamarche@blonde-little.com', NULL, NULL, true, NULL, NULL, '', '2009-05-22', '2009-05-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8138, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'coloradogradys@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8224, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'jbring@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6731, '2008-05-01', 'Deborah', 'Katz', '', '', '', '', NULL, '', NULL, 'debkatz@mac.com', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6732, '2008-05-01', 'Dan ', 'Harkins', '', '', '', '', NULL, '', NULL, 'dharkins1@cogeco.ca', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8285, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'kerschke@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8348, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'nancyapeterson4@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6736, '2008-05-01', 'Denise', 'VanDrie', '', '', '', '', NULL, '', NULL, 'dkvdrie@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6737, '2008-05-01', 'Dan ', 'Leffers', '', '', '', '', NULL, '', NULL, 'dleffers@pdr-usa.net', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6739, '2008-05-01', 'Debbie', 'Maniko', '', '', '', '', NULL, '', NULL, 'dmaniko@chartermi.net', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8400, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'rracic@sympatico.ca', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6734, '2008-05-01', 'John', 'Dicker', '', '', '', '', NULL, '', NULL, 'dicker677@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8443, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'stevemarcial@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6743, '2008-05-01', 'David ', 'Shawn', '', '', '', '', NULL, '', NULL, 'donnashawn@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8480, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'trisha@cablespeed.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6745, '2008-05-01', 'Drew', 'Grzegorczyk', '', '', '', '', NULL, '', NULL, 'drewgrzegorczyk@delta.edu', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6746, '2008-05-01', 'Alison', 'Schwartz', '', '', '', '', NULL, '', NULL, 'dschwartz1@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8518, '2009-06-27', 'Bob and Joan', 'Bowman', '', '', '', '', NULL, '', NULL, 'usbowmans@cox.net', NULL, NULL, true, NULL, NULL, '', '2009-06-27', '2009-06-27', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8568, '2009-07-17', 'Brian', 'Vella', '', '', '', '', NULL, '', NULL, 'bcvella@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8596, '2009-07-17', 'Don', 'Nellis', '', '', '', '', NULL, '', NULL, 'don_nellis@msn.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6750, '2008-05-01', 'Elizabeth', 'Mosher', '', '', '', '', NULL, '', NULL, 'elizabeth.mosher@farmington.k12.mi.us', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8611, '2009-07-17', 'Dan', 'Woods', '', '', '', '', NULL, '1-810-239-5143', NULL, '', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6752, '2008-05-01', 'Eric', 'Merkle', '', '', '', '', NULL, '', NULL, 'emerkle@bdo.com', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6753, '2008-05-03', 'Sabrina', 'Williams', '', '', '', '', NULL, '', NULL, 'eshwilliams83@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6754, '2008-05-03', 'Thomas', 'Peitz', '', '', '', '', NULL, '', NULL, 'extruguru@chartermi.net', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6755, '2008-05-03', 'Renee', 'Hubbard', '', '', '', '', NULL, '', NULL, 'fatherhubbard@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8622, '2009-07-17', 'Robert', 'Garrison', '', '', '', '', NULL, '', NULL, 'citysweet1@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8630, '2009-07-17', 'Ron', 'Englehart', '', '', '', '', NULL, '', NULL, 'rengleha@itape.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6758, '2008-05-03', 'Carole', 'Fetke', '', '', '', '', NULL, '', NULL, 'fetke@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6759, '2008-05-03', 'Annette', 'Fink', '', '', '', '', NULL, '', NULL, 'finkville@bex.net', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8637, '2009-07-17', 'Marc', 'Laytham', '', '', '', '', NULL, '', NULL, 'marcus.laytham@louisvilleky.gov', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6761, '2008-05-03', 'Aaron', 'Freudigman', '', '', '', '', NULL, '', NULL, 'fordfreud@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8777, '2009-10-20', 'Paul', 'Driedger', '', '', '', '', NULL, '', NULL, 'pdriedgr@mnsi.net ', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8922, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'adams@wmich.edu', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6763, '2008-05-03', 'Greg', 'Benefiel', '', '', '', '', NULL, '', NULL, 'g.benny@charter.net', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7753, '2009-02-02', 'Glenn', 'King', '', '', '', '', NULL, '', NULL, 'agking@peoplepc.com', NULL, NULL, true, NULL, NULL, '', '2009-02-02', '2009-02-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6765, '2008-05-03', 'George', 'Edwards', '', '', '', '', NULL, '', NULL, 'gedwards@pls-usa.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6766, '2008-05-03', 'Geogre', 'Kinsler', '', '', '', '', NULL, '', NULL, 'geokinsler@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7843, '2009-02-05', 'Norman ', 'Bird ', '', '', '', '', NULL, '', NULL, 'norm_l_bird@comerica.com', NULL, NULL, true, NULL, NULL, '', '2009-02-05', '2009-02-05', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6768, '2008-05-03', 'Giancarlo', 'Pinterpe', '', '', '', '', NULL, '', NULL, 'giancarlo.pinterpe@grubb-ellis.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6769, '2008-05-03', 'Jennifer', 'Gilmore', '', '', '', '', NULL, '', NULL, 'gilmore610@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6770, '2008-05-03', 'Greg', 'Lewandowski', '', '', '', '', NULL, '', NULL, 'greglewand@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6771, '2008-05-03', 'Lori', 'Wilson', '', '', '', '', NULL, '', NULL, 'gringargentina@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6772, '2008-05-03', 'Charles', 'Handley', '', '', '', '', NULL, '', NULL, 'Handleychaz@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6773, '2008-05-03', 'Daniel', 'Harro', '', '', '', '', NULL, '', NULL, 'harroc@iserv.net', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7209, '2008-09-22', 'Amy', 'Eagle', '', '', '', '', NULL, '', NULL, 'eaglefamly@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', ':17:23:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6775, '2008-05-03', 'Diane', 'Moritz', '', '', '', '', NULL, '', NULL, 'hcmiii@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6776, '2008-05-03', 'Rachel', 'Helms', '', '', '', '', NULL, '', NULL, 'helmsr@frcohio.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6777, '2008-05-03', 'Tina', 'Hopp', '', '', '', '', NULL, '', NULL, 'hopt@chartermi.net', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7929, '2009-02-17', 'Travis ', 'Piper', '', '', '', '', NULL, '', NULL, 'pipers0511@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-02-17', '2009-02-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8753, '2009-10-16', 'Michelle ', 'Barclay', '', '', '', '', NULL, '', NULL, 'prestonmichelle@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-10-16', '2009-10-16', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7978, '2009-04-06', 'Josephine       ', 'Simon ', '', '', '', '', NULL, '', NULL, 'bsimon44@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-04-06', '2009-04-06', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6781, '2008-05-03', 'Jason', 'Shaw', '', '', '', '', NULL, '', NULL, 'jasonshaw@delta.edu', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8047, '2009-05-22', 'Joseph', 'Trippel', '', '', '', '', NULL, '', NULL, 'joe.trippel@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-05-22', '2009-05-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6783, '2008-05-03', 'Jaymee', 'Gross', '', '', '', '', NULL, '', NULL, 'jaymee_gross@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6784, '2008-05-03', 'Judith', 'Landau', '', '', '', '', NULL, '', NULL, 'jblandau@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6785, '2008-05-03', 'Julie', 'Byrd', '', '', '', '', NULL, '', NULL, 'jbyrd96@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6786, '2008-05-03', 'Theresa', 'Caruana', '', '', '', '', NULL, '', NULL, 'jcar415@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6787, '2008-05-03', 'Carolyn', 'Brooks', '', '', '', '', NULL, '', NULL, 'jcbrooksie@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6788, '2008-05-03', 'Jean', 'Charboneau', '', '', '', '', NULL, '', NULL, 'jcharboneau@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6789, '2008-05-03', 'Joseph', 'Reid', '', '', '', '', NULL, '', NULL, 'jdreid3@capitolbancorp.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6790, '2008-05-03', 'Jane', 'Debbrecht', '', '', '', '', NULL, '', NULL, 'jedebb@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6779, '2008-05-03', 'James', 'Patee', '', '', '', '', NULL, '', NULL, 'jamespattee@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6792, '2008-05-03', 'Jennifer', 'Backus', '', '', '', '', NULL, '', NULL, 'jennifer.backus@dominos.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6793, '2008-05-03', 'James', 'Fitch', '', '', '', '', NULL, '', NULL, 'jfitch3@ford.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6794, '2008-05-03', 'Jim', 'Pappas', '', '', '', '', NULL, '', NULL, 'jim@s3svc.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8926, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'akiko@chartermi.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6796, '2008-05-03', 'Madisn', 'Baja', '', '', '', '', NULL, '', NULL, 'jjbbaja@chartermi.net', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6797, '2008-05-03', 'Joseph', 'Behrend', '', '', '', '', NULL, '', NULL, 'jjbehrend@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6798, '2008-05-03', 'Janet', 'Kaczmarek', '', '', '', '', NULL, '', NULL, 'jkaczmarek@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6799, '2008-05-03', 'Joshua', 'Rhoda', '', '', '', '', NULL, '', NULL, 'jlrhoda76@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6800, '2008-05-03', 'Jonathon', 'Mattis', '', '', '', '', NULL, '', NULL, 'jmattis@owens-minor.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8225, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'jbsearch310@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6802, '2008-05-03', 'Angela', 'Feltz', '', '', '', '', NULL, '', NULL, 'jnafeltz@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6803, '2008-05-03', 'James', 'Bohdan', '', '', '', '', NULL, '', NULL, 'jnbohdan@juno.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8286, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'kevbo@kevbo.us', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6805, '2008-05-03', 'Jodi', 'Fichera', '', '', '', '', NULL, '', NULL, 'jodifichera@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6806, '2008-05-03', 'John', 'Thornburgh', '', '', '', '', NULL, '', NULL, 'john.thornburgh@icemiller.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8349, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'nantzw@bronsonhg.org', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8401, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'rrrobien@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6809, '2008-05-03', 'E.', 'Murray', '', '', '', '', NULL, '', NULL, 'joy.murray@cengage.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6810, '2008-05-03', 'Joseph', 'Zimmerman', '', '', '', '', NULL, '', NULL, 'jpzimmerman24@msn.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6811, '2008-05-03', 'Joe', 'Quay', '', '', '', '', NULL, '', NULL, 'jquay1@stu.wccnet.edu', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6813, '2008-05-03', 'Jean', 'Scroggin', '', '', '', '', NULL, '', NULL, 'jscroggin@fumcmid.org', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6814, '2008-05-03', 'Jim', 'Suchara', '', '', '', '', NULL, '', NULL, 'jsuchara@eeiglobal.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6815, '2008-05-03', 'John', 'Travis', '', '', '', '', NULL, '', NULL, 'jtravisanminc@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6816, '2008-05-03', 'Julia', 'Dos Santos', '', '', '', '', NULL, '', NULL, 'julia.navaro@detroitdiesel.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6817, '2008-05-03', 'Kevin & Kathy', 'Merlo', '', '', '', '', NULL, '', NULL, 'kamerlo@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8444, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'stewartcarpetcleaning@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6818, '2008-05-03', 'Karen', 'Woodgate', '', '', '', '', NULL, '', NULL, 'karwp@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6819, '2008-05-03', 'Kathy ', 'Bender', '', '', '', '', NULL, '', NULL, 'kbender@chartermi.net', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6820, '2008-05-03', 'Kim ', 'Danowski', '', '', '', '', NULL, '', NULL, 'kdanowski@msn.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6821, '2008-05-03', 'Matt', 'Kelleher', '', '', '', '', NULL, '', NULL, 'kellehermd@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7754, '2009-02-02', 'Mira', 'Cooper', '', '', '', '', NULL, '', NULL, 'agracoopkids@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-02-02', '2009-02-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6823, '2008-05-03', 'Lory', 'Kingsley', '', '', '', '', NULL, '', NULL, 'Kingsley3@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6824, '2008-05-03', 'Ken', 'Keegan', '', '', '', '', NULL, '', NULL, 'kjkeegan@comerica.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6825, '2008-05-03', 'Jackie', 'Kleino', '', '', '', '', NULL, '', NULL, 'kleinoj@msn.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6827, '2008-05-03', 'Kristin', 'Combs', '', '', '', '', NULL, '', NULL, 'kristi@strategicmail.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6828, '2008-05-03', 'Keith', 'Roeder', '', '', '', '', NULL, '', NULL, 'kroeder33@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6861, '2008-05-03', 'Marsha & Tom ', 'Franke', '', '', '', '', NULL, '', NULL, 'marshafranke@gmail.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6830, '2008-05-03', 'Lynn', 'Dumais', '', '', '', '', NULL, '', NULL, 'ladumais@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6831, '2008-05-03', 'John', 'Lang', '', '', '', '', NULL, '', NULL, 'Langski@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6832, '2008-05-03', 'Dan', 'LaPorte', '', '', '', '', NULL, '', NULL, 'laportedan@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6833, '2008-05-03', 'Michelle', 'Lather', '', '', '', '', NULL, '', NULL, 'lathermb@chartermi.net', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6834, '2008-05-03', 'Laura', 'Chaput', '', '', '', '', NULL, '', NULL, 'laurachaput@gmail.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7930, '2009-02-17', 'Patricia ', 'Kerich', '', '', '', '', NULL, '', NULL, 'pkerich@att.net', NULL, NULL, true, NULL, NULL, '', '2009-02-17', '2009-02-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7979, '2009-04-06', 'JEFF AND PAM ', 'THORNBURGH', '', '', '', '', NULL, '', NULL, 'jthornburgh@machiningconcepts.net', NULL, NULL, true, NULL, NULL, '', '2009-04-06', '2009-04-06', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8048, '2009-05-22', 'David', 'Kaminski', '', '', '', '', NULL, '', NULL, 'davidk025@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-05-22', '2009-05-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8140, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'cunninghammichele@rocketmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6840, '2008-05-03', 'Michael', 'LeFevre', '', '', '', '', NULL, '', NULL, 'lefevre.mike@aod.org', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6841, '2008-05-03', 'Leonard', 'Jenkins', '', '', '', '', NULL, '', NULL, 'lenjenkins1@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8226, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'jcarlinodds@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6843, '2008-05-03', 'Sandra', 'Likic', '', '', '', '', NULL, '', NULL, 'likics@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8287, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'kevin.knight@safholland.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7164, '2008-09-22', 'Amy', 'Contrera', '', '', '', '', NULL, '', NULL, 'amycontrera@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6846, '2008-05-03', 'Lisa', 'Wehrmeister', '', '', '', '', NULL, '', NULL, 'lmw54729@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6847, '2008-05-03', 'Macj', 'Adama', '', '', '', '', NULL, '', NULL, 'lookmack@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6848, '2008-05-03', 'Ryan', 'Lopez', '', '', '', '', NULL, '', NULL, 'lopez773@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6849, '2008-05-03', 'Loro', 'Shea', '', '', '', '', NULL, '', NULL, 'LORIASHEA@SBCGLOBAL.NET', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6853, '2008-05-03', 'Mike ', 'Rowley', '', '', '', '', NULL, '', NULL, 'm_goblue51@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8350, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'ngiebink@umich.edu', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6852, '2008-05-03', 'Andy', 'Trestrail', '', '', '', '', NULL, '', NULL, 'ltmariner@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8713, '2009-07-30', 'Andrew', 'Scott', '', '', '', '', NULL, '', NULL, 'afscott4@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-07-30', '2009-07-30', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6854, '2008-05-03', 'Joann', 'Vettraino', '', '', '', '', NULL, '', NULL, 'm1jv4@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6855, '2008-05-03', 'Paul', 'MacIntyre', '', '', '', '', NULL, '', NULL, 'macintyreltd@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8402, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'rsmith0047@xplornet.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6857, '2008-05-03', 'Kyle', 'Mahan', '', '', '', '', NULL, '', NULL, 'maha4@fsuimail.ferris.edu', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6858, '2008-05-03', 'M. Annabelle', 'Alberts', '', '', '', '', NULL, '', NULL, 'maralberts@deloitte.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6859, '2008-05-03', 'Marcella', 'Ruscio', '', '', '', '', NULL, '', NULL, 'marcella.ruscio@mac.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6860, '2008-05-03', 'Marcia', 'Podolinsky', '', '', '', '', NULL, '', NULL, 'marciajean@brktel.on.ca', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8445, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'sthiel@airadv.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6862, '2008-05-03', 'Marty ', 'Gorno', '', '', '', '', NULL, '', NULL, 'martingorno123@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6850, '2008-05-03', 'Larry', 'Spedden', '', '', '', '', NULL, '', NULL, 'lspeedo@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8481, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'tsday96@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6865, '2008-05-03', 'Teresa', 'Schaber', '', '', '', '', NULL, '', NULL, 'matteresa@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6866, '2008-05-03', 'Matt', 'Stusick', '', '', '', '', NULL, '', NULL, 'Matthew.Stusick@Xerox.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8519, '2009-06-27', 'Bob & Judy', 'Elgin', '', '', '', '', NULL, '', NULL, 'raelgin@cox.net', NULL, NULL, true, NULL, NULL, '', '2009-06-27', '2009-06-27', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8528, '2009-07-17', 'Tyler', 'Truskoski', '', '', '', '', NULL, '', NULL, 'knightshockey22@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8569, '2009-07-17', 'Alan', 'Whitehead', '', '', '', '', NULL, '', NULL, 'al.white@td.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6871, '2008-05-03', 'Mary', 'Nicholson', '', '', '', '', NULL, '', NULL, 'MBNICH@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6872, '2008-05-03', 'Mary', 'Boster', '', '', '', '', NULL, '', NULL, 'mboster@cinci.rr.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6873, '2008-05-03', 'Donna', 'Brannagan', '', '', '', '', NULL, '', NULL, 'mdbraggs@sympatico.ca', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7171, '2008-09-22', 'Bill', 'Beslock', '', '', '', '', NULL, '', NULL, 'Beslock@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6874, '2008-05-03', 'Marcie', 'Fischer', '', '', '', '', NULL, '', NULL, 'mdfische@oakland.edu', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6875, '2008-05-03', 'Mark', 'Blough', '', '', '', '', NULL, '', NULL, 'meetama@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7980, '2009-04-06', 'Neal', 'Stone', '118 Lawrence Road', 'New York', 'New York', '11111', NULL, '000-000-0000', NULL, 'nealstone123@gmail.com', NULL, NULL, true, 1, 6, 'Search Engine Optimization\r
+\r
+We would like to get your website on first page of Google.\r
+All of our processes use the most ethical "white hat" Search Engine Optimization techniques that will not get your website banned or penalized.\r
+Please reply and I would be happy to send you a proposal.\r
+', NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6915, '2008-05-04', 'Bob ', 'Beras', '', '', '', '', NULL, '', NULL, 'rberas@donerus.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6878, '2008-05-03', 'Jean-Pierre', 'Meijer', '', '', '', '', NULL, '', NULL, 'MeijerJP@MSN.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6879, '2008-05-03', 'Sylvia', 'Meijer', '', '', '', '', NULL, '', NULL, 'MeijerSylvia@Hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6880, '2008-05-03', 'Mike ', 'Schaller', '', '', '', '', NULL, '', NULL, 'meschaller@dow.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7845, '2009-02-07', 'Carol', 'Cleary', '', '', '', '', NULL, '', NULL, 'ccleary@indy.rr.com', NULL, NULL, true, NULL, NULL, '', '2009-02-07', '2009-02-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7931, '2009-02-17', 'Polly', 'Crane ', '', '', '', '', NULL, '', NULL, 'pollywog08@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-02-17', '2009-02-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6892, '2008-05-04', 'Carl', 'Hereford', '', '', '', '', NULL, '', NULL, 'nh01478@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', ':23:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6884, '2008-05-03', 'Michael', 'Renehan', '', '', '', '', NULL, '', NULL, 'mprenehan@msn.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6885, '2008-05-03', 'Marcia', 'Ramos', '', '', '', '', NULL, '', NULL, 'mramos52@gmail.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6886, '2008-05-03', 'Maurren', 'Rouse-Ayoub', '', '', '', '', NULL, '', NULL, 'mrouse-ayoub@fishmangroup.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8141, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'dan.shar@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8754, '2009-10-16', 'Tom ', 'Beaumont', '', '', '', '', NULL, '', NULL, 'tbeaumont1@cogeco.ca', NULL, NULL, true, NULL, NULL, '', '2009-10-16', '2009-10-16', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8227, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'jcelgin@cox.net', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6881, '2008-05-03', 'Tracy', 'Metzger', '', '', '', '', NULL, '', NULL, 'metzger.4@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6891, '2008-05-04', 'Nicholas', 'Maloof', '', '', '', '', NULL, '', NULL, 'ndmaloof@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6882, '2008-05-03', 'Michelle', 'Royer', '', '', '', '', NULL, '', NULL, 'michelleroyer@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6893, '2008-05-04', 'Nicholas', 'Tomoff', '', '', '', '', NULL, '', NULL, 'nick.tomoff@gmail.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6894, '2008-05-04', 'Nicole', 'Shumway', '', '', '', '', NULL, '', NULL, 'nshumway@biggby.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6895, '2008-05-04', 'Roy', 'Harcourt', '', '', '', '', NULL, '', NULL, 'nycroyboy@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6896, '2008-05-04', 'Davis', 'O''Brien', '', '', '', '', NULL, '', NULL, 'obrien@millercanfield.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6897, '2008-05-04', 'Barbara', 'O''Connor', '', '', '', '', NULL, '', NULL, 'oconnorx2@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6898, '2008-05-04', 'Johann', 'Odermann', '', '', '', '', NULL, '', NULL, 'odiekenyon87@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6900, '2008-05-04', 'Paul', 'Ozier', '', '', '', '', NULL, '', NULL, 'ozr130@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6901, '2008-05-04', 'Pam', 'King', '', '', '', '', NULL, '', NULL, 'PAMMYKING8384@AOL.COM', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6916, '2008-05-04', 'Robert', 'Blazoff', '', '', '', '', NULL, '', NULL, 'rblazoff@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', ':23:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6903, '2008-05-04', 'Lou-Anne', 'Perfetto', '', '', '', '', NULL, '', NULL, 'persetto4@cogeco.ca', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6889, '2008-05-04', 'Sandra', 'Pierce', '', '', '', '', NULL, '', NULL, 'nbdpierce@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6905, '2008-05-04', 'Danielle', 'Riddell', '', '', '', '', NULL, '', NULL, 'pgriddell@msn.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6906, '2008-05-04', 'Joe', 'Sainato', '', '', '', '', NULL, '', NULL, 'pharma1valpo@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8288, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'Kheiters@bloomfieldtwp.org', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6908, '2008-05-04', 'Peter', 'Guthat', '', '', '', '', NULL, '', NULL, 'pjguthat@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8767, '2009-10-16', 'Craig', 'Cavagnetto', '', '', '', '', NULL, '', NULL, 'craig.cavagnetto@globalcrossing.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-16', '2009-10-16', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6910, '2008-05-04', 'Patricia', 'Lucas', '', '', '', '', NULL, '', NULL, 'plucas72@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6911, '2008-05-04', 'Dyana', 'Polderzyk', '', '', '', '', NULL, '', NULL, 'polderdd@meijer.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8351, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'ngrady08@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6913, '2008-05-04', 'Robert', 'Bokram', '', '', '', '', NULL, '', NULL, 'r.bokram@us.ionbond.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8886, '2009-10-22', 'John', 'Todevic ', '', '', '', '', NULL, '', NULL, 'jtodevic@onlink.net ', NULL, NULL, true, NULL, NULL, '', '2009-10-22', '2009-10-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8403, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'rstacy@trilla.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7582, '2008-11-13', 'Heidi', 'Piela', '', '', '', '', NULL, '', NULL, 'jchpiela@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-11-13', '2008-11-13', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6918, '2008-05-04', 'Richard', 'Conrad', '', '', '', '', NULL, '', NULL, 'rconrad@bright.net', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6919, '2008-05-04', 'Kathy', 'Reed', '', '', '', '', NULL, '', NULL, 'reedteam@chartermi.net', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6920, '2008-05-04', 'Robert', 'Gerych', '', '', '', '', NULL, '', NULL, 'rgerych@att.net', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6922, '2008-05-04', 'Ricky', 'Carlson', '', '', '', '', NULL, '', NULL, 'Rickyacarlson@westbristol.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6923, '2008-05-04', 'Robin', 'Dame', '', '', '', '', NULL, '', NULL, 'rldame@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8446, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'sue.perlin@plantemoran.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6925, '2008-05-04', 'Robin', 'Gallagher', '', '', '', '', NULL, '', NULL, 'robin.gallagher@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6926, '2008-05-04', 'Robin', 'Delaney', '', '', '', '', NULL, '', NULL, 'robindelaney@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6927, '2008-05-04', 'Mike', 'Kowalski', '', '', '', '', NULL, '', NULL, 'rocoko@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7932, '2009-02-17', 'Michelle', 'McWilliams', '', '', '', '', NULL, '', NULL, 'prettykitty682@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-02-17', '2009-02-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6938, '2008-05-04', 'Shelly', 'Claycomb', '', '', '', '', NULL, '', NULL, 'sclay@chartermi.net', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6932, '2008-05-04', 'Kelly', 'Sakkinen', '', '', '', '', NULL, '', NULL, 'sakkink@lcc.edu', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6933, '2008-05-04', 'Steve & Judy', 'Loofborow', '', '', '', '', NULL, '', NULL, 'sal@hardwoodsolutions.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6961, '2008-05-04', 'Steve', 'Sendelbach', '', '', '', '', NULL, '', NULL, 'spsendelbach@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', ':23:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6935, '2008-05-04', 'Amy', 'Hilarides', '', '', '', '', NULL, '', NULL, 'satkcat@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7981, '2009-04-07', 'Don', 'Holliday', '10135 Park Stream Drive', 'Indianapolis', 'IN', '46229', NULL, '317-894-0579', NULL, 'donlynnh@sbcglobal.net', NULL, NULL, true, 5, NULL, 'We are looking for a location for our 2010 family reunion. Approximately 140-150 people, 35-45 units. Is this a group you could handle?. Also do you have a map of your facility?', '2010-07-10', '2010-07-17', '', ':Family Reunion:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6937, '2008-05-04', 'Curtis', 'Sawdon', '', '', '', '', NULL, '', NULL, 'sawdon5c@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8050, '2009-05-22', 'Bob', 'Mumma', '', '', '', '', NULL, '', NULL, 'bobmumma@earthlink.net', NULL, NULL, true, NULL, NULL, '', '2009-05-22', '2009-05-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6939, '2008-05-04', 'Cindy', 'Scott', '', '', '', '', NULL, '', NULL, 'scott654@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6950, '2008-05-04', 'Steven', 'Solys', '', '', '', '', NULL, '', NULL, 'ssolys@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', ':23:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6941, '2008-05-04', 'Vicky', 'Joldersma', '', '', '', '', NULL, '', NULL, 'scottjoldersma@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8142, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'danieljbarberi@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8228, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'jcvelthoven@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6944, '2008-05-04', 'Sharon', 'Moser', '', '', '', '', NULL, '', NULL, 'shariandscottmoser@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6945, '2008-05-04', 'Sharon', 'Cooper', '', '', '', '', NULL, '', NULL, 'sharonoftroy@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6946, '2008-05-04', 'Mike', 'Silver', '', '', '', '', NULL, '', NULL, 'sharslip@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8289, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'kickbxgayle@bex.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6948, '2008-05-04', 'Sharon', 'Schultz', '', '', '', '', NULL, '', NULL, 'shashultz@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6949, '2008-05-04', 'Beth', 'Baker', '', '', '', '', NULL, '', NULL, 'sheepacres@gmail.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8352, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'nhendry@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8404, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'rubia702000@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8447, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'Supamonk@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6953, '2008-05-04', 'Delbert', 'Raymond III', '', '', '', '', NULL, '', NULL, 'skraymon@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6954, '2008-05-04', 'Steve', 'Leynzon', '', '', '', '', NULL, '', NULL, 'sleynzon@twmi.rr.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6955, '2008-05-04', 'Sharon', 'Severson', '', '', '', '', NULL, '', NULL, 'sls007401@charter.net', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6956, '2008-05-04', 'Sabrina', 'Milan', '', '', '', '', NULL, '', NULL, 'SMILAN@AMERISURE.COM', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6957, '2008-05-04', 'Sarah', 'Sutton', '', '', '', '', NULL, '', NULL, 'snbksutton@msn.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8482, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'tsickon@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8520, '2009-06-27', 'Lorie', 'Reits', '', '', '', '', NULL, '', NULL, 'jreits@hansonlogistics.com', NULL, NULL, true, NULL, NULL, '', '2009-06-27', '2009-06-27', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6962, '2008-05-04', 'Steve', 'Rusgo', '', '', '', '', NULL, '', NULL, 'srusgo@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8529, '2009-07-17', 'Phillip', 'Armstrong', '', '', '', '', NULL, '', NULL, 'parmstrong62@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8887, '2009-10-22', 'Joseph', 'Trippel', '', '', '', '', NULL, '', NULL, 'joe.trippel@gmail.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-22', '2009-10-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6963, '2008-05-04', 'Sherri', 'Bassett', '', '', '', '', NULL, '', NULL, 'ssbassett@localnet.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6964, '2008-05-04', 'Sharon', 'Slipek', '', '', '', '', NULL, '', NULL, 'sslip@att.net', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6965, '2008-05-04', 'Susanne', 'Monforton', '', '', '', '', NULL, '', NULL, 'ssoo44@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6966, '2008-05-04', 'Susan', 'Springer', '', '', '', '', NULL, '', NULL, 'sspringer@scslakeview-k12.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6967, '2008-05-04', 'Josephine', 'Stablein', '', '', '', '', NULL, '', NULL, 'stableinut@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8570, '2009-07-17', 'Frederick', 'Ziegel', '', '', '', '', NULL, '', NULL, 'fdziegel@mackinacresearch.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6969, '2008-05-04', 'Steve', 'Marcial', '', '', '', '', NULL, '', NULL, 'steve@kzooevents.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6970, '2008-05-04', 'Mary', 'Pohlman', '', '', '', '', NULL, '', NULL, 'stjudepohlman@juno.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8597, '2009-07-17', 'Dave', 'Stephenson', '', '', '', '', NULL, '', NULL, 'dstephenson10@cogeco.ca', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6972, '2008-05-04', 'Marty', 'Bernstein', '', '', '', '', NULL, '', NULL, 'stocktonbond@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8612, '2009-07-17', 'Lonn', 'Vasquez', '', '', '', '', NULL, '', NULL, 'lonnyshots@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6974, '2008-05-04', 'James', 'Armstrong', '', '', '', '', NULL, '', NULL, 'stretch@rcn.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6975, '2008-05-04', 'Beth', 'Barton', '', '', '', '', NULL, '', NULL, 'stu16beth@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6976, '2008-05-04', 'Susan', 'Davis', '', '', '', '', NULL, '', NULL, 'sue_davis34@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8623, '2009-07-17', 'Wanda', 'Benford', '', '', '', '', NULL, '', NULL, 'wbenford@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6978, '2008-05-04', 'Nicholas & Jeane', 'Redman', '', '', '', '', NULL, '', NULL, 'Sumtinez@msn.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6979, '2008-05-04', 'Benjamin', 'Cook', '', '', '', '', NULL, '', NULL, 'surgesy@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6980, '2008-05-04', 'Suzann', 'Humara', '', '', '', '', NULL, '', NULL, 'suzaries@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6983, '2008-05-04', 'Ronald', 'Szalewicz', '', '', '', '', NULL, '', NULL, 'szalewicz@wowway.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6984, '2008-05-04', 'Tammy', 'Suiter', '', '', '', '', NULL, '', NULL, 'tammy.suiter@jpmchase.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6985, '2008-05-04', 'Phillip', 'Hong', '', '', '', '', NULL, '', NULL, 'taniatlw@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6986, '2008-05-04', 'Peter ', 'Taylor', '', '', '', '', NULL, '', NULL, 'taylorp@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7172, '2008-09-22', 'Bizhong', 'Zhu', '', '', '', '', NULL, '', NULL, 'bizhongzhu1@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', ':23:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6988, '2008-05-04', 'Emma', 'Bailey', '', '', '', '', NULL, '', NULL, 'tbaileymd@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7933, '2009-02-18', 'Marsha', 'Wrenn', '26700 Jefferson Ct.', 'Bay Village', 'OH', '44140', NULL, '440-835-1431', NULL, 'marshawrenn@wowway.com', NULL, NULL, true, 6, 1, 'Hi Debbie - thanks again for all your helpful info this morning.  My kids have since tried to get on the website and it is again not working.  Thought I''d pass this along since you said you are not aware when it''s not working (or you may be having work done on it).  My daughter is checking her schedule and I will get back to you ASAP.  Hopefully, Unite 90 and 134 will still be open.  Many thanks!', '2009-07-11', '2009-07-18', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6990, '2008-05-04', 'Theresa', 'Silverman', '', '', '', '', NULL, '', NULL, 'TERRISILVERMAN@VERIZON.NET', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8051, '2009-05-22', 'Terry', 'Slocum', '', '', '', '', NULL, '', NULL, 'slocumagency@nomadinton.net', NULL, NULL, true, NULL, NULL, '', '2009-05-22', '2009-05-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7009, '2008-05-04', 'Cheryl', 'Schimizzi', '', '', '', '', NULL, '', NULL, 'vcschimizzi@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', ':23:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8888, '2009-10-22', 'Caroline', 'Watt', '', '', '', '', NULL, '', NULL, 'bandcwatt@rogers.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-22', '2009-10-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6994, '2008-05-04', 'Annette', 'Cowger', '', '', '', '', NULL, '', NULL, 'thecowger6@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8143, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'daolivi@sympatico.ca', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6997, '2008-05-04', 'Blair', 'Thomas', '', '', '', '', NULL, '', NULL, 'Thomasbl@cooley.edu', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6998, '2008-05-04', 'Jean', 'VanDrie', '', '', '', '', NULL, '', NULL, 'tillthen@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6999, '2008-05-04', 'Tim', 'Jarzembowski', '', '', '', '', NULL, '', NULL, 'timjarz@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7000, '2008-05-04', 'Terrance', 'Kissane', '', '', '', '', NULL, '', NULL, 'TJKissane@dow.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6993, '2008-05-04', 'Terry', 'Fry', '', '', '', '', NULL, '', NULL, 'terryzr1@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7002, '2008-05-04', 'John', 'Heid', '', '', '', '', NULL, '', NULL, 'tmarasco@ford.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7003, '2008-05-04', 'David', 'Pritchard', '', '', '', '', NULL, '', NULL, 'tpritcha@consolidated.net', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7004, '2008-05-04', 'Travis', 'Ransom', '', '', '', '', NULL, '', NULL, 'TRAVIS.RANSOM@YAHOO.COM', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7005, '2008-05-04', 'Travis', 'Harrington', '', '', '', '', NULL, '', NULL, 'travis_harringtonw@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8353, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'nichols48335@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7007, '2008-05-04', 'Timothy', 'Veeser', '', '', '', '', NULL, '', NULL, 'tveeser@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7008, '2008-05-04', 'Kurt', 'Weber', '', '', '', '', NULL, '', NULL, 'type2u@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8755, '2009-10-16', 'Teri', 'Belleau', '', '', '', '', NULL, '', NULL, 'tbelleau@sjgh.ca', NULL, NULL, true, NULL, NULL, '', '2009-10-16', '2009-10-16', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8448, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'susan@galloupguitars.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7011, '2008-05-04', 'Kristin', 'Moore', '', '', '', '', NULL, '', NULL, 'vkdmoore@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7013, '2008-05-04', 'Carl Shimbo', '', '', '', '', '', NULL, '', NULL, 'vpontious@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7014, '2008-05-04', 'Thomas', 'Contrucci', '', '', '', '', NULL, '', NULL, 'vraecontrucci@wowway.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7015, '2008-05-04', 'Thomas', 'Waraksa', '', '', '', '', NULL, '', NULL, 'waraksa1@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7016, '2008-05-04', 'William', 'Brinkerhoff', '', '', '', '', NULL, '', NULL, 'wbrinker@umich.edu', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7017, '2008-05-04', 'Wendy', 'Davis', '', '', '', '', NULL, '', NULL, 'wdavis@beckmanlawson.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7018, '2008-05-04', 'Melissa', 'Wenzler', '', '', '', '', NULL, '', NULL, 'wenzler@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7019, '2008-05-04', 'William', 'Compton', '', '', '', '', NULL, '', NULL, 'wgcompton@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7020, '2008-05-04', 'Wayne', 'Geik', '', '', '', '', NULL, '', NULL, 'wgeik@kallashenk.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7021, '2008-05-04', 'William', 'Wilkinson', '', '', '', '', NULL, '', NULL, 'wilkin42@msu.edu', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7022, '2008-05-04', 'Jeff', 'Wilson', '', '', '', '', NULL, '', NULL, 'wilsonpullum@cablespeed.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7023, '2008-05-04', 'Wojciech', 'Waszkiewicz', '', '', '', '', NULL, '', NULL, 'wojtek_91@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7024, '2008-05-04', 'Lorrie', 'Wolowich', '', '', '', '', NULL, '', NULL, 'wolowil@adsb.on.ca', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8521, '2009-06-27', 'Andrew', 'Pavlopoulos', '', '', '', '', NULL, '', NULL, 'andyp11668@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-27', '2009-06-27', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7026, '2008-05-04', 'Frederick', 'Horndt', '', '', '', '', NULL, '', NULL, 'yo-freddie@juno.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8530, '2009-07-17', 'Chris', 'Bendixen', '', '', '', '', NULL, '', NULL, 'bendixen@prodigy.net', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7028, '2008-05-04', 'Margaret', 'Buchness', '', '', '', '', NULL, '', NULL, 'zochesca@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7029, '2008-05-12', 'kathryn', 'smith', '21130 Equestrian Trail', 'northville', 'MI', '', NULL, '', NULL, 'thomas.smith1119@sbcglobal.net', NULL, NULL, true, 6, 3, 'Are any of the condos pet friendly?', '2008-08-01', '2008-08-30', '', ':Family Vacation:Summer Vacation:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7030, '2008-05-14', 'Jim', 'Small', '', '', '', '', NULL, '', NULL, 'jamessmall@cox.net', NULL, NULL, false, 9, NULL, 'do you have high speed internet connections available for my laptop?', NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8571, '2009-07-17', 'John', 'Lauer', '', '', '', '', NULL, '', NULL, 'bedrocks3@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7165, '2008-09-22', 'Arnold', 'Bostelaar', '', '', '', '', NULL, '', NULL, 'arnboss@shaw.ca', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8598, '2009-07-17', 'Bob', 'Arery', '', '', '', '', NULL, '', NULL, 'raavery@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7189, '2008-09-22', 'Lisa', 'Wolf', '', '', '', '', NULL, '', NULL, 'dalijojen@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8918, '2009-10-30', 'Jeff', 'Hayes', '', '', '', '', NULL, '', NULL, 'hj818@aol.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-30', '2009-10-30', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8631, '2009-07-17', 'Julie', 'Sellers', '', '', '', '', NULL, '', NULL, 'Jewelz6964@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9338, '2010-04-16', 'C', 'Stuard', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'cstuard2@msn.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; Media Center PC 5.1; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30729)', '67.172.9.55', true, NULL, NULL, NULL, NULL, NULL, NULL, ':12:14:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7032, '2008-05-25', 'katelynn', '', '', '', '', '', NULL, '', NULL, 'k8_denardo@hotmail.com', NULL, NULL, false, 4, NULL, 'I used to (1998-2001-ish) stay at trout creek when my mother would have medical conferences there. i loved the resort. it was perfect in every way. there were these brownies that i would always look forward to having there. i think they were catered in. any idea were they might have gotten them? local bakeries, grocery stores,etc.? or even better, would you happen to have the recipe? any information would be gladly appreciated. thanks.', NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7033, '2008-06-06', 'Scott', 'Kuligoski', '1511 S. Grant St.', 'Bay City', 'MI', '48708', NULL, '989-894-9068', NULL, 'skooly@msn.com', NULL, NULL, true, 9, NULL, 'I am a former guest and I am going to be coming up in early july to stay for a week.  I was told there are places that Rent full size cribs.  I was wondering if you could provide me with some names and phone numbers.  I would like to rent a crib so, I don''t have to bring my own.  Thank you vey much for time and all of your help!!!', NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7034, '2008-06-09', 'Jodie', 'Matuz', '', '', '', '', NULL, '', NULL, 'jodie.matuz@muskegoncc.edu', NULL, NULL, false, 6, 0, 'I am planning a vacation for 3 families – 6 adults and 6 kids under 5.  We are looking for the last week in September – dates are flexible.  Probably about 3-5 nights (depending on your proximity to Mackinaw City?!?!)  Do you have something available {specials maybe??} and if so, the rates?  The men especially are interested in fishing - is that available? We appreciate your information!!', NULL, NULL, '', ':Family Vacation:Fishing:Shopping:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7035, '2008-06-14', 'DOLORES', 'COWAN', '317 MILLCREEK DRIVE', 'SAULT STE. MARIE', 'ONTARIO', 'P6B 6H6', NULL, '705 253-3310', NULL, 'cowand@sah.on.ca', NULL, NULL, true, 4, 1, '', NULL, NULL, '', ':Pleasure Vacation:Real Estate:Romantic Getaway:Trout Creek Owner:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7036, '2008-06-17', 'Michelle', 'Cairnduff', '', '', '', '', NULL, '', NULL, '5duffs@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7037, '2008-06-17', 'Joseph', 'James', '', '', '', '', NULL, '', NULL, 'adajamesgang@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7934, '2009-02-19', 'Daniel', 'Jacobs', '', '', '', '', NULL, '', NULL, 'djacobs1220@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-02-19', '2009-02-19', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6671, '2008-05-01', 'Brian', 'Collins', '', '', '', '', NULL, '', NULL, 'bcollins12@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7040, '2008-06-17', 'Agnes', 'Khu', '', '', '', '', NULL, '', NULL, 'amkhu@chartermi.net', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7041, '2008-06-17', 'Anne', 'Ward', '', '', '', '', NULL, '', NULL, 'anneward@wideopenwest.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7042, '2008-06-17', 'Ann', 'Szczepaniak', '', '', '', '', NULL, '', NULL, 'anngerrys@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7043, '2008-06-17', 'Pat', 'Gray', '', '', '', '', NULL, '', NULL, 'apgray@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7044, '2008-06-17', 'Greg', 'Apple', '', '', '', '', NULL, '', NULL, 'apples4iu@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7758, '2009-02-02', 'Amy', 'Peterson', '', '', '', '', NULL, '', NULL, 'amymariewilliams@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-02-02', '2009-02-02', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7045, '2008-06-17', 'Arnold', 'Coleman', '', '', '', '', NULL, '', NULL, 'arnoldcoleman@gmail.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', ':12:23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7047, '2008-06-17', 'Dan', 'Bacigal', '', '', '', '', NULL, '', NULL, 'bacigald@msu.edu', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7048, '2008-06-17', 'Sally', 'Backofen', '', '', '', '', NULL, '', NULL, 'backofes@cooley.edu', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7049, '2008-06-17', 'Brian & Nancy', 'Grady', '', '', '', '', NULL, '', NULL, 'bgrady@mi.rr.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8531, '2009-07-17', 'Beth', '', '', '', '', '', NULL, '', NULL, 'acwalsh1@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7051, '2008-06-17', 'Steve', 'Blahunka', '', '', '', '', NULL, '', NULL, 'blahunkas@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8052, '2009-05-22', 'Beverly', 'Wolkow', '', '', '', '', NULL, '', NULL, 'bold31@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-05-22', '2009-05-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7054, '2008-06-17', 'Laura', 'Carpenter', '', '', '', '', NULL, '', NULL, 'carpfenton@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7056, '2008-06-17', 'Christi', 'Brilinski', '', '', '', '', NULL, '', NULL, 'cjbrilinski@core.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8756, '2009-10-16', 'Jill & John ', 'Bertich', '', '', '', '', NULL, '', NULL, 'jj_0428@yahoo.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-16', '2009-10-16', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7058, '2008-06-17', 'George', 'Allen', '', '', '', '', NULL, '', NULL, 'divallen@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7059, '2008-06-17', 'Linda', 'Silvasi', '', '', '', '', NULL, '', NULL, 'dsilvasi@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7060, '2008-06-17', 'Boge', 'Sokoloski', '', '', '', '', NULL, '', NULL, 'dsokoloski@bcbsm.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8572, '2009-07-17', 'Pete', 'Karsten', '', '', '', '', NULL, '', NULL, 'pete.karsten@baker.edu', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8230, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'jeanneoconnor2@earthlink.net', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7063, '2008-06-17', 'Fatima', 'Kapadia', '', '', '', '', NULL, '', NULL, 'fatimak@gmail.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7064, '2008-06-17', 'John', 'Friend', '', '', '', '', NULL, '', NULL, 'friendxfour@msn.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7065, '2008-06-17', 'Jeff', 'Fulton', '', '', '', '', NULL, '', NULL, 'fultonj@ewashtenaw.org', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7066, '2008-06-17', 'Barbara', 'Danaj', '', '', '', '', NULL, '', NULL, 'funonmiela@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7067, '2008-06-17', 'Greg', 'LaMore', '', '', '', '', NULL, '', NULL, 'g.lamore@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8291, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'kimtykosky@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7070, '2008-06-17', 'Karen', 'Lorenz', '', '', '', '', NULL, '', NULL, 'gklorenz@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7071, '2008-06-17', 'Phyllis', 'Gruszczynski', '', '', '', '', NULL, '', NULL, 'gruszczynski@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7073, '2008-06-17', 'Gary', 'Smithson', '', '', '', '', NULL, '', NULL, 'gsmithson62@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7074, '2008-06-17', 'Kathleen', 'Rutherford', '', '', '', '', NULL, '', NULL, 'gwr22@att.net', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7075, '2008-06-17', 'Heungho', 'Lee', '', '', '', '', NULL, '', NULL, 'heungholee@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7076, '2008-06-17', 'Gary', 'Hoipkemier', '', '', '', '', NULL, '', NULL, 'hoipkemier@juno.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7077, '2008-06-17', 'Isabell', 'Scherg', '', '', '', '', NULL, '', NULL, 'isabellscherg@online.de', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7078, '2008-06-17', 'Jack', 'Rummel', '', '', '', '', NULL, '', NULL, 'jack.rummel@axa-advisors.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7079, '2008-06-17', 'Jeff', 'Maund', '', '', '', '', NULL, '', NULL, 'jam5002@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7080, '2008-06-17', 'Jane', 'Finn', '', '', '', '', NULL, '', NULL, 'janefinn@acd.net', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7081, '2008-06-17', 'Jason', 'Schneider', '', '', '', '', NULL, '', NULL, 'jasonschneider04@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7082, '2008-06-17', 'Dale', 'Ahlschwede', '', '', '', '', NULL, '', NULL, 'jdahlschwede@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7083, '2008-06-17', 'Jean', 'Berlin', '', '', '', '', NULL, '', NULL, 'jean.ann.1956@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7084, '2008-06-17', 'Jennifer', 'Hokanson', '', '', '', '', NULL, '', NULL, 'jenniferdrummond_20@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7935, '2009-02-19', 'Dale', 'Vanderlan', '', '', '', '', NULL, '', NULL, 'djvlaan@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-02-19', '2009-02-19', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7086, '2008-06-17', 'Jack', 'Tracy', '', '', '', '', NULL, '', NULL, 'jjtracy@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8889, '2009-10-22', 'Roy', 'Wiegand ', '', '', '', '', NULL, '', NULL, 'royw@zoominternet.net ', NULL, NULL, true, NULL, NULL, '', '2009-10-22', '2009-10-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7088, '2008-06-17', 'Jeff', 'Patsy', '', '', '', '', NULL, '', NULL, 'jpatsy@wowway.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8053, '2009-05-22', 'Mark', 'Haase', '', '', '', '', NULL, '', NULL, 'mark.haase@stocksupply.com', NULL, NULL, true, NULL, NULL, '', '2009-05-22', '2009-05-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7090, '2008-06-17', 'Ken', 'Van Tine', '', '', '', '', NULL, '', NULL, 'kvantine@in-formstudio.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7091, '2008-06-17', 'Lauren', 'Kern', '', '', '', '', NULL, '', NULL, 'lauren.kern@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7093, '2008-06-17', 'Luretta', 'Deschner', '', '', '', '', NULL, '', NULL, 'ldeschner222841@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7388, '2008-10-21', 'Veronica', 'Logan', '313 Droste', 'East Lansing', 'MI', '48823', NULL, '517-333-8234', NULL, 'nurseronnie@sbcglobal.net', NULL, NULL, true, 9, 6, 'We have had the pleasure of staying at 2 of your rental properties in the past and have been exceptionally pleased.  Are there any rental homes available for this time frame?  A four BR 3BTH would also work for us. Please notify us as of anything avail.  Thank You!\r
+Mrs. Logan', '2008-12-20', '2008-12-24', '', ':Ski Trip:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7122, '2008-06-17', 'Sabrina', 'Reilly', '', '', '', '', NULL, '', NULL, 'sabrina.reilly@ncoa.org', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', ':6:23:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7096, '2008-06-17', 'LIsa', 'Vitale', '', '', '', '', NULL, '', NULL, 'lisavitale@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7097, '2008-06-17', 'Shanna', 'Render', '', '', '', '', NULL, '', NULL, 'locs00@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7134, '2008-06-17', 'Ron', 'Mathison', '', '', '', '', NULL, '', NULL, 'statewideron@charter.net', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7849, '2009-02-07', 'Diana', 'Rogers', '', '', '', '', NULL, '', NULL, 'cdlr55@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-02-07', '2009-02-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8231, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'jebrinkman79@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8292, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'kirkherman@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7103, '2008-06-17', 'Michael', 'Mepi', '', '', '', '', NULL, '', NULL, 'mikentlc@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7104, '2008-06-17', 'Martha', 'Sapp', '', '', '', '', NULL, '', NULL, 'msapp@bortocpa.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7105, '2008-06-17', 'Marianne', 'Viviano', '', '', '', '', NULL, '', NULL, 'mviviano@viviano.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8354, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'njkaneris@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7107, '2008-06-17', 'Pat', 'Sproat', '', '', '', '', NULL, '', NULL, 'patknirk@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8406, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'salinejuli@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8742, '2009-10-16', 'Carman', 'Bean ', '', '', '', '', NULL, '', NULL, 'cbean@federalscrew.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-16', '2009-10-16', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7111, '2008-06-17', 'Caroline', 'Szlamkowicz', '', '', '', '', NULL, '', NULL, 'piper3@peoplepc.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7112, '2008-06-17', 'Peter', 'Harvieux', '', '', '', '', NULL, '', NULL, 'pjharvey59@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7113, '2008-06-17', 'Jagadise', 'Turimella', '', '', '', '', NULL, '', NULL, 'ppatel@globaleprocure.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7114, '2008-06-17', 'Pat', 'O''Sullivan', '', '', '', '', NULL, '', NULL, 'pujo22@gmail.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7115, '2008-06-17', 'Richard', 'Aldrich', '', '', '', '', NULL, '', NULL, 'rald711@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7116, '2008-06-17', 'Robert', 'Byrne', '', '', '', '', NULL, '', NULL, 'rbyrne@sha.net', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7117, '2008-06-17', 'Renee', 'Harrison', '', '', '', '', NULL, '', NULL, 'reneeharrison@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8449, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'susiecorsetti@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7119, '2008-06-17', 'Rhonda', 'Bernstein', '', '', '', '', NULL, '', NULL, 'rgbernstein', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7120, '2008-06-17', 'Rob', 'Milosch', '', '', '', '', NULL, '', NULL, 'robrm@pga.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7121, '2008-06-17', 'Brian', 'Harrington', '', '', '', '', NULL, '', NULL, 'ruthann113000@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8484, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'TTomita@advics-na.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7123, '2008-06-17', 'Susan', 'Tuttle', '', '', '', '', NULL, '', NULL, 'sbt@charterinternet.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7110, '2008-06-17', 'Peter', 'Klimek', '', '', '', '', NULL, '', NULL, 'peter.klimek@mti.ca', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7125, '2008-06-17', 'Julie', 'Swager', '', '', '', '', NULL, '', NULL, 'seejulierun@gmail.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7126, '2008-06-17', 'Serge', 'Devolder', '', '', '', '', NULL, '', NULL, 'serge.devolder@gmail.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7087, '2008-06-17', 'John', 'Doyle', '', '', '', '', NULL, '', NULL, 'john.doyle@us.contiautomotive.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8912, '2009-10-26', 'Stephenie', 'Ison', '', '', '', '', NULL, '', NULL, 'slison@dow.com', NULL, NULL, true, NULL, NULL, '', '2009-10-26', '2009-10-26', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7129, '2008-06-17', 'Shannon', 'Stickler', '', '', '', '', NULL, '', NULL, 'sklanseck@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7128, '2008-06-17', 'Sian', 'Hewitt', '', '', '', '', NULL, '', NULL, 'sian.hewitt@nissanofwindsor.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7131, '2008-06-17', 'James', 'Webb', '', '', '', '', NULL, '', NULL, 'sonlit7@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7133, '2008-06-17', 'Stacey', 'Basa', '', '', '', '', NULL, '', NULL, 'staceybasa@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7135, '2008-06-17', 'Stephan', 'Morgan', '', '', '', '', NULL, '', NULL, 'stephanmorgan@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8054, '2009-05-22', '', '', '', '', '', '', NULL, '', NULL, 'andyb@kdccpa.com', NULL, NULL, true, NULL, NULL, '', '2009-05-22', '2009-05-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7137, '2008-06-17', 'Scott', 'Usitalo', '', '', '', '', NULL, '', NULL, 'susitalo@seedstrategy.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8743, '2009-10-16', 'Polly', 'Anderson', '', '', '', '', NULL, '', NULL, 'polly.anderson@aurora.org ', NULL, NULL, true, NULL, NULL, '', '2009-10-16', '2009-10-16', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7850, '2009-02-07', 'Cheryl', 'Summers', '', '', '', '', NULL, '', NULL, 'cdsums@verizon.net', NULL, NULL, true, NULL, NULL, '', '2009-02-07', '2009-02-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8757, '2009-10-16', 'Lucas', 'Blois ', '', '', '', '', NULL, '', NULL, 'lucasblois@yahoo.ca ', NULL, NULL, true, NULL, NULL, '', '2009-10-16', '2009-10-16', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7141, '2008-06-17', 'Thomas', 'Erickson', '', '', '', '', NULL, '', NULL, 'te1251@msn.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8573, '2009-07-17', 'Perry', 'Cormier', '', '', '', '', NULL, '', NULL, 'pccormier@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8232, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'jeepscott@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7144, '2008-06-17', 'Todd', 'Dasy', '', '', '', '', NULL, '', NULL, 'toddd@lammersheating.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8293, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'knappkin@ameritech.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8355, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'njslav@watchtv.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7147, '2008-06-17', 'Bill', 'Schafer', '', '', '', '', NULL, '', NULL, 'WDSchafer@dow.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7148, '2008-06-17', 'Lynn', 'Whitely', '', '', '', '', NULL, '', NULL, 'whitely6@sympatico.ca', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6247, '2007-09-28', 'Richard and Carol', 'Maruk', '', '', '', '', NULL, '', NULL, 'rmaruk@scionsteel.com', NULL, NULL, true, NULL, NULL, '', '2007-09-28', '2007-09-28', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7150, '2008-07-01', 'GAGIK', 'BABAKHANYAN', '2507 Littletell ave.', 'West Bloomfield', 'MI', '48324', NULL, '248 910 2290', NULL, 'g_babakhanyan@yahoo.com', NULL, NULL, true, 8, 0, '', '2008-07-03', '2008-07-06', 'Freinds', ':Family Vacation:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7152, '2008-07-14', 'Colin', '', '', '', '', '', NULL, '', NULL, 'colin@smartboxllc.com', NULL, NULL, false, 8, NULL, 'please forward pricing and availability info for 2.  Thanks', NULL, NULL, 'google', ':Romantic Getaway:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7153, '2008-07-16', 'Scott', 'Abbott', '3330 merrill ave.', 'royal oak', 'mi', '48073', NULL, '248835 2995', NULL, 'darillest356@aol.com', NULL, NULL, true, 8, 3, '', '2008-07-25', '2008-07-28', 'radio station', ':Big 4 Golf Package:Dining:Golf Trip:Morel Mushrooms:Summer Vacation:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7154, '2008-07-22', 'Eilene ', 'Kane', '', '', '', '', NULL, '', NULL, 'eilene_kane@hermanmiller.com', NULL, NULL, true, 6, 6, 'I have a reuniton I''m trying to put together.  It would be 30 people.... 24 adults, and 5 childern (1 15-year-old, and 5 under the age of 8).  Is there anyway of getting a group rate?  Everyone would be there Fri & Sat... about half would stay on Sun, and about 8 would like an extended stay.  Thanks!', '2009-07-17', '2009-07-20', '', ':Family Reunion:Summer Vacation:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7155, '2008-08-01', 'kate', 'curkovic', '5243 ridgebrook drive', 'portage', 'mi', '49002', NULL, '269.544.0265', NULL, 'katecurk@yahoo.com', NULL, NULL, true, 6, 4, 'I am interested in the stay three nights get the fourth free promotion.  I was wondering if these condos were part of that deal?', '2008-08-15', '2008-08-19', '', ':Boating/Sailing:Dining:Family Vacation:Pleasure Vacation:Shopping:Summer Vacation:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7156, '2008-08-07', 'Michael', 'Willkom', '768 Helen Ave', 'Brunswick', 'OH', '44212', NULL, '330-635-5511', NULL, 'steve.willkom@ixetic.com', NULL, NULL, true, 6, NULL, 'Hello,\r
+\r
\r
+\r
+We are considering a family reunion in mid to late June 2009, in N.MI.  The size of the family is 100 and I expect at least 80 to attend.  The duration of the stay would be between 5-7 days, this is flexible. \r
+We have about 60 adults (9/10 seniors) 18 young adults and around 22 children.  Out of the 100 family members, we would need to divide rooms by about 27-28 couples.\r
+\r
\r
+\r
+I don’t know what other information you need at this time but please respond with any questions.\r
+', NULL, NULL, '', ':Family Reunion:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7158, '2008-09-12', '', '', '', '', '', '', NULL, '', NULL, 'info@troutcreek.com', NULL, NULL, true, NULL, NULL, '', '2008-09-12', '2008-09-12', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7166, '2008-09-22', 'Denise', 'Forrest', '', '', '', '', NULL, '', NULL, 'art2mom@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7173, '2008-09-22', 'Brian ', 'Marx', '', '', '', '', NULL, '', NULL, 'bmarx@resortsandlodges.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7174, '2008-09-22', 'William', 'Bolding', '', '', '', '', NULL, '', NULL, 'boldinglandscape@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7175, '2008-09-22', 'Virginia', 'Bubb', '', '', '', '', NULL, '', NULL, 'bubbginny@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7176, '2008-09-22', 'Carol', 'St. Henry', '', '', '', '', NULL, '', NULL, 'c.sthenry@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7177, '2008-09-22', 'Carol', 'Lenger', '', '', '', '', NULL, '', NULL, 'carol.lenger@gmail.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8577, '2009-07-17', 'Jaime', 'Berkley', '', '', '', '', NULL, '', NULL, 'abrcrmbdab@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7179, '2008-09-22', 'Charlene', 'Ebert', '', '', '', '', NULL, '', NULL, 'charleneebert@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7180, '2008-09-22', 'Christy', 'Smith', '', '', '', '', NULL, '', NULL, 'christy.smith@la-z-boy.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7182, '2008-09-22', 'Christy', 'Weaver', '', '', '', '', NULL, '', NULL, 'clfweaver@gmail.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8407, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'sandsleepman@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8450, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'swansonrobert@att.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7185, '2008-09-22', 'Melissa', 'Corbett', '', '', '', '', NULL, '', NULL, 'corbett@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8485, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'vbalcom@rc.edu', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7187, '2008-09-22', 'Christine', 'Siegel', '', '', '', '', NULL, '', NULL, 'csiegel@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7188, '2008-09-22', 'Michelle', 'Waskevich', '', '', '', '', NULL, '', NULL, 'cwaskevich@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8599, '2009-07-17', 'Rick', 'Janderwski', '', '', '', '', NULL, '', NULL, 'RJanderwski@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8768, '2009-10-16', 'Michael', 'Chumbley ', '', '', '', '', NULL, '', NULL, 'michael.chumbley@hotmail.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-16', '2009-10-16', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7192, '2008-09-22', 'Dane', 'Turner', '', '', '', '', NULL, '', NULL, 'daneturner_ttr@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7194, '2008-09-22', 'David', 'Bennett', '', '', '', '', NULL, '', NULL, 'david.bennett@us.pilkington.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7206, '2008-09-22', 'Mary', 'Solomon', '', '', '', '', NULL, '', NULL, 'dot1061@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7195, '2008-09-22', 'MI Ice SB', 'Sheehan', '', '', '', '', NULL, '', NULL, 'dawnnotshawn@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7196, '2008-09-22', 'Denise', 'Dragonetti', '', '', '', '', NULL, '', NULL, 'ddragonetti@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8055, '2009-05-22', '', 'Colasinski', '', '', '', '', NULL, '', NULL, 'kc49golfer@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-05-22', '2009-05-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7198, '2008-09-22', 'Ron', 'Sichau', '', '', '', '', NULL, '', NULL, 'densichau@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7199, '2008-09-22', 'Twila', 'Depaolo', '', '', '', '', NULL, '', NULL, 'depedwin@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7200, '2008-09-22', 'Patrick', 'Fleming', '', '', '', '', NULL, '', NULL, 'derek@eeiglobal.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4403, '2006-09-25', 'Deb', 'Trucks', '', '', '', '', NULL, '', NULL, 'deb.k.trucks@dowcorning.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7201, '2008-09-22', 'Dan', 'Goeckel', '', '', '', '', NULL, '', NULL, 'dgoeckel@idccorporation.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7202, '2008-09-22', 'Wendy', 'Dijanni', '', '', '', '', NULL, '', NULL, 'dijanni@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7203, '2008-09-22', 'Doug', 'Jaeger', '', '', '', '', NULL, '', NULL, 'd-jaeger@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7204, '2008-09-22', 'Dennis', 'Palka', '', '', '', '', NULL, '', NULL, 'djpalka@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7851, '2009-02-07', 'Charles', 'Garavaglia', '', '', '', '', NULL, '', NULL, 'cgaravaglia@bergsteel.com', NULL, NULL, true, NULL, NULL, '', '2009-02-07', '2009-02-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7207, '2008-09-22', 'Dmitry', 'Vikhter', '', '', '', '', NULL, '', NULL, 'dvikhter@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7208, '2008-09-22', 'Dave ', 'White', '', '', '', '', NULL, '', NULL, 'dwhite25@cogeco.ca', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7236, '2008-09-22', 'James', 'Forster', '', '', '', '', NULL, '', NULL, 'jforster@fs4sports.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', ':23:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7210, '2008-09-22', 'Elaine', 'Push', '', '', '', '', NULL, '', NULL, 'elaine.push@terumomedical.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7389, '2008-10-23', 'Frank', 'Mallo', '', '', '', '', NULL, '', NULL, 'ski1962@msn.com', NULL, NULL, false, 7, 3, '', NULL, NULL, '', ':Biking:Fall Color Tour:Golf Trip:Ski Trip:Spring/Fall Vacation:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7212, '2008-09-22', 'Erin', 'Shovlin', '', '', '', '', NULL, '', NULL, 'eshovlin@mac.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7213, '2008-09-22', 'Eunice', 'Kim', '', '', '', '', NULL, '', NULL, 'eunice.ys.kim@gmail.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7214, '2008-09-22', 'Raul', 'Felman', '', '', '', '', NULL, '', NULL, 'felcoint@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7215, '2008-09-22', 'Frank ', 'Fetters', '', '', '', '', NULL, '', NULL, 'FFETTERS@LEAR.COM', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7216, '2008-09-22', 'Ralph', 'Fiegelist', '', '', '', '', NULL, '', NULL, 'fiegelist@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9293, '2009-11-29', 'Andrew', 'Brown', '1218 east grand river', 'east lansing', 'mi', '48823', NULL, '810 919 1322', NULL, 'brown262@msu.edu', NULL, NULL, true, 9, 6, 'This isn''t a reservation, but more of an inquiry, my organization on campus would like to organize a ski weekend for approximately 75 people, could you accommodate us and could you offer a group discount? i''m very interested in what you could do to make this work for our group. \r
+\r
+Thanks!\r
+Andrew', '2010-02-12', '2010-02-14', '', ':Winter - Ski/Boarding:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8890, '2009-10-22', 'Craig', 'Woodbeck', '', '', '', '', NULL, '', NULL, 'cwoodbeck@hotmail.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-22', '2009-10-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7221, '2008-09-22', 'Jack', 'Rummel', '', '', '', '', NULL, '', NULL, 'gbrummel@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7222, '2008-09-22', 'Sheryl', 'Gibbons', '', '', '', '', NULL, '', NULL, 'gibbonsgs@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7223, '2008-09-22', 'Robert', 'Granadier', '', '', '', '', NULL, '', NULL, 'granadier@butzel.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7225, '2008-09-22', 'Greg', 'Silage', '', '', '', '', NULL, '', NULL, 'gsil624@ameritech.net', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7227, '2008-09-22', 'Mary E.', 'Strebeck', '', '', '', '', NULL, '', NULL, 'gstrebeck010@earthlink.net', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7228, '2008-09-22', 'Steve', 'Hoelscher', '', '', '', '', NULL, '', NULL, 'hoelschersteve@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7229, '2008-09-22', 'Heather', 'Peshl', '', '', '', '', NULL, '', NULL, 'htippett@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7230, '2008-09-22', 'John', 'Keenan', '', '', '', '', NULL, '', NULL, 'jakeenan@charter.net', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7232, '2008-09-22', 'John ', 'Gordon', '', '', '', '', NULL, '', NULL, 'jbgordon@analysts.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7233, '2008-09-22', 'Jordon', 'Hoffman', '', '', '', '', NULL, '', NULL, 'jdhoffman2@verizon.net', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7234, '2008-09-22', 'Jeff', 'Whitmore', '', '', '', '', NULL, '', NULL, 'jeffreywhitmore@gmail.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7235, '2008-09-22', 'Brian ', 'Bunker', '', '', '', '', NULL, '', NULL, 'jenbrianbunker@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8147, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'dawaligora@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7237, '2008-09-22', 'Joe', 'Tobin', '', '', '', '', NULL, '', NULL, 'jjjjtobin@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7238, '2008-09-22', 'Jeffrey', 'Kaloustian', '', '', '', '', NULL, '', NULL, 'jkaloustian@gmail.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7197, '2008-09-22', 'Dennis', 'Weathers', '', '', '', '', NULL, '', NULL, 'dennis_weathers@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', ':23:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7240, '2008-09-22', 'John', 'Bojko', '', '', '', '', NULL, '', NULL, 'jmbojko@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7241, '2008-09-22', 'Jeff', 'Lambert', '', '', '', '', NULL, '', NULL, 'jmlambert1@att.net', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7242, '2008-09-22', 'Jill', 'Moore', '', '', '', '', NULL, '', NULL, 'jmoore@ghbh.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7243, '2008-09-22', 'John', 'Mcleod', '', '', '', '', NULL, '', NULL, 'johnm@jcmventures.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7244, '2008-09-22', 'John', 'Greshan', '', '', '', '', NULL, '', NULL, 'johnnygresham@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7246, '2008-09-22', 'Jodi', 'Gomez', '', '', '', '', NULL, '', NULL, 'jrgomez105@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7247, '2008-09-22', 'MI Ice SB', 'Sheehan', '', '', '', '', NULL, '', NULL, 'jsheehan@stonebrook-mi.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8233, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'jeffnkaren@embarqmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7250, '2008-09-22', 'Joe', 'Walewski', '', '', '', '', NULL, '', NULL, 'jwalew@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7251, '2008-09-22', 'Jennifer', 'Willbur', '', '', '', '', NULL, '', NULL, 'jwillbur@ymcametrodetroit.org', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7252, '2008-09-22', 'Michael', 'Jones', '', '', '', '', NULL, '', NULL, 'kahjones@live.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7253, '2008-09-22', 'Sonya & Todd', 'Kaminski', '', '', '', '', NULL, '', NULL, 'kaminskitodd@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9294, '2009-11-30', 'Margaret', 'Horton', '783 E Monon Rd', 'Monon', 'IN', '47959-0747', NULL, '219-253-7883', NULL, 'horton@urhere.net', NULL, NULL, true, 6, 6, 'We will need a 5 bedroom condo.  If other family members can come, they will need another one or two small condos.', '2009-07-24', '2009-07-30', '', ':Family Vacation:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7255, '2008-09-22', 'Kathleen', 'Luchkovic', '', '', '', '', NULL, '', NULL, 'kathyzeck@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7256, '2008-09-22', 'Kristen', 'McGlaughlen', '', '', '', '', NULL, '', NULL, 'kcm.detroit@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8056, '2009-05-22', 'Gary', 'Ogden', '', '', '', '', NULL, '', NULL, 'ogdengary@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-05-22', '2009-05-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8148, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'dbaird02@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7293, '2008-09-22', 'Paul', 'Cartwright', '', '', '', '', NULL, '', NULL, 'pacartwright@thinkarbor.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7261, '2008-09-22', 'Catherine', 'Tufnell', '', '', '', '', NULL, '', NULL, 'ktufnell@proassurance.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7262, '2008-09-22', 'Lesley', 'Philips', '', '', '', '', NULL, '', NULL, 'lap825@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7263, '2008-09-22', 'Lola', 'Audu', '', '', '', '', NULL, '', NULL, 'laudu@grar.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7852, '2009-02-07', 'Chanel', 'Grayson', '', '', '', '', NULL, '', NULL, 'chanelkami@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-02-07', '2009-02-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7265, '2008-09-22', 'Michael', 'Schrier', '', '', '', '', NULL, '', NULL, 'leslie-schrier@uiowa.edu', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7266, '2008-09-22', 'Lincoln', 'Herweyer', '', '', '', '', NULL, '', NULL, 'lgherweyer@netscape.net', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7267, '2008-09-22', 'Lisa', 'Cohn', '', '', '', '', NULL, '', NULL, 'lscohn@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8234, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'jenniferalfonsi@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7271, '2008-09-22', 'MI Ice SB', 'Sheehan', '', '', '', '', NULL, '', NULL, 'm.mckenna@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7272, '2008-09-22', 'Mark', 'Ribick', '', '', '', '', NULL, '', NULL, 'mark@speedysites.net', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7273, '2008-09-22', 'Maynard', 'Buszek', '', '', '', '', NULL, '', NULL, 'mbuszek@wideopenwest.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7274, '2008-09-22', 'Mechelle', 'Reid', '', '', '', '', NULL, '', NULL, 'mechreid1@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8294, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'knrplus3@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7276, '2008-09-22', 'Melinda', 'Gaukel', '', '', '', '', NULL, '', NULL, 'mgauk@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7277, '2008-09-22', 'Margaret', 'Pierce', '', '', '', '', NULL, '', NULL, 'mgopierce@wowway.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8356, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'nlhulbert@charter.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7279, '2008-09-22', 'Michelle', 'Osborne', '', '', '', '', NULL, '', NULL, 'michelleosb@gmail.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7280, '2008-09-22', 'Michael', 'Orwig', '', '', '', '', NULL, '', NULL, 'mikeorwig@cavtel.net', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7281, '2008-09-22', 'Mark', 'French', '', '', '', '', NULL, '', NULL, 'mj_french@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7282, '2008-09-22', 'Mary ', 'Krone', '', '', '', '', NULL, '', NULL, 'mkrone@new.rr.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7283, '2008-09-22', 'MI Ice SB', 'Sheehan', '', '', '', '', NULL, '', NULL, 'mlair1@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7284, '2008-09-22', 'Robert', 'Roberts', '', '', '', '', NULL, '', NULL, 'molly_megan_emma@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7285, '2008-09-22', 'Steve', 'Moran', '', '', '', '', NULL, '', NULL, 'moranatslah@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8408, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'saultgirl@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8891, '2009-10-22', 'Steve', 'Zinberg', '', '', '', '', NULL, '', NULL, 'stevezinberg@rogers.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-22', '2009-10-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7288, '2008-09-22', 'Nancy', 'Sergeant', '', '', '', '', NULL, '', NULL, 'nancy_sergeant@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8451, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'swart@kalamazoo.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7290, '2008-09-22', 'Robert', 'Bird', '', '', '', '', NULL, '', NULL, 'nomosumma@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7416, '2008-10-27', 'Carol', 'Clark', '', '', '', '', NULL, '', NULL, 'joe088@sympatico.ca', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7295, '2008-09-22', 'Paula', 'Johnson', '', '', '', '', NULL, '', NULL, 'paulajohnson@ontargetliving.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7296, '2008-09-22', 'Patrick', 'Benedict', '', '', '', '', NULL, '', NULL, 'pbenedic@umich.edu', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8486, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'virtuoz1981@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8522, '2009-06-27', 'Robert', 'Baker', '', '', '', '', NULL, '', NULL, 'bakerlee3@yahoo.ca', NULL, NULL, true, NULL, NULL, '', '2009-06-27', '2009-06-27', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7299, '2008-09-22', 'Angela', 'Lieffers', '', '', '', '', NULL, '', NULL, 'petestulipbug@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7260, '2008-09-22', 'Michael', 'Kressin', '', '', '', '', NULL, '', NULL, 'kressinmj@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7302, '2008-09-22', 'Pamela', 'Hankins', '', '', '', '', NULL, '', NULL, 'PMHankins@gmail.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7303, '2008-09-22', 'David', 'Fugate', '', '', '', '', NULL, '', NULL, 'psymsu@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8574, '2009-07-17', 'Lucian', 'Harbar', '', '', '', '', NULL, '', NULL, 'luciansr@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7305, '2008-09-22', 'Susan', 'Rafferty', '', '', '', '', NULL, '', NULL, 'rafferty44@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7592, '2008-11-13', 'Christina', 'Hasselkus', '', '', '', '', NULL, '', NULL, 'chasselkus@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-11-13', '2008-11-13', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7308, '2008-09-22', 'R. Gary', 'Winters', '', '', '', '', NULL, '', NULL, 'rgarywinters@zoomtown.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7326, '2008-09-22', 'Brad', 'Swartzentruber', '', '', '', '', NULL, '', NULL, 'swartzy2k@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7310, '2008-09-22', 'Richard', 'Carmichael', '', '', '', '', NULL, '', NULL, 'rickthedogtrainer@gmail.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7982, '2009-04-08', 'Diane ', 'Terry', '', '', '', '', NULL, '', NULL, 'dlterry001@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-04-08', '2009-04-08', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7312, '2008-09-22', 'Mark', 'Palazzo', '', '', '', '', NULL, '', NULL, 'Runwus4@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7313, '2008-09-22', 'Sandra', 'Ross', '', '', '', '', NULL, '', NULL, 'sandraross@wideopenwest.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7314, '2008-09-22', 'Jeremy', 'Schaffer', '', '', '', '', NULL, '', NULL, 'schafdawg37@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7315, '2008-09-22', 'Steven', 'Challa', '', '', '', '', NULL, '', NULL, 'schalla@choiceonemail.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7316, '2008-09-22', 'Sasko', 'Dimoski', '', '', '', '', NULL, '', NULL, 'sdimoski@tmgsports.net', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7317, '2008-09-22', 'Stephen', 'Estey', '', '', '', '', NULL, '', NULL, 'sestey@dykema.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7318, '2008-09-22', 'Shari', 'Crowell', '', '', '', '', NULL, '', NULL, 'sharic2006@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9299, '2010-01-05', 'TL', '', '', '', '', '', NULL, '', NULL, 'tlkel@avci.net', NULL, NULL, false, 6, 4, '', NULL, NULL, '', ':Snowmobiling:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7321, '2008-09-22', 'Diane', 'Koenig', '', '', '', '', NULL, '', NULL, 'soccermomdmk@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7324, '2008-09-22', 'Sharon', 'Walenga-Maynard', '', '', '', '', NULL, '', NULL, 'ssmaynard@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8923, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'ah@edmondsonhall.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7327, '2008-09-22', 'Thomas', 'Woidat', '', '', '', '', NULL, '', NULL, 'tewoidat@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7328, '2008-09-22', 'Kim', 'Hamann', '', '', '', '', NULL, '', NULL, 'thehamann5@wowway.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7329, '2008-09-22', 'Theresa', 'Dombrow', '', '', '', '', NULL, '', NULL, 'theresa.dombrow@stjohn.org', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7330, '2008-09-22', 'Trish', 'Hill', '', '', '', '', NULL, '', NULL, 'thill@vironintl.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7332, '2008-09-22', 'Terry', 'Morin', '', '', '', '', NULL, '', NULL, 'tmorin@southgateprocess.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8057, '2009-05-22', '', '', '', '', '', '', NULL, '', NULL, 'shbarber77@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-05-22', '2009-05-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8149, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'dc45chicago@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7335, '2008-09-22', 'Rew', 'Jenny', '', '', '', '', NULL, '', NULL, 'trew3@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10155, '2014-02-05', 'Laura', 'Huff', NULL, NULL, NULL, NULL, NULL, '2317596400', NULL, 'Laura@nexesrealty.com', 'Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko', '75.144.83.106', true, NULL, NULL, 'I would like a price on and 4 night golf package for 4 couples playing 2 different courses we are open to any of them whatever would be cheaper', '2014-07-02', '2014-07-06', NULL, NULL, NULL, ':3:', NULL, NULL, '4', NULL, '8', 'morning', '231759-3670', NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7338, '2008-09-22', 'Larry', 'Vallar', '', '', '', '', NULL, '', NULL, 'vallarltv@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7339, '2008-09-22', 'Albert', 'Versteeg', '', '', '', '', NULL, '', NULL, 'versteeg@sentex.net', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7340, '2008-09-22', 'Cindy', 'Wagonschutz', '', '', '', '', NULL, '', NULL, 'wagonsct@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7341, '2008-09-22', 'Steve', 'Walker', '', '', '', '', NULL, '', NULL, 'walkersoccer@msn.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8295, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'koester315@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7343, '2008-09-22', 'Wendy', 'Holden', '', '', '', '', NULL, '', NULL, 'wholden5@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8357, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'NList@chs-mi.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8409, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'sbagdade@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7346, '2008-09-25', 'rita', 'topouzian', '5045 dianna drive', 'Bloomfield Hills,', 'michigan', '48302', NULL, '248-302-2928', NULL, 'ritatopouzian@hotmail.com', NULL, NULL, true, 9, 4, 'Please email prices thanks', '2008-12-27', '2008-12-30', '', ':Ski Trip:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8452, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'taylorj77@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7353, '2008-09-29', 'Brian and Sheila', 'Petty', '', '', '', '', NULL, '', NULL, 'sjpshera@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-09-29', '2008-09-29', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8487, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'vpopov01@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7355, '2008-09-29', 'Chris ', 'Gowman', '', '', '', '', NULL, '', NULL, 'c.gowman@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2008-09-29', '2008-09-29', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8534, '2009-07-17', 'David', 'Campbell', '', '', '', '', NULL, '', NULL, 'dave_campbell_2001@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7357, '2008-09-29', 'Julian', 'Turkewycz', '', '', '', '', NULL, '', NULL, 'turkewycz@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2008-09-29', '2008-09-29', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7359, '2008-10-01', 'Bruce', 'Simon', '', '', '', '', NULL, '', NULL, 'brucesimon@realestateone.com', NULL, NULL, true, NULL, NULL, '', '2008-10-01', '2008-10-01', '', ':24:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7364, '2008-10-06', 'Elizabeth', 'Flynn', '', '', '', '', NULL, '', NULL, 'flynne13@gmail.com', NULL, NULL, true, NULL, NULL, '', '2008-10-06', '2008-10-06', '', ':12:6:23:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7367, '2008-10-06', 'Lynda', 'English', '', '', '', '', NULL, '', NULL, 'englishl1@michigan.gov', NULL, NULL, true, NULL, NULL, '', '2008-10-06', '2008-10-06', '', ':20:17:12:23:14:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7370, '2008-10-06', 'Lil', 'Spencer', '', '', '', '', NULL, '', NULL, 'spence1003@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-10-06', '2008-10-06', '', ':20:17:23:14:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7373, '2008-10-06', 'Linda', 'Shallman', '', '', '', '', NULL, '', NULL, 'lindashallman@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-10-06', '2008-10-06', '', ':20:17:12:23:14:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7376, '2008-10-06', 'Gaylon', 'Brooks', '', '', '', '', NULL, '', NULL, 'gbrooks5446@wideopenwest.com', NULL, NULL, true, NULL, NULL, '', '2008-10-06', '2008-10-06', '', ':20:17:12:23:18:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7269, '2008-09-22', 'Colleen', 'Howley-Resto', '', '', '', '', NULL, '', NULL, 'luris@me.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', ':20:23:14:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7254, '2008-09-22', 'Kari', 'Routledge', '', '', '', '', NULL, '', NULL, 'kariroutledge@wlcsd.org', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', ':23:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8735, '2009-09-17', 'susan', 'brintnall', '38 waring welfare', 'boerne', 'tx', '78006', NULL, '830-456-5858', NULL, 'russ_n_sue@yahoo.com', NULL, NULL, true, 4, 6, '', '2010-07-06', '2010-07-12', 'interested condo #1', ':Family Reunion:Wedding Group:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6511, '2007-11-23', 'Richard', 'Parker', '', '', '', '', NULL, '', NULL, 'parker-rick@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', ':14:15:23:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7217, '2008-09-22', 'Katherine', 'Ieremias', '', '', '', '', NULL, '', NULL, 'fisherka@msu.edu', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', ':20:17:12:23:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7584, '2008-11-13', 'LaShawn', 'Edwards', '', '', '', '', NULL, '', NULL, 'pledwards@lighthouse.net', NULL, NULL, true, NULL, NULL, '', '2008-11-13', '2008-11-13', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7294, '2008-09-22', 'Allison', 'Gardella', '', '', '', '', NULL, '', NULL, 'pagardella@wideopenwest.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', ':17:12:23:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7161, '2008-09-22', 'Angela', 'Booker', '', '', '', '', NULL, '', NULL, 'abookah67@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', ':20:17:12:23:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7319, '2008-09-22', 'Carey', 'Lange', '', '', '', '', NULL, '', NULL, 'sistercarey@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', ':16:12:23:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7193, '2008-09-22', 'Karen', 'Landa', '', '', '', '', NULL, '', NULL, 'danny716@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', ':16:12:23:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6888, '2008-05-04', 'Tricia', 'Pasek', '', '', '', '', NULL, '', NULL, 'mtpasek@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', ':3:12:23:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7292, '2008-09-22', 'Coleen', 'Kemner', '', '', '', '', NULL, '', NULL, 'office@napoleonlawn.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', ':12:6:23:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7052, '2008-06-17', 'Candice', 'Montie', '', '', '', '', NULL, '', NULL, 'candanski@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', ':12:23:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6694, '2008-05-01', 'Barbara', 'Sullivan', '', '', '', '', NULL, '', NULL, 'bsulli8138@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', ':12:23:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7764, '2009-02-02', 'Roxie', 'McUmber', '', '', '', '', NULL, '', NULL, 'roxie.mcumber@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-02-02', '2009-02-02', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7331, '2008-09-22', 'Lois', 'Nuthals', '', '', '', '', NULL, '', NULL, 'tlnute@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7248, '2008-09-22', 'James', 'Renken', '', '', '', '', NULL, '', NULL, 'jsrenken@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', ':12:23:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6613, '2008-02-07', 'Susan', 'Engelhart', '', '', '', '', NULL, '', NULL, 'sengelhart@tds.net', NULL, NULL, true, 4, NULL, '<p>Hi, are dogs allowed at your condos?</p>', NULL, NULL, '', ':12:6:23:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9300, '2010-01-12', 'Scott', 'Gilbert', '1221 E. Geneva Dr.', 'Dewitt', 'Mi', '48820', NULL, '', NULL, 'gibstracity@hotmail.com', NULL, NULL, true, 9, 2, 'We have a group of 12. We go somewhere every year and I wanted to get a quote. We are flexible on the units along as no one has to bouble up in a bed, We play 18 holes friday, 36 saturday and 18 on sunday.\r
+\r
+Thanks', '2010-06-11', '2010-06-13', 'Was there in 2007', ':Golf Packages:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8058, '2009-05-22', '', '', '', '', '', '', NULL, '', NULL, 'rdefrain@hrc-engr.com', NULL, NULL, true, NULL, NULL, '', '2009-05-22', '2009-05-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5782, '2007-07-09', 'Mark', 'Lingo', '', '', '', '', NULL, '', NULL, 'mlingohoops@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3010, '2005-08-02', 'Donna', 'Kerry', '', '', '', '', NULL, '', NULL, 'dzkerry@att.net', NULL, NULL, true, NULL, NULL, '', '2005-08-02', '2005-08-02', '', ':22:12:23:', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7854, '2009-02-07', 'Kimberly', 'Valacak', '', '', '', '', NULL, '', NULL, 'charlottetooo@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-02-07', '2009-02-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7322, '2008-09-22', 'Susan', 'Peterson', '', '', '', '', NULL, '', NULL, 'spetersen@ingmarmed.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', ':12:23:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8150, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'DDBEAN@COMCAST.NET', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7181, '2008-09-22', 'James', 'Kocsan', '', '', '', '', NULL, '', NULL, 'ckocsan@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', ':23:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5829, '2007-07-09', 'Brett', 'Rycus', '', '', '', '', NULL, '', NULL, 'spartanbj@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', ':12:23:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2862, '2005-06-02', 'Lori', 'Cuddeback', '', '', '', '', NULL, '', NULL, 'ljcuddeback@aol.com', NULL, NULL, true, NULL, NULL, '', '2005-06-02', '2005-06-02', '', ':12:23:22:', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8236, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'jevz8363@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8296, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'kpacifico@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8358, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'page_m@oakhills.hccanet.org', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8758, '2009-10-16', 'Beverly ', 'Boas', '', '', '', '', NULL, '', NULL, 'bboas72@gmail.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-16', '2009-10-16', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1517, '2004-07-13', 'Mark and Tayna', 'Albers', '', '', '', '', NULL, '', NULL, 'albers@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', ':23:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (973, '2003-11-29', 'Kathy', 'Seymour', '', '', '', '', NULL, '', NULL, 'rickseymour44@comcast.net', NULL, NULL, true, NULL, NULL, '', '2003-11-29', '2003-11-29', '', ':12:23:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3476, '2005-08-30', 'Le Anne', 'Schmidt', '', '', '', '', NULL, '', NULL, 'leanneanded@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2005-08-30', '2005-08-30', '', ':12:6:23:22:', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6870, '2008-05-03', 'Betty', 'Maxwell', '', '', '', '', NULL, '', NULL, 'maxwellph@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', ':23:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9963, '2013-04-25', 'Teri', 'Belleau', NULL, NULL, NULL, NULL, NULL, '7058484492', NULL, 'rick.belleau@hotmail.com', 'Mozilla/5.0 (Windows NT 6.1; rv:20.0) Gecko/20100101 Firefox/20.0', '209.91.166.37', true, NULL, NULL, NULL, '2013-05-30', '2013-06-02', NULL, NULL, NULL, ':3:', '2', NULL, '1', NULL, '2', 'morning', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (132, '2003-08-13', 'Jeff', 'Cousins', '', 'Toledo', 'OH', '43606', NULL, '', NULL, 'jcousins@fncuthbert.com', NULL, NULL, true, 6, NULL, '', '2003-08-13', '2003-08-13', '', ':23:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2098, '2004-10-22', 'Julie ', 'Horan', '', '', '', '', NULL, '', NULL, 'joehoran@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', ':23:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8453, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'taz1004@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7379, '2008-10-06', 'Diane', 'Miller', '', '', '', '', NULL, '', NULL, 'cdmiller1305@charter.net', NULL, NULL, true, NULL, NULL, '<p>Diane</p>', '2008-10-06', '2008-10-06', '', ':23:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3791, '2005-10-26', 'Pam', 'Shearer', '', '', '', '', NULL, '', NULL, 'bshearer@ameritech.net', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', ':3:12:23:22:', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8488, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'vringler@cox-applicators.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4104, '2006-04-19', 'Donald', 'Hudak', '', '', '', '', NULL, '', NULL, 'donhudak@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', ':23:22:', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9295, '2009-12-09', 'Tim & Jill Wegmann', '', '', '', '', '', NULL, '', NULL, 'twegmann@southslope.net', NULL, NULL, true, NULL, NULL, '', '2009-12-09', '2009-12-09', '', ':22:23:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7149, '2008-06-17', 'Gwendolyn', 'Melton', '', '', '', '', NULL, '', NULL, 'wmelton@accretivesolutions.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', ':12:23:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7381, '2008-10-06', 'margret', 'mancia', '', '', '', '', NULL, '', NULL, 'margretmancia@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-10-06', '2008-10-06', '', ':12:23:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7936, '2009-02-21', 'Janet', 'Abou-Ganim ', '', '', '', '', NULL, '', NULL, 'jabouganim@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-02-21', '2009-02-21', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7855, '2009-02-07', 'Carey', 'Costantini', '', '', '', '', NULL, '', NULL, 'chcost1@fuse.net', NULL, NULL, true, NULL, NULL, '', '2009-02-07', '2009-02-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9301, '2010-01-13', 'Loraleigh', '', '', '', '', '', NULL, '', NULL, 'loraleigh44@hotmail.com', NULL, NULL, true, 9, NULL, 'Do you offer any military discounts?  Is there anything available with a ski package Feb 19-21?  Thank you!', NULL, NULL, '', ':Winter - Ski/Boarding:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3666, '2005-10-26', 'Jo', 'Golda', '', '', '', '', NULL, '', NULL, 'jo@josorganizing.com', NULL, NULL, true, NULL, NULL, '', '2005-10-26', '2005-10-26', '', ':23:22:', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7984, '2009-04-09', 'Michelle', 'Steadman', '', '', '', '', NULL, '', NULL, 'steady_4@sympatico.ca', NULL, NULL, true, NULL, NULL, '', '2009-04-09', '2009-04-09', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7323, '2008-09-22', 'Scott', 'Driesenga', '', '', '', '', NULL, '', NULL, 'srdriesenga@charter.net', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', ':23:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7380, '2008-10-06', 'Anthony', 'Belmonte', '', '', '', '', NULL, '', NULL, 'babygrand14@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-10-06', '2008-10-06', '', ':12:23:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8059, '2009-05-22', 'Mike', 'Davidson', '', '', '', '', NULL, '', NULL, 'harleymanmike@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-05-22', '2009-05-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7383, '2008-10-06', 'carmen', 'fuller', '', '', '', '', NULL, '', NULL, 'ccjfuller@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-10-06', '2008-10-06', '', ':12:23:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7311, '2008-09-22', 'Jan & Robert M.', 'Ramirez', '', '', '', '', NULL, '', NULL, 'jlramirez@comerica.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', ':23:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7384, '2008-10-06', 'Renee', 'smiley', '', '', '', '', NULL, '', NULL, 'rsmiley3@woh.rr.com', NULL, NULL, true, NULL, NULL, '', '2008-10-06', '2008-10-06', '', ':12:6:23:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8237, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'jguelker@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8297, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'kroggent@umflint.edu', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8359, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'paps73@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8411, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'scarletn@oakgov.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8744, '2009-10-16', 'Mark', 'Zwygart', '', '', '', '', NULL, '', NULL, 'markzwygart@yahoo.ca', NULL, NULL, true, NULL, NULL, '', '2009-10-16', '2009-10-16', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8774, '2009-10-20', 'Craig', 'Dembeck ', '', '', '', '', NULL, '', NULL, 'zachdog1@covad.net ', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8535, '2009-07-17', 'Gino', 'Cavallo', '', '', '', '', NULL, '', NULL, 'gino@cliffeprinting.ca', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8575, '2009-07-17', 'Ken', 'MacIsaac', '', '', '', '', NULL, '', NULL, 'k.macisaac@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9296, '2009-12-09', 'Deborah', 'Perlman', '', '', '', '', NULL, '', NULL, 'dperlman77@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-12-09', '2009-12-09', '', ':22:23:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9297, '2009-12-12', 'Jack', 'Horvath', '8366 Jeanette Lane', 'Cincinnati', 'OH', '45249', NULL, '513 2479919', NULL, 'jhorvath1@cinci.rr.com', NULL, NULL, true, 6, 3, 'Please let me know of availability and costs', '2009-12-26', '2009-12-29', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9302, '2010-01-17', 'mary', '', '', '', '', '48021', NULL, '', NULL, 'maryzeus39@myway.com', NULL, NULL, false, 6, 1, 'Is there beach access for swimming on your premises?  Kitchen is essential for us + pool indoors.', NULL, NULL, '', ':Summer Vacation:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8152, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'debbedubey@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7856, '2009-02-07', 'Christopher', 'Albertson', '', '', '', '', NULL, '', NULL, 'chrisa@lightcorp.com', NULL, NULL, true, NULL, NULL, '', '2009-02-07', '2009-02-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8536, '2009-07-17', 'Connie', 'Chroshuk', '', '', '', '', NULL, '', NULL, 'cchroshuk@sympatico.ca', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9519, '2011-04-22', 'Rick', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2cookiewebdesign@charter.net', 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-US; rv:1.9.2.16) Gecko/20110319 Firefox/3.6.16', '24.247.103.147', false, 2, NULL, NULL, NULL, NULL, 'Hello -\r
+\r
+Do you offer condos for rent with 3-6 month leases?\r
+\r
+Thanks,\r
+\r
+Rick LT', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7985, '2009-04-14', 'Ann', 'Butler', '', '', '', '', NULL, '', NULL, 'sie1213@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-04-14', '2009-04-14', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8060, '2009-05-22', 'Linda', 'Krause', '', '', '', '', NULL, '', NULL, 'wpk46@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-05-22', '2009-05-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8576, '2009-07-17', 'Mike', 'Suraci', '', '', '', '', NULL, '705-942-3890', NULL, '', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7937, '2009-02-21', 'Timothy', 'MacIntyre', '', '', '', '', NULL, '', NULL, 'themacintyres@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-02-21', '2009-02-21', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8238, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'jihoon.park@marriot.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8298, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'kurtange@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8360, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'paulaperfect@roadrunner.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8412, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'sdidion@verizon.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8455, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'tddchildress@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7219, '2008-09-22', 'Glenn', 'Peggs', '', '', '', '', NULL, '', NULL, 'gapeggs@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8490, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'weatherman995@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8780, '2009-10-20', 'Charles ', 'Elfont', '', '', '', '', NULL, '', NULL, 'cj@mpw.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8525, '2009-07-04', 'kelly', 'frakes', '', '', '', '', NULL, '', NULL, 'kelly.frakes.ccb2@statefarm.com', NULL, NULL, true, NULL, NULL, '', NULL, NULL, 'are there vendors at the scrapbooking weekend', ':Scrapbooking:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8600, '2009-07-17', 'Karen', 'Swan', '', '', '', '', NULL, '', NULL, 'kmswan@med.umich.edu', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8614, '2009-07-17', 'Mark', 'Remeis', '', '', '', '', NULL, '', NULL, 'mremeis@aagreen.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8625, '2009-07-17', 'Donald', 'Flanagan', '', '', '', '', NULL, '', NULL, 'dflanagan@62regina.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8632, '2009-07-17', 'Frank', 'Tolusic', '', '', '', '', NULL, '317-409-1688', NULL, '', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9298, '2009-12-20', 'Sarah', 'Hickens', '', '', '', '', NULL, '', NULL, 'redjungle@comcast.net', NULL, NULL, false, 6, 1, 'I''d also like a quote for the 2 bed & 2 bath w/o loft', '2010-02-12', '2010-02-15', '', ':Winter - Ski/Boarding:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9102, '2009-11-11', 'Dr. Linda', 'Kimball', '', '', '', '', NULL, '', NULL, 'kimballl_48917@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', ':12:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9303, '2010-01-19', 'donna', 'pruitt', '7755 newbury Rd', 'tipp city', 'oh', '45371', NULL, '937-248-1444', NULL, 'dpruitt@nationalpropertyadvisors.com', NULL, NULL, true, 2, 3, '', NULL, NULL, 'need cost for each day in Jan.& Feb', ':Winter - Ski/Boarding:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7986, '2009-04-14', 'Ann', 'Butler', '', '', '', '', NULL, '', NULL, 'rbutler7@cogeco.ca', NULL, NULL, true, NULL, NULL, '', '2009-04-14', '2009-04-14', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7607, '2008-11-13', 'Patty', 'Wurm', '', '', '', '', NULL, '', NULL, 'pattimommy@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-11-13', '2008-11-13', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7608, '2008-11-13', 'Diane ', 'Crest', '', '', '', '', NULL, '', NULL, 'd5ca7@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-11-13', '2008-11-13', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7938, '2009-02-21', 'Susan', 'Sobiechowski', '', '', '', '', NULL, '', NULL, 'xmarylandgirlx5@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-02-21', '2009-02-21', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7987, '2009-04-23', 'Tammy', 'Grant', '', '', '', '', NULL, '', NULL, 'Tammy@AdventureNORTH.net', NULL, NULL, true, NULL, NULL, '', '2009-04-23', '2009-04-23', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7857, '2009-02-07', 'Christopher', 'Sommers', '', '', '', '', NULL, '', NULL, 'christopher.sommers@dana.com', NULL, NULL, true, NULL, NULL, '', '2009-02-07', '2009-02-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8061, '2009-05-22', '', '', '', '', '', '', NULL, '', NULL, 'mshuttleworth1965@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-05-22', '2009-05-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8153, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'deschenes4@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7585, '2008-11-13', 'Debbie ', 'Grigg', '', '', '', '', NULL, '', NULL, 'megmaddeb@netzero.com', NULL, NULL, true, NULL, NULL, '', '2008-11-13', '2008-11-13', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8239, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'jillgadola@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8299, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'kurtfilips@wowway.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6869, '2008-05-03', 'Matthew', 'Robinson', '', '', '', '', NULL, '', NULL, 'mattrobinson37@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7596, '2008-11-13', 'Tammy', 'Beaudry', '', '', '', '', NULL, '', NULL, 'tlbeaudry@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2008-11-13', '2008-11-13', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7597, '2008-11-13', 'Emily', 'Matelski', '', '', '', '', NULL, '', NULL, 'ematelski@gmail.com', NULL, NULL, true, NULL, NULL, '', '2008-11-13', '2008-11-13', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7598, '2008-11-13', 'Becky', 'Bruckman', '', '', '', '', NULL, '', NULL, 'bruckman@racc2000.com', NULL, NULL, true, NULL, NULL, '', '2008-11-13', '2008-11-13', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7599, '2008-11-13', 'Joanna', 'Slaght', '', '', '', '', NULL, '', NULL, 'joannaslaght@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-11-13', '2008-11-13', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5305, '2007-01-20', 'Heather', 'Grogg', '', '', '', '', NULL, '', NULL, 'hlgrogg@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', ':15:23:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7601, '2008-11-13', 'Denise ', 'Carpenter', '', '', '', '', NULL, '', NULL, 'dscarpenter@voyager.net', NULL, NULL, true, NULL, NULL, '', '2008-11-13', '2008-11-13', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7602, '2008-11-13', 'Kimberly', 'Caulkins', '', '', '', '', NULL, '', NULL, 'kcaulkins68@gmail.com', NULL, NULL, true, NULL, NULL, '', '2008-11-13', '2008-11-13', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8413, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'sdimilia@charter.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7605, '2008-11-13', 'Dan', 'Loimer', '', '', '', '', NULL, '', NULL, 'danl@michvet.com', NULL, NULL, true, NULL, NULL, '', '2008-11-13', '2008-11-13', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8456, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'tealroe@charter.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8491, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'wendyannschmidt9@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8537, '2009-07-17', 'Yves', 'Doyon', '', '', '', '', NULL, '', NULL, 'marlo_58@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8927, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'alh810home@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8615, '2009-07-17', 'Scott', 'O''Neill', '', '', '', '', NULL, '', NULL, 'soneil@kpmg.ca', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9304, '2010-01-19', 'donna', 'pruitt', '7755 newbury Rd', 'tipp city', 'oh', '45371', NULL, '937-248-1444', NULL, 'dpruitt@nationalpropertyadvisors.com', NULL, NULL, true, 2, 3, 'Would this be a ski in- ski out at Nubs Nob?', NULL, NULL, 'need cost for each day in Jan.& Feb', ':Winter - Ski/Boarding:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5136, '2007-01-19', 'Albert', 'Black', '', '', '', '', NULL, '', NULL, 'AGB42@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-19', '2007-01-19', '', ':11:23:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7988, '2009-04-24', 'Lisa', 'Veurink', '', '', '', '', NULL, '', NULL, 'lmveurink@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-04-24', '2009-04-24', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7613, '2008-11-13', 'Janet', 'McPhail', '', '', '', '', NULL, '', NULL, 'rickjen@xcelco.on.ca', NULL, NULL, true, NULL, NULL, '', '2008-11-13', '2008-11-13', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7768, '2009-02-03', 'Jennifer ', 'Smith', '', '', '', '', NULL, '', NULL, 'mail@jsmithattorney.com', NULL, NULL, true, NULL, NULL, '', '2009-02-03', '2009-02-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7615, '2008-11-13', 'Gwendolyn ', 'Melton', '', '', '', '', NULL, '', NULL, 'tdhour@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-11-13', '2008-11-13', '', ':12:23:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7616, '2008-11-13', 'Megan', 'Hintz', '', '', '', '', NULL, '', NULL, 'lakelizards4@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-11-13', '2008-11-13', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8745, '2009-10-16', 'Tom ', 'Doerflinger', '', '', '', '', NULL, '', NULL, 'tom.doerflinger@abnamro.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-16', '2009-10-16', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7618, '2008-11-13', 'Jessie', 'Seronko', '', '', '', '', NULL, '', NULL, 'jesntom2@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-11-13', '2008-11-13', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7619, '2008-11-13', 'Jackie ', 'Harris', '', '', '', '', NULL, '', NULL, 'harrishome@parishonline.tv', NULL, NULL, true, NULL, NULL, '', '2008-11-13', '2008-11-13', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7620, '2008-11-13', 'Kris', 'Trudeau', '', '', '', '', NULL, '', NULL, 'ktrudeau@charterinternet.com', NULL, NULL, true, NULL, NULL, '', '2008-11-13', '2008-11-13', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7001, '2008-05-04', 'Kathy', 'Nixon', '', '', '', '', NULL, '', NULL, 'tknix@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8062, '2009-05-22', 'Bob', 'Stackowiak', '', '', '', '', NULL, '', NULL, 'bobs@sharedimaging.com', NULL, NULL, true, NULL, NULL, '', '2009-05-22', '2009-05-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8240, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'jim.piel@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7623, '2008-11-13', 'Nancy', 'Nowak', '', '', '', '', NULL, '', NULL, 'nowakn2002@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-11-13', '2008-11-13', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7617, '2008-11-13', 'Marshall', 'Pallett', '', '', '', '', NULL, '', NULL, 'midwestce@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-11-13', '2008-11-13', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7625, '2008-11-13', 'Angie', 'Davis', '', '', '', '', NULL, '', NULL, 'hotpeppers2000@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-11-13', '2008-11-13', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7626, '2008-11-13', 'Diane ', 'Miller', '', '', '', '', NULL, '', NULL, 'jdmiller@sault.com', NULL, NULL, true, NULL, NULL, '', '2008-11-13', '2008-11-13', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8759, '2009-10-16', 'William', 'Boas', '', '', '', '', NULL, '', NULL, 'william.boas@raymondjames.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-16', '2009-10-16', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6751, '2008-05-01', 'Ellen', 'McLean', '', '', '', '', NULL, '', NULL, 'elmclean@wowway.com', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8362, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'pbkenyon@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8414, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'sep@h2law.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8457, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'teamteel@charter.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8492, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'wheatgerm@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6864, '2008-05-03', 'Mary Ann', 'Hayden', '', '', '', '', NULL, '', NULL, 'maryannhayden@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8538, '2009-07-17', 'Diane- CVB', '', '', '', '', '', NULL, '', NULL, '', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7633, '2008-11-13', 'Demian', 'Manceau', '', '', '', '', NULL, '', NULL, 'cmoss@alumni.nmu.edu', NULL, NULL, true, NULL, NULL, '', '2008-11-13', '2008-11-13', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8578, '2009-07-17', 'Ryan', 'Dumsa', '', '', '', '', NULL, '', NULL, 'dumsarya@msu.edu', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7635, '2008-11-13', 'Janice', 'Klein', '', '', '', '', NULL, '', NULL, 'jkathome@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2008-11-13', '2008-11-13', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7636, '2008-11-13', 'Jeannine', 'Rintala', '', '', '', '', NULL, '', NULL, 'jdrathome@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-11-13', '2008-11-13', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8601, '2009-07-17', 'Kurt', 'Voparil', '', '', '', '', NULL, '', NULL, 'kvoparil@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7638, '2008-11-13', 'Alicia', 'Greenough', '', '', '', '', NULL, '', NULL, 'adgreenough@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-11-13', '2008-11-13', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7639, '2008-11-13', 'Tracy', 'Labadie', '', '', '', '', NULL, '', NULL, 'talabadie@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-11-13', '2008-11-13', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8616, '2009-07-17', 'Andre', 'Oggie', '', '', '', '', NULL, '', NULL, 'babyo@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8626, '2009-07-17', 'Kurt', 'Dettloff', '', '', '', '', NULL, '', NULL, 'kdettloff@lear.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8770, '2009-10-20', 'Trey ', 'Curran', '', '', '', '', NULL, '', NULL, 'tcurr45@vzw.blackberry.net', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7643, '2008-11-13', 'Criss', 'Rigg', '', '', '', '', NULL, '', NULL, 'criss@pr-weld.com', NULL, NULL, true, NULL, NULL, '', '2008-11-13', '2008-11-13', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7644, '2008-11-13', 'Carolyn', 'Johnson', '', '', '', '', NULL, '', NULL, 'darolyn1@verizon.net', NULL, NULL, true, NULL, NULL, '', '2008-11-13', '2008-11-13', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8638, '2009-07-17', 'Paul', 'Morrison', '', '', '', '', NULL, '', NULL, 'paulmorrison1@sympatico.ca', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7646, '2008-11-13', 'Amber', 'Ryan', '', '', '', '', NULL, '', NULL, 'ambyryan@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-11-13', '2008-11-13', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8642, '2009-07-17', 'Therese', 'Chambers', '', '', '', '', NULL, '', NULL, 'therese.chambers@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8645, '2009-07-17', 'John', 'Meehan', '', '', '', '', NULL, '', NULL, 'jmeehan@treasurecoastfoodbank.org', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8647, '2009-07-17', 'Avinash', 'Rao', '', '', '', '', NULL, '', NULL, 'avinashrao00@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8651, '2009-07-17', 'Shane', 'Witowski', '', '', '', '', NULL, '734-323-0163', NULL, '', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8653, '2009-07-18', 'Bruce', 'Smith', '', '', '', '', NULL, '616-901-7836', NULL, '', NULL, NULL, true, NULL, NULL, '', '2009-07-18', '2009-07-18', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6942, '2008-05-04', 'Candy ', 'Watts', '', '', '', '', NULL, '', NULL, 'scswatts@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', ':12:14:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8655, '2009-07-18', 'Ben', 'Berkenpas', '', '', '', '', NULL, '', NULL, 'bberk0719@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-07-18', '2009-07-18', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8656, '2009-07-18', 'Randy', 'Christopher', '', '', '', '', NULL, '', NULL, 'randy@galvcast.net', NULL, NULL, true, NULL, NULL, '', '2009-07-18', '2009-07-18', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8657, '2009-07-18', 'William', 'Heiob', '', '', '', '', NULL, '', NULL, 'wheiob@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-07-18', '2009-07-18', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6657, '2008-04-29', 'Sally', 'Arnold', '', '', '', '', NULL, '', NULL, 'antiquemama10@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-04-29', '2008-04-29', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6716, '2008-05-01', 'William', 'Coghill', '', '', '', '', NULL, '', NULL, 'coghill@mchsi.com', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8658, '2009-07-18', 'Ben', 'Harwood', '', '', '', '', NULL, '', NULL, 'btharwood@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-07-18', '2009-07-18', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8659, '2009-07-18', 'James', 'Johnson', '', '', '', '', NULL, '', NULL, 'shellycorky@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-07-18', '2009-07-18', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7989, '2009-04-24', 'Gabby ', 'Denton ', '', '', '', '', NULL, '', NULL, 'gabbydenton@comcast.net ', NULL, NULL, true, NULL, NULL, '', '2009-04-24', '2009-04-24', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7940, '2009-02-23', 'Debbi', 'Day', '', '', '', '', NULL, '', NULL, 'dday@manisteecountymi.gov', NULL, NULL, true, NULL, NULL, '', '2009-02-23', '2009-02-23', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8063, '2009-05-22', 'Mark', 'Sarafa', '', '', '', '', NULL, '', NULL, 'marksarafa@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-05-22', '2009-05-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8155, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'djwhip@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8241, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'jim_murray@roadrunner.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8301, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'labellogic@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8363, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'peg1172@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7660, '2008-11-14', 'Sarah', 'Johnston', '', '', '', '', NULL, '', NULL, 'slynnejohnston@mail.com', NULL, NULL, true, NULL, NULL, '', '2008-11-14', '2008-11-14', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7661, '2008-11-14', 'Monica', 'Wiggins', '', '', '', '', NULL, '', NULL, 'wiggkk@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-11-14', '2008-11-14', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7769, '2009-02-03', 'Marcy', 'Fisher ', '', '', '', '', NULL, '', NULL, 'marcyfisher@earthlink.net', NULL, NULL, true, NULL, NULL, '', '2009-02-03', '2009-02-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7663, '2008-11-14', 'Cyndi ', 'Yingling', '', '', '', '', NULL, '', NULL, 'cyndiy@triton.net', NULL, NULL, true, NULL, NULL, '', '2008-11-14', '2008-11-14', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8415, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'sfarwell22@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7665, '2008-11-14', 'Juliet', 'Stockman', '', '', '', '', NULL, '', NULL, 'thestockmans@roadrunner.com', NULL, NULL, true, NULL, NULL, '', '2008-11-14', '2008-11-14', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7666, '2008-11-14', 'Michelle ', 'Labadie', '', '', '', '', NULL, '', NULL, 'mlabadie@charter.net', NULL, NULL, true, NULL, NULL, '', '2008-11-14', '2008-11-14', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7667, '2008-11-14', 'Betty', 'Dahn', '', '', '', '', NULL, '', NULL, 'boop48@chartermi.net', NULL, NULL, true, NULL, NULL, '', '2008-11-14', '2008-11-14', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7859, '2009-02-07', 'Claire', 'Schultz', '', '', '', '', NULL, '', NULL, 'claireschultz@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-02-07', '2009-02-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7670, '2008-11-14', 'Dianne', 'LaChance', '', '', '', '', NULL, '', NULL, 'lachance@hughes.net', NULL, NULL, true, NULL, NULL, '', '2008-11-14', '2008-11-14', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8493, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'whudupg112@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7672, '2008-11-14', 'Dawn', 'Ludwig', '', '', '', '', NULL, '', NULL, 'ludwiglink@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-11-14', '2008-11-14', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7673, '2008-11-14', 'Diane', 'Herman', '', '', '', '', NULL, '', NULL, 'mommasmail43506@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-11-14', '2008-11-14', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7674, '2008-11-14', 'Julie', 'Vaughn', '', '', '', '', NULL, '', NULL, 'vaughnjulie@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-11-14', '2008-11-14', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6943, '2008-05-04', 'Tim', 'Shafer', '', '', '', '', NULL, '', NULL, 'shafershuffle@gmail.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', ':12:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8539, '2009-07-17', 'Brian', 'Frania', '', '', '', '', NULL, '', NULL, 'bfrania@jaguaroftroy.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6952, '2008-05-04', 'Glenn', 'Purvis', '', '', '', '', NULL, '', NULL, 'skis46@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8579, '2009-07-17', 'Heather', 'Pascoe', '', '', '', '', NULL, '', NULL, 'heather.pascoe@akzonobel.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7676, '2008-11-17', 'Robin & Chris ', 'Schweizer', '', '', '', '', NULL, '', NULL, 'schweizer5@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-11-17', '2008-11-17', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6890, '2008-05-04', 'Sam', 'Geckler', '', '', '', '', NULL, '', NULL, 'nbgeckler@cummins.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6992, '2008-05-04', 'Terence', 'Stobbe', '', '', '', '', NULL, '', NULL, 'terry140055@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7677, '2008-11-17', 'Jonathan', 'Mattis', '', '', '', '', NULL, '', NULL, 'dkmattis@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-11-17', '2008-11-17', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7678, '2008-11-17', 'Carol', 'Thorne', '', '', '', '', NULL, '', NULL, 'cmthorne@att.net', NULL, NULL, true, NULL, NULL, '', '2008-11-17', '2008-11-17', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7679, '2008-11-17', 'David', 'Homan', '', '', '', '', NULL, '', NULL, 'cshoman@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-11-17', '2008-11-17', '', ':23:18:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8602, '2009-07-17', 'John', 'Diiorio', '', '', '', '', NULL, '', NULL, 'jdiiorio1@ameritech.net', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8617, '2009-07-17', 'Gary', 'Ogden', '', '', '', '', NULL, '', NULL, 'ogdengary@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6728, '2008-05-01', 'Dave & Janet', 'Donaldson', '', '', '', '', NULL, '', NULL, 'ddonaldson9915@msn.com', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6729, '2008-05-01', 'Victor', 'Dean', '', '', '', '', NULL, '', NULL, 'deancrewof3@charter.net', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2812, '2005-05-27', 'Bruce', 'Lockman', '', '', '', '', NULL, '', NULL, 'blockman03@juno.com', NULL, NULL, true, NULL, NULL, '', '2005-05-27', '2005-05-27', '', ':23:2:', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6829, '2008-05-03', 'Joel', 'Wittenberg', '', '', '', '', NULL, '', NULL, 'kuchinic@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', ':12:14:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3148, '2005-08-29', 'Denise', 'Ridenour', '', '', '', '', NULL, '', NULL, 'bdridenour@wowway.com', NULL, NULL, true, NULL, NULL, '', '2005-08-29', '2005-08-29', '', ':23:2:', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6973, '2008-05-04', 'Sandra', 'Tomkovicz', '', '', '', '', NULL, '', NULL, 'stomkovi@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8627, '2009-07-17', 'Ronald', 'Prybycien', '', '', '', '', NULL, '', NULL, 'zzkops@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7680, '2008-11-17', 'James', 'Waske', '', '', '', '', NULL, '', NULL, 'jameswaske@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-11-17', '2008-11-17', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7012, '2008-05-04', 'Vince', 'Poczik', '', '', '', '', NULL, '', NULL, 'vpoczik@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6995, '2008-05-04', 'Theresa', 'Sharpe', '', '', '', '', NULL, '', NULL, 'theresasharpe@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6782, '2008-05-03', 'Joel', 'Webb', '', '', '', '', NULL, '', NULL, 'jawebb24@gmail.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7309, '2008-09-22', 'Richard', 'Demkovich', '', '', '', '', NULL, '', NULL, 'rick@envirodevelopmentsolutions.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', ':23:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4160, '2006-04-19', 'Joseph', 'Norber', '', '', '', '', NULL, '', NULL, 'jnorber1@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', ':23:18:', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4747, '2006-10-02', 'Roger & Joyce', 'Nyman', '', '', '', '', NULL, '', NULL, 'nymanr@meijer.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', ':23:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4080, '2006-04-19', 'James', 'Forgie', '', '', '', '', NULL, '', NULL, 'jforgie@charter.net', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', ':23:4:', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7681, '2008-11-17', 'ANGELA', 'CARSON', '', '', '', '', NULL, '', NULL, 'angela2angelacarson.com', NULL, NULL, true, NULL, NULL, '', '2008-11-17', '2008-11-17', '', ':23:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9305, '2010-01-19', 'debby', 'hannigan', '1460 chesterfield ', 'birmingham', 'michigan', '48009', NULL, '248-467-6118', NULL, 'debby.hannigan@corp.aol.com', NULL, NULL, true, 7, 1, 'skiing special tickets..', '2010-02-14', '2010-02-19', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7682, '2008-11-17', 'Sinkovitz', 'Suzzane', '', '', '', '', NULL, '', NULL, 'smsinkovitz@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-11-17', '2008-11-17', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8634, '2009-07-17', 'Pam', 'Cavanagh', '', '', '', '', NULL, '', NULL, 'pcavanagh@assante.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8639, '2009-07-17', 'Fred', 'Flavell', '', '', '', '', NULL, '', NULL, 'huntin55@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7684, '2008-11-17', 'Mary', 'Olex', '', '', '', '', NULL, '', NULL, 'maryolex@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-11-17', '2008-11-17', '', ':12:23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6912, '2008-05-04', 'Philip', 'Saroli', '', '', '', '', NULL, '', NULL, 'PSAROLI@YAHOO.COM', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6381, '2007-11-20', 'gary ', 'Larson', '', '', '', '', NULL, '', NULL, 'glarson@twmi.rr.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9306, '2010-01-19', 'Vicki', 'Terry', '', '', '', '', NULL, '', NULL, 'vterry72@msn.com', NULL, NULL, true, 8, 2, '', '2010-07-17', '2010-07-24', 'We are interested in 3 units for 13 people total.  Do any of your units allow dogs?', ':Family Vacation:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8156, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'dkbitterman@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6647, '2008-04-29', 'David', 'Kane', '', '', '', '', NULL, '', NULL, 'davidk@dankanechev.ca', NULL, NULL, true, NULL, NULL, '', '2008-04-29', '2008-04-29', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7990, '2009-04-24', 'Linda ', 'McEneany', '', '', '', '', NULL, '', NULL, 'pmceneany1@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-04-24', '2009-04-24', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6632, '2008-03-12', 'Frances', 'Davis', '', '', '', '', NULL, '', NULL, 'peterand3@msn.com', NULL, NULL, true, NULL, NULL, '', '2008-03-12', '2008-03-12', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7941, '2009-02-23', 'Jane', 'Beaudoin', '', '', '', '', NULL, '', NULL, 'jbeaudoin@bbbmi.com', NULL, NULL, true, NULL, NULL, '', '2009-02-23', '2009-02-23', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8242, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'jimolsen8@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2270, '2004-10-22', 'Barbara', 'Quinting', '', '', '', '', NULL, '', NULL, 'mqbaker@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', ':12:23:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6644, '2008-04-29', 'Jay', 'Poplawski', '', '', '', '', NULL, '', NULL, 'jlpoplawski@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2008-04-29', '2008-04-29', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8746, '2009-10-16', 'Sean', 'Galbraith', '', '', '', '', NULL, '', NULL, 'sg@eclipsecapitalgroup.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-16', '2009-10-16', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7691, '2008-11-17', 'Ralph', 'Clemens', '', '', '', '', NULL, '', NULL, 'ralph0307@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-11-17', '2008-11-17', '', ':23:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7693, '2008-11-17', 'Jim', 'Warren', '', '', '', '', NULL, '', NULL, 'warrenjimwarren@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-11-17', '2008-11-17', '', ':12:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4522, '2006-09-25', 'Joseph', 'Oddo', '', '', '', '', NULL, '', NULL, 'jcoddo@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', ':12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7694, '2008-11-17', 'FRED', 'HUYSENTRUYT', '', '', '', '', NULL, '', NULL, 'seenile@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-11-17', '2008-11-17', '', ':12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6678, '2008-05-01', 'Ben', 'Chartier', '', '', '', '', NULL, '', NULL, 'Bhchartier@comerica.com', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5336, '2007-01-20', 'Joan', 'Blodgett', '', '', '', '', NULL, '', NULL, 'joan1555@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7695, '2008-11-17', 'Sharon', 'George', '', '', '', '', NULL, '', NULL, 'sgeorge2@wowway.com', NULL, NULL, true, NULL, NULL, '', '2008-11-17', '2008-11-17', '', ':17:23:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7696, '2008-11-17', 'Connie', 'Fuller', '', '', '', '', NULL, '', NULL, 'corbgradjack@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-11-17', '2008-11-17', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8364, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'perimeterllc@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4319, '2006-09-25', 'Beverly', 'Schultz', '', '', '', '', NULL, '', NULL, 'beverlyschultz@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6924, '2008-05-04', 'Robert', 'Lenard', '', '', '', '', NULL, '', NULL, 'rlenard4834@wowway.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8416, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'sgloss@somersetent.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7151, '2008-07-13', 'Sylvia', 'Sumner', '', '', '', '', NULL, '', NULL, 'sylviasumner@comcast.net', NULL, NULL, true, 8, NULL, '<p>Can you please tell me if you are on the beach?</p>', NULL, NULL, 'Online', ':20:17:12:23:18:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4882, '2006-10-02', 'Tom & Sharon', 'Haller', '', '', '', '', NULL, '', NULL, 'shaller8@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6418, '2007-11-20', 'Julie', 'Dietrich', '', '', '', '', NULL, '', NULL, 'jmdietrich@mac.com', NULL, NULL, true, NULL, NULL, '', '2007-11-20', '2007-11-20', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6677, '2008-05-01', 'Brenda', 'Ganas', '', '', '', '', NULL, '', NULL, 'bganas@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6749, '2008-05-01', 'Elliot', 'Alfredson', '', '', '', '', NULL, '', NULL, 'ealfredson@twmi.rr.com', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', ':12:23:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8459, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'terimorton@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5970, '2007-08-14', 'Rusne', 'Kasputis', '', '', '', '', NULL, '', NULL, 'rusnern@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1576, '2004-07-13', 'Paul', 'Dushane', '', '', '', '', NULL, '', NULL, 'pjdushane@ameritech.net', NULL, NULL, true, NULL, NULL, '', '2004-07-13', '2004-07-13', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6971, '2008-05-04', 'Tim', 'Trinka', '', '', '', '', NULL, '', NULL, 'stmtrinka@earthlink.net', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5820, '2007-07-09', 'Assunta', 'Benvenuto', '', '', '', '', NULL, '', NULL, 'sbenvenu@dmc.org', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5670, '2007-07-09', 'Deb', 'Fahr', '', '', '', '', NULL, '', NULL, 'd_fahr@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6740, '2008-05-01', 'Dale ', 'Chon', '', '', '', '', NULL, '', NULL, 'dmchon@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6774, '2008-05-03', 'Carmen', 'Marion', '', '', '', '', NULL, '', NULL, 'hcmarion@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', ':15:6:23:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8494, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'william.bull@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7700, '2008-11-17', 'Sarah', 'Hartman', '', '', '', '', NULL, '', NULL, 'sshcpa@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-11-17', '2008-11-17', '', ':23:14:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6940, '2008-05-04', 'Scott', 'Griswold', '', '', '', '', NULL, '', NULL, 'scottgriswold@sympatico.ca', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8540, '2009-07-17', 'Eve', 'Goeddel', '', '', '', '', NULL, '', NULL, 'ecg@gtldc.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2680, '2004-12-31', 'Karen', 'VanStright', '', '', '', '', NULL, '', NULL, 'kvanstri@grcs.org', NULL, NULL, true, NULL, NULL, '', '2004-12-31', '2004-12-31', '', ':15:23:', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8580, '2009-07-17', 'Douglas', 'Kearns', '', '', '', '', NULL, '', NULL, 'kearn1@bellnet.ca', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8760, '2009-10-16', 'Bill', 'Boras', '', '', '', '', NULL, '', NULL, 'odshot68@yahoo.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-16', '2009-10-16', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4051, '2006-04-19', 'Mike', 'Driest', '', '', '', '', NULL, '', NULL, 'm.driest@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-04-19', '2006-04-19', '', ':23:2:', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8603, '2009-07-17', 'John', 'Goddeeris', '', '', '', '', NULL, '', NULL, 'goddeeri@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7861, '2009-02-07', 'Dawn', 'Erkfritz', '', '', '', '', NULL, '', NULL, 'clea603@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-02-07', '2009-02-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2289, '2004-10-22', 'Bruce', 'Rogers', '', '', '', '', NULL, '', NULL, 'bcrogers@charter.net', NULL, NULL, true, NULL, NULL, '', '2004-10-22', '2004-10-22', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4649, '2006-10-02', 'Doug', 'Schram', '', '', '', '', NULL, '', NULL, 'luv2scuba@wowway.com', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7704, '2008-11-17', '', 'Hendrick', '', '', '', '', NULL, '', NULL, 'mahendrick@msn.com', NULL, NULL, true, NULL, NULL, '', '2008-11-17', '2008-11-17', '', ':23:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7771, '2009-02-03', 'Mark & Barbara', 'Seski', '', '', '', '', NULL, '', NULL, 'mark_seski@ml.com', NULL, NULL, true, NULL, NULL, '', '2009-02-03', '2009-02-03', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7706, '2008-11-17', '', '', '', '', '', '', NULL, '', NULL, 'mkzollner@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-11-17', '2008-11-17', '', ':23:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6614, '2008-02-17', 'Karen and Bill', 'Strong', '37347 Catherine Marie', 'Sterling Heights', 'MI', '48312', NULL, '586 983-4119', NULL, 'strongtalk@comcast.net', NULL, NULL, true, 9, 2, '<p>We are interested in receiving the buy two nights get the third free. But, we would also like a fourth night. Can you please quote us a price. Thanks</p>', '2008-03-23', '2008-03-27', '', ':23:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6150, '2007-09-25', 'Gloria', 'Delano', '', '', '', '', NULL, '', NULL, 'gloria.delano@gmail.com', NULL, NULL, true, NULL, NULL, '', '2007-09-25', '2007-09-25', '', ':23:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7942, '2009-02-23', 'Abby', 'LaLonde', '', '', '', '', NULL, '', NULL, 'abby_harju@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-02-23', '2009-02-23', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7298, '2008-09-22', 'Margaret', 'Hollingsworth', '', '', '', '', NULL, '', NULL, 'peghollingsworth@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', ':6:23:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5066, '2006-10-11', 'Michael', 'Pieroni', '', '', '', '', NULL, '', NULL, 'pep078@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2006-10-11', '2006-10-11', '', ':12:23:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6934, '2008-05-04', 'Sarah', 'Wiese', '', '', '', '', NULL, '', NULL, 'sarahwiese@gmail.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', ':23:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7991, '2009-04-24', 'Erica', 'Marlatt', '', '', '', '', NULL, '', NULL, 'eac60@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-04-24', '2009-04-24', '', ':20:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6868, '2008-05-03', 'Matt ', 'Cox', '', '', '', '', NULL, '', NULL, 'mattmardell@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6902, '2008-05-04', 'Patricia', 'Gratopp', '', '', '', '', NULL, '', NULL, 'pdq@i-is.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8065, '2009-05-22', 'David', 'Democh', '', '', '', '', NULL, '', NULL, 'd-moneyretired93005@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-05-22', '2009-05-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3900, '2006-04-18', 'Marcia', 'Arthur', '', 'Huron', 'OH', '44839', NULL, '419-433-6577', NULL, 'jarthur@buckeye-express.com', NULL, NULL, true, 6, 1, '', '2006-04-18', '2006-04-18', '', ':23:2:', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9307, '2010-01-20', 'Dan', '', '', '', '', '', NULL, '', NULL, 'dan@troutcreek.com', NULL, NULL, true, NULL, NULL, '', '2010-01-20', '2010-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8157, '2009-06-04', '', '', '', '', '', '', NULL, '', NULL, 'dmorelli2005@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-04', '2009-06-04', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8747, '2009-10-16', 'Brian', 'Rosinski', '', '', '', '', NULL, '', NULL, 'brosinksi@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-10-16', '2009-10-16', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8303, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'larry.lyng@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6780, '2008-05-03', 'Janet', 'Yntema', '', '', '', '', NULL, '', NULL, 'Janety602@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-05-03', '2008-05-03', '', ':3:23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5341, '2007-01-23', 'Steve', 'Burke', '', '', '', '', NULL, '', NULL, 'joneil@airmaninc.com', NULL, NULL, true, NULL, NULL, '', '2007-01-23', '2007-01-23', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5217, '2007-01-20', 'Corinna', 'Ohmstedt', '', '', '', '', NULL, '', NULL, 'cohmstedt@aol.com', NULL, NULL, true, NULL, NULL, '', '2007-01-20', '2007-01-20', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6981, '2008-05-04', 'Kerry', 'Boon', '', '', '', '', NULL, '', NULL, 'sweetbriar4@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6710, '2008-05-01', 'Melissa', 'Pinion', '', '', '', '', NULL, '', NULL, 'cliffandmel@charter.net', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6931, '2008-05-04', 'Robin ', 'Whitney', '', '', '', '', NULL, '', NULL, 'rwhitney@dillin.com', NULL, NULL, true, NULL, NULL, '', '2008-05-04', '2008-05-04', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7713, '2008-11-17', 'Mark', 'Zickel', '', '', '', '', NULL, '', NULL, 'krzickel@charter.net', NULL, NULL, true, NULL, NULL, '', '2008-11-17', '2008-11-17', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2616, '2004-12-27', 'Valerie and Mark', 'Morsfield', '', '', '', '', NULL, '', NULL, 'mmorsfield@comcast.net', NULL, NULL, true, NULL, NULL, '', '2004-12-27', '2004-12-27', '', ':12:23:', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7714, '2008-11-17', 'Janette', 'Carras', '', '', '', '', NULL, '', NULL, 'jcarras@cramerminock.com', NULL, NULL, true, NULL, NULL, '', '2008-11-17', '2008-11-17', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6664, '2008-05-01', 'Barbara', 'Benson', '', '', '', '', NULL, '', NULL, 'babbenson@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5794, '2007-07-09', 'Patrick', 'Oates', '', '', '', '', NULL, '', NULL, 'paddyoates@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2007-07-09', '2007-07-09', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7715, '2008-11-17', 'Scott', 'Kemmerling', '', '', '', '', NULL, '', NULL, 'skemmerling@calldcc.com', NULL, NULL, true, NULL, NULL, '', '2008-11-17', '2008-11-17', '', ':12:23:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8365, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'petersb4@msu.edu', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7062, '2008-06-17', 'Frank', 'Hutchinson', '', '', '', '', NULL, '', NULL, 'farmhutch@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', ':12:23:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6744, '2008-05-01', 'Dorothe', 'Patterson', '', '', '', '', NULL, '', NULL, 'dorothe@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7717, '2008-11-17', 'Bruce', 'Havenga', '', '', '', '', NULL, '', NULL, 'bhavenga@seyfarth.com', NULL, NULL, true, NULL, NULL, '', '2008-11-17', '2008-11-17', '', ':23:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8417, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'sgshoha@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8460, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'the5stros@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8495, '2009-06-07', '', '', '', '', '', '', NULL, '', NULL, 'william.piontkowski3@ge.com', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8541, '2009-07-17', 'George', 'Green', '', '', '', '', NULL, '', NULL, 'skisoo@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8604, '2009-07-17', 'Derrick', 'Ayers', '', '', '', '', NULL, '', NULL, 'derrick.ayers@53.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8628, '2009-07-17', 'Steven', 'Still', '', '', '', '', NULL, '', NULL, 'still2503@ameritech.net', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8635, '2009-07-17', 'Tom', 'Doerflinger', '', '', '', '', NULL, '', NULL, 'tom.doerflinger@bankofamerica.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8640, '2009-07-17', 'Al', 'Whitehead', '', '', '', '', NULL, '', NULL, 'whitea3@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8643, '2009-07-17', 'Tom', 'Mulready', '', '', '', '', NULL, '', NULL, 'tmulready@gagemotormall.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8646, '2009-07-17', 'Marty', 'Ryan', '', '', '', '', NULL, '', NULL, 'martymryan8@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8761, '2009-10-16', 'Otto', 'Borgeson', '', '', '', '', NULL, '', NULL, 'otnanborg@att.net ', NULL, NULL, true, NULL, NULL, '', '2009-10-16', '2009-10-16', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8652, '2009-07-17', 'Richard', 'Regan', '', '', '', '', NULL, '248-345-8097', NULL, '', NULL, NULL, true, NULL, NULL, '', '2009-07-17', '2009-07-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8654, '2009-07-18', 'Steven', 'Bowman', '', '', '', '', NULL, '', NULL, 'stevemary@suddenlink.net', NULL, NULL, true, NULL, NULL, '', '2009-07-18', '2009-07-18', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8660, '2009-07-18', 'David', 'Kerner', '', '', '', '', NULL, '', NULL, 'dakerner@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-07-18', '2009-07-18', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8661, '2009-07-18', 'Marci', 'Kosac', '', '', '', '', NULL, '', NULL, 'list12@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-07-18', '2009-07-18', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8662, '2009-07-18', 'Bill', 'Lyle', '', '', '', '', NULL, '', NULL, 'bill.lyle@hylant.com', NULL, NULL, true, NULL, NULL, '', '2009-07-18', '2009-07-18', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8919, '2009-11-07', 'Felicia', 'Sams', 'Cumberland Blvd SE', 'Atlanta', 'GA', '30339', NULL, '', NULL, 'seo.sales.traffic@gmail.com', NULL, NULL, true, 0, 6, '', NULL, NULL, 'Dear site owner We are interested to increase traffic to your website, please get back to us in order to discuss the possibility in further detail Thanks\r
+', ':Scrapbooking:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8664, '2009-07-18', 'Tim', 'Manley', '', '', '', '', NULL, '', NULL, 'tim.manley@att.net', NULL, NULL, true, NULL, NULL, '', '2009-07-18', '2009-07-18', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8665, '2009-07-18', 'Nancy', 'Monterusso', '', '', '', '', NULL, '', NULL, 'nancy.monterusso@nationalcity.com', NULL, NULL, true, NULL, NULL, '', '2009-07-18', '2009-07-18', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8736, '2009-09-26', 'Joseph', 'Swanson', '224 Lawrence Road  ', 'New York', 'NY', '11111', NULL, '000-000-0000', NULL, 'joseph23001@gmail.com', NULL, NULL, true, 6, NULL, 'We would like to get your website on first page of Google. All of our processes use the most ethical "white hat" Search Engine Optimization techniques that will not get your website banned or penalized. Please reply and I would be happy to send you a proposal. In order for us to respond to your request for information, please include your company’s website address (mandatory) and or phone number.\r
+', NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8667, '2009-07-18', 'Barry', 'Piccirillo', '', '', '', '', NULL, '', NULL, 'b.piccirillo@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-07-18', '2009-07-18', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8668, '2009-07-18', 'Jen', 'Stabnik', '', '', '', '', NULL, '', NULL, 'moorjen@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-07-18', '2009-07-18', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8669, '2009-07-18', 'Karen', 'Thompson', '', '', '', '', NULL, '', NULL, 'Cheers908@aim.com', NULL, NULL, true, NULL, NULL, '', '2009-07-18', '2009-07-18', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8670, '2009-07-18', '', '', '', '', '', '', NULL, '', NULL, 'sugawa@iace-usa.com', NULL, NULL, true, NULL, NULL, '', '2009-07-18', '2009-07-18', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8671, '2009-07-18', 'Ralph', 'Weibel', '', '', '', '', NULL, '', NULL, 'rweibel@waw.misd.net', NULL, NULL, true, NULL, NULL, '', '2009-07-18', '2009-07-18', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8672, '2009-07-18', 'Dale', 'Wiper', '', '', '', '', NULL, '', NULL, 'whipper@sympatico.ca', NULL, NULL, true, NULL, NULL, '', '2009-07-18', '2009-07-18', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8673, '2009-07-18', 'Steve', 'Velzen-Haner', '', '', '', '', NULL, '', NULL, 'Svelzenhaner@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-07-18', '2009-07-18', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8674, '2009-07-18', 'Tim', 'Sullivan', '', '', '', '', NULL, '', NULL, 'timsullivan312@msn.com', NULL, NULL, true, NULL, NULL, '', '2009-07-18', '2009-07-18', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8675, '2009-07-18', 'Mike', 'Schultz', '', '', '', '', NULL, '', NULL, 'mjschultz357@charter.net', NULL, NULL, true, NULL, NULL, '', '2009-07-18', '2009-07-18', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8676, '2009-07-18', 'George', 'Semaan', '', '', '', '', NULL, '', NULL, 'gmsemaan@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-07-18', '2009-07-18', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8677, '2009-07-18', 'Joe', 'Orlich', '', '', '', '', NULL, '', NULL, 'joeorlich@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-07-18', '2009-07-18', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8678, '2009-07-18', 'Dan', 'Mancina', '', '', '', '', NULL, '', NULL, 'd.mancina@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-07-18', '2009-07-18', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8679, '2009-07-18', 'Pete', 'Merckx', '', '', '', '', NULL, '', NULL, 'pmerckx@charter.net', NULL, NULL, true, NULL, NULL, '', '2009-07-18', '2009-07-18', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8680, '2009-07-18', 'William', 'Murphy', '', '', '', '', NULL, '', NULL, 'murphman51@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-07-18', '2009-07-18', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8681, '2009-07-18', 'Bernie', 'Lisiak', '', '', '', '', NULL, '', NULL, 'blysiak@sympatico.ca', NULL, NULL, true, NULL, NULL, '', '2009-07-18', '2009-07-18', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8682, '2009-07-18', 'John', 'Lafeuer', '', '', '', '', NULL, '586-801-3095', NULL, '', NULL, NULL, true, NULL, NULL, '', '2009-07-18', '2009-07-18', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8683, '2009-07-18', 'John', 'Kermin', '', '', '', '', NULL, '', NULL, 'johnkerwin80@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-07-18', '2009-07-18', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8684, '2009-07-18', 'Chris', 'Kintz', '', '', '', '', NULL, '', NULL, 'clkint@mrtransportation.com', NULL, NULL, true, NULL, NULL, '', '2009-07-18', '2009-07-18', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10080, '2013-09-25', 'nicolas', 'Pietrangelo', '19212 n shore dr.', 'Spring Lake', 'MI', '49456', NULL, '6168426813', NULL, 'batterydoc@yahoo.com', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36', '24.11.11.36', true, 9, 4, NULL, '2013-12-20', '2013-12-23', NULL, ':10:25:2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8686, '2009-07-18', 'Stephen', 'Janson', '', '', '', '', NULL, '', NULL, 'stevie_j61@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-07-18', '2009-07-18', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8687, '2009-07-18', 'Daniel', 'Jacobs', '', '', '', '', NULL, '', NULL, 'Daniel.Jacobs@dla.mil', NULL, NULL, true, NULL, NULL, '', '2009-07-18', '2009-07-18', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8688, '2009-07-18', 'Robert', 'Helminen', '', '', '', '', NULL, '', NULL, 'rhmcontractors@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-07-18', '2009-07-18', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8689, '2009-07-18', 'Richard', 'Hovsepian', '', '', '', '', NULL, '', NULL, 'richard.n.hovsepian@flagstar.com', NULL, NULL, true, NULL, NULL, '', '2009-07-18', '2009-07-18', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8690, '2009-07-18', 'Dean', 'Horley', '', '', '', '', NULL, '', NULL, 'jdh1@iwarp.net', NULL, NULL, true, NULL, NULL, '', '2009-07-18', '2009-07-18', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8691, '2009-07-18', 'Steve', 'Guy', '', '', '', '', NULL, '', NULL, 'uwosteve@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-07-18', '2009-07-18', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8692, '2009-07-18', 'Mike', 'Goldfine', '', '', '', '', NULL, '', NULL, 'cgoldfine2@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-07-18', '2009-07-18', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8693, '2009-07-18', 'Kevin', 'Elliot', '', '', '', '', NULL, '', NULL, 'kevine2721@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-07-18', '2009-07-18', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8694, '2009-07-18', 'Andrew', 'Donnelly', '', '', '', '', NULL, '', NULL, 'ajdpistons@att.net', NULL, NULL, true, NULL, NULL, '', '2009-07-18', '2009-07-18', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8695, '2009-07-18', 'Scott', 'Cassidy', '', '', '', '', NULL, '', NULL, '', NULL, NULL, true, NULL, NULL, '', '2009-07-18', '2009-07-18', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8696, '2009-07-18', 'Haley', 'Batt', '', '', '', '', NULL, '', NULL, 'haleykbatt@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-07-18', '2009-07-18', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8697, '2009-07-18', 'Ron', 'Bertrand', '', '', '', '', NULL, '', NULL, 'ronbertrand30@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-07-18', '2009-07-18', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8700, '2009-07-22', 'liz', 'pappas', '457 allard', 'grosse pte farms', 'mi', '48236', NULL, '3134172334', NULL, 'lizannepappas@sbcglobal.net', NULL, NULL, true, 9, 0, '', '2009-08-27', '2009-08-30', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8701, '2009-07-28', 'Dave', 'Hauskins', '1460 Van Auken SE', 'Grand Rapids', 'MI', '49508', NULL, '616-452-1642', NULL, 'dh1460@yahoo.com', NULL, NULL, true, 9, 6, '', NULL, NULL, '', ':Scrapbooking:Biking:Boating/Sailing:Dining:Fishing:Golf Trip:Senior Packages:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8702, '2009-07-28', 'Alan', 'Freeborn', '406 Brookside', 'Ypsilanti', 'Michigan ', '48197', NULL, '734 434-0414', NULL, 'freeboa@peoplepc.com', NULL, NULL, true, 8, 3, '', '2009-04-08', '2009-08-08', 'Stay 3 nights 4th night free billboard in Detroit', ':Family Vacation:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8721, '2009-08-04', 'Jennifer', 'Abdella', '2535 13th St. NW, # 301', 'Washington', 'DC', '20009', NULL, '', NULL, 'jen.abdella@gmail.com', NULL, NULL, true, 8, NULL, 'We will be in Michigan the week of August 10, and we may be able to come by and take a look at the accommodations and facilities.  Please let me know if we need to make an appointment. \r
+\r
+We are planning a family reunion for the summer of 2011 (likely July); approximately 45 people will attend.  Any information you could provide would be most appreciated.\r
+\r
+Thanks!', NULL, NULL, 'Michigan Pure Magazine', ':Family Reunion:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8722, '2009-08-08', 'Joseph Swanson', 'Joseph Swanson', '224 Lawrance Road ', 'New York', 'New York', '11111', NULL, '000-000-0000', NULL, 'joseph2319@gmail.com', NULL, NULL, true, 6, 6, 'We Would like to get your website on first page of Google.All of our processes use the most ethical "white hat" Search Engine Optimization techniques that will not get your website banned or penalized.Please reply and I would be happy to send you a proposal.', NULL, NULL, 'We Would like to get your website on first page of Google.All of our processes use the most ethical "white hat" Search Engine Optimization techniques that will not get your website banned or penalized.Please reply and I would be happy to send you a proposal.', ':Big 4 Golf Package:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8726, '2009-08-18', 'Bella', 'Garza', '224 Lawrence Road', 'New York', 'New York', '11111', NULL, '0000000000', NULL, 'bella3250@gmail.com', NULL, NULL, true, 8, 5, 'We would like to get your website on first page of Google.\r
+\r
+All of our processes use the most ethical "white hat" Search Engine Optimization techniques that will not get your website banned or penalized.\r
+\r
+Please reply and I would be happy to send you a proposal.\r
+\r
+In order for us to respond to your request for information, please include your company’s website address (mandatory) and or phone number.\r
+', NULL, NULL, 'We would like to get your website on first page of Google.\r
+\r
+All of our processes use the most ethical "white hat" Search Engine Optimization techniques that will not get your website banned or penalized.\r
+\r
+Please reply and I would be happy to send you a proposal.\r
+\r
+In order for us to respond to your request for information, please include your company’s website address (mandatory) and or phone number.\r
+', ':Scrapbooking:Big 4 Golf Package:Biking:Boating/Sailing:Business:Casino:Dining:Empty Nester Getaway:Fall Color Tour:Family Reunion:Family Vacation:Fishing:Golf Trip:Morel Mushrooms:Pleasure Vacation:Real Estate:Romantic Getaway:Senior Packages:Shopping:Ski Trip:Snowmobiling:Soccer Weekend:Spring/Fall Vacation:Summer Vacation:Tennis:Trout Creek Owner:Wedding Group:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9340, '2010-04-22', 'Christine', 'Sedlacek', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'humandocmom@aol.com', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3', '76.226.44.99', false, 8, NULL, 'I will be staying in unit 93 for 1 week, starting April 22.  Is there anything to do there then?  Pool open? Hiking? Makinaw Island?\r
+973-214-3199', NULL, NULL, NULL, ':18:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8727, '2009-08-19', 'Janet', 'Herwaldt', '2212  Chase Pointe Ct.', 'Flushing', 'Michigan', '48433', NULL, '910-659-8190', NULL, 'treelords@aol.com', NULL, NULL, true, NULL, NULL, 'thanks for your assistance!! \r
+\r
+Janet  :-)', NULL, NULL, 'Regarding Unit 131.  We received an e-mail a while back re: converting our fireplace to gas.  I''ve deleted that message and don''t remember who sent it to me.  My brothers and I have to decided to look into converting and were wondering if the person who is in charge of that area could e-mail me.  We do have a few questions...and when I called no one there was able to answer!', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8729, '2009-08-31', 'carol', 'silver', '2550 driftwood dr', 'waterford', 'mi', '48329', NULL, '2487601284', NULL, 'cannsilver1@yahoo.com', NULL, NULL, true, NULL, NULL, '', NULL, NULL, 'yes, i would like someone to please email me my confirmation sheet, and total of bill so that i can give our roommates a copy for their balance. I know that we our in bldg 2 condo 10.  thank you', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8730, '2009-09-01', 'Susan', 'Krueger', '', '', '', '', NULL, '', NULL, 'krueger.s@att.net', NULL, NULL, false, 9, NULL, 'Do any of your condos accept pets? I have a Wheaton terrier (does not shed) and would be interested in a 1BR for 2 nights next week, Sept 8th thru 10th.  Thank you!', NULL, NULL, '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7287, '2008-09-22', 'Matt', 'Ryder', '', '', '', '', NULL, '', NULL, 'mryder@rogers.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8762, '2009-10-16', 'Thomas', 'Brennan', '', '', '', '', NULL, '', NULL, 'brennans06@ymail.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-16', '2009-10-16', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8771, '2009-10-20', 'Sharyn', 'Czegus', '', '', '', '', NULL, '', NULL, 'sczegus2@att.net ', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8775, '2009-10-20', 'Keith ', 'Dempsey', '', '', '', '', NULL, '', NULL, 'sparkyb@email.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8778, '2009-10-20', 'Gary ', 'Drinkhorn ', '', '', '', '', NULL, '', NULL, 'golfnut7777@msn.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8779, '2009-10-20', 'Jeff', 'Dufon', '', '', '', '', NULL, '', NULL, 'jeffdufon@ameritech.net ', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8781, '2009-10-20', 'Rick ', 'Faught', '', '', '', '', NULL, '', NULL, 'rfaught@emmco.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8782, '2009-10-20', 'Jason', 'Gunder', '', '', '', '', NULL, '', NULL, 'jason.gunder@hdfsi.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8783, '2009-10-20', 'Lorraine', 'Hart', '', '', '', '', NULL, '', NULL, 'lhart1707@comcast.net ', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8784, '2009-10-20', 'Natalie', 'Heger', '', '', '', '', NULL, '', NULL, 'natalie_heger@yahoo.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8785, '2009-10-20', 'Annette', 'Helmkay', '', '', '', '', NULL, '', NULL, 'anmohe@aol.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8786, '2009-10-20', 'Michael', 'Higgens', '', '', '', '', NULL, '', NULL, 'mikehiggy@juno.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8787, '2009-10-20', 'Mark', 'Houser', '', '', '', '', NULL, '', NULL, 'mhouser@apolloexpressinc.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8788, '2009-10-20', 'Larry', 'Iliff', '', '', '', '', NULL, '', NULL, 'liliff@zoominternet.net ', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8789, '2009-10-20', 'Scott', 'Jensen', '', '', '', '', NULL, '', NULL, 'scooter37@chartermi.net ', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8790, '2009-10-20', 'Andrew', 'Johnston ', '', '', '', '', NULL, '', NULL, 'andrew.johnston86@gmail.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8791, '2009-10-20', 'Neal ', 'Jordan ', '', '', '', '', NULL, '', NULL, 'njordan@ccrtc.com', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8792, '2009-10-20', 'Tom ', 'Kat', '', '', '', '', NULL, '', NULL, 'tomkato@charter.net ', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8793, '2009-10-20', 'Linda', 'Krause', '', '', '', '', NULL, '', NULL, 'linda.krause@jtmarshinc.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8794, '2009-10-20', 'Brian ', 'Krus ', '', '', '', '', NULL, '', NULL, 'krusfamily@comcast.net ', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8795, '2009-10-20', 'Leo ', '', '', '', '', '', NULL, '', NULL, 'leeyogasm@gmail.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8796, '2009-10-20', 'Kevin ', 'Loganr', '', '', '', '', NULL, '', NULL, 'logan-k@solve.net ', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8797, '2009-10-20', 'Dennis ', 'Loughlin ', '', '', '', '', NULL, '', NULL, 'dloughlin@wnj.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8798, '2009-10-20', 'Brad', 'Marsh', '', '', '', '', NULL, '', NULL, 'bradmarsh7@hotmail.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8799, '2009-10-20', 'Tim', 'McDaniel', '', '', '', '', NULL, '', NULL, 'mcdanielpack@charter.net', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8800, '2009-10-20', 'Randall ', 'McArthur ', '', '', '', '', NULL, '', NULL, 'randymcarthur@navigatorpg.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8801, '2009-10-20', 'Arun', 'Mehta', '', '', '', '', NULL, '', NULL, 'akcmehta@wowway.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8802, '2009-10-20', 'Jordan', 'Miller', '', '', '', '', NULL, '', NULL, 'jordanmiller_pt@hotmail.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8803, '2009-10-20', 'Greg', 'Murray', '', '', '', '', NULL, '', NULL, 'gemurray47@yahoo.ca', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8804, '2009-10-20', 'Gordon ', 'Nisbet', '', '', '', '', NULL, '', NULL, 'gordon_nisbet@suth.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8805, '2009-10-20', 'Rick ', 'O''Cull ', '', '', '', '', NULL, '', NULL, 'rick@careyelectric.com', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8806, '2009-10-20', 'Sam', 'Osnowitz', '', '', '', '', NULL, '', NULL, 'samosnowitz@bex.net ', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8807, '2009-10-20', 'John ', 'Perini ', '', '', '', '', NULL, '', NULL, 'perini@maximcompany.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8808, '2009-10-20', 'Tom', 'Petho', '', '', '', '', NULL, '', NULL, 'petho.thomas@con-way.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9310, '2010-01-20', 'John', 'Schaupp', '', '', '', '', NULL, '', NULL, 'john_schaupp@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2010-01-20', '2010-01-20', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8810, '2009-10-20', 'Suzanne', 'Pullman', '', '', '', '', NULL, '', NULL, 'suzanne.pullman@moen.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8811, '2009-10-20', 'Bruce', 'Rarrick ', '', '', '', '', NULL, '', NULL, 'brarric@entery.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8812, '2009-10-20', 'Brad', 'Rickard', '', '', '', '', NULL, '', NULL, 'bbbrickard@yahoo.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8813, '2009-10-20', 'Joel ', 'Roach ', '', '', '', '', NULL, '', NULL, 'jpr31@chrysler.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8814, '2009-10-20', 'Glenn ', 'Scala ', '', '', '', '', NULL, '', NULL, 'gscala@twmi.rr.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8815, '2009-10-20', 'James', 'Seasly', '', '', '', '', NULL, '', NULL, 'jcyclone@mac.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8892, '2009-10-24', 'Terra', 'Salas', '313 Georgian Oak Ct', 'Lake Dallas', 'TX', '75065', NULL, '214-675-6938', NULL, 'terras@charter.net', NULL, NULL, false, 8, 5, 'I wanted to know if you are havign a scrapbooking package the weekend listed.', '2009-03-19', '2009-03-21', '', ':Scrapbooking:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8817, '2009-10-20', 'Joan', 'Schrubba', '', '', '', '', NULL, '', NULL, 'jschrubba@newpassages.org', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8818, '2009-10-20', 'Andrea ', 'Sheppard', '', '', '', '', NULL, '', NULL, 'andrea.sheppard@abbott.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8819, '2009-10-20', 'Jay ', 'Silha', '', '', '', '', NULL, '', NULL, 'jaysilha@comcast.net ', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8820, '2009-10-20', 'Frank', 'Sorentino ', '', '', '', '', NULL, '', NULL, 'fsorentino@optimvalue.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8821, '2009-10-20', 'Susan', 'Souckey', '', '', '', '', NULL, '', NULL, 'pandssouckey@nti.sympatico.ca ', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8822, '2009-10-20', 'James', 'Tassoni', '', '', '', '', NULL, '', NULL, 'jdtcpa1@hotmail.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8823, '2009-10-20', 'Jayne', 'Vandermolen ', '', '', '', '', NULL, '', NULL, 'jvandermolen@lvmcapital.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8824, '2009-10-20', 'Terry', 'VanDyke', '', '', '', '', NULL, '', NULL, 'terry_van_dyke@hotmail.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8826, '2009-10-20', 'Ken ', 'Yates', '', '', '', '', NULL, '', NULL, 'kyates@wowway.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-20', '2009-10-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8827, '2009-10-21', 'Connie', 'Demar', '', '', '', '', NULL, '', NULL, 'cdemar@comcast.net ', NULL, NULL, true, NULL, NULL, '', '2009-10-21', '2009-10-21', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8828, '2009-10-21', 'Frank R. ', 'Martinex, III', '', '', '', '', NULL, '', NULL, 'fr_martinez@sbcglobal.net ', NULL, NULL, true, NULL, NULL, '', '2009-10-21', '2009-10-21', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8830, '2009-10-21', 'Herbert ', 'Ross', '', '', '', '', NULL, '', NULL, 'herbnsue41@hotmail.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-21', '2009-10-21', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8831, '2009-10-21', 'Ella', 'MacLean', '', '', '', '', NULL, '', NULL, 'clean5clan@yahoo.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-21', '2009-10-21', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8832, '2009-10-21', 'Kay', 'Bumstead', '', '', '', '', NULL, '', NULL, 'kbumstead@homesteadrealtorsinc.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-21', '2009-10-21', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8833, '2009-10-21', 'Alison', 'Gould ', '', '', '', '', NULL, '', NULL, 'ajg1437@aol.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-21', '2009-10-21', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8834, '2009-10-21', 'Matt', 'Walsh', '', '', '', '', NULL, '', NULL, 'mwalsh@hap.org ', NULL, NULL, true, NULL, NULL, '', '2009-10-21', '2009-10-21', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8835, '2009-10-21', 'Martin ', 'Jackson ', '', '', '', '', NULL, '', NULL, 'ston@cbpu.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-21', '2009-10-21', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8836, '2009-10-21', 'Eric', 'Abbott', '', '', '', '', NULL, '', NULL, 'erabbot@microsoft.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-21', '2009-10-21', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8837, '2009-10-21', 'Chad', 'Bowles', '', '', '', '', NULL, '', NULL, 'chad.t.bowles@daimler.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-21', '2009-10-21', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8838, '2009-10-21', 'Mary Ann ', 'Brooks ', '', '', '', '', NULL, '', NULL, 'wbrooks7@xcelco.ca', NULL, NULL, true, NULL, NULL, '', '2009-10-21', '2009-10-21', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8839, '2009-10-21', 'Fred ', 'Binder ', '', '', '', '', NULL, '', NULL, 'fredbinder@comcast.net ', NULL, NULL, true, NULL, NULL, '', '2009-10-21', '2009-10-21', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8840, '2009-10-21', 'Cathy ', 'Belsito ', '', '', '', '', NULL, '', NULL, 'belsitz@hotmail.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-21', '2009-10-21', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8841, '2009-10-21', 'Susan ', 'Bologna ', '', '', '', '', NULL, '', NULL, 'backmasu@comcast.net ', NULL, NULL, true, NULL, NULL, '', '2009-10-21', '2009-10-21', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8842, '2009-10-21', 'Ernest', 'Bracken', '', '', '', '', NULL, '', NULL, 'ernest.bracken@sympatico.ca', NULL, NULL, true, NULL, NULL, '', '2009-10-21', '2009-10-21', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8843, '2009-10-21', 'Marilyn ', 'Carr ', '', '', '', '', NULL, '', NULL, 'forecarr@wincome.net ', NULL, NULL, true, NULL, NULL, '', '2009-10-21', '2009-10-21', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8844, '2009-10-21', 'Tina', 'DiFranco ', '', '', '', '', NULL, '', NULL, 'tdifbrat@comcast.net ', NULL, NULL, true, NULL, NULL, '', '2009-10-21', '2009-10-21', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8845, '2009-10-21', 'Annette ', 'Dark ', '', '', '', '', NULL, '', NULL, 'adark@cogeco.ca ', NULL, NULL, true, NULL, NULL, '', '2009-10-21', '2009-10-21', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8846, '2009-10-21', 'John ', 'D', '', '', '', '', NULL, '', NULL, 'tpccorp@sbcglobal.net ', NULL, NULL, true, NULL, NULL, '', '2009-10-21', '2009-10-21', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8847, '2009-10-21', 'Rob', 'deBortoli ', '', '', '', '', NULL, '', NULL, 'bon.rob@sympatico.ca', NULL, NULL, true, NULL, NULL, '', '2009-10-21', '2009-10-21', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8848, '2009-10-21', 'Bob ', 'Dorsch ', '', '', '', '', NULL, '', NULL, 'dorschb@aol.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-21', '2009-10-21', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8849, '2009-10-21', 'Jeffrey', 'Eastman ', '', '', '', '', NULL, '', NULL, 'jeffreyeastman@yahoo.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-21', '2009-10-21', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8850, '2009-10-21', 'Barry', 'Flaga ', '', '', '', '', NULL, '', NULL, 'barry.flaga@gmail.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-21', '2009-10-21', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8851, '2009-10-21', 'Kerrie', 'Grant', '', '', '', '', NULL, '', NULL, 'kszusz@hotmail.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-21', '2009-10-21', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8852, '2009-10-21', 'Jerry ', 'Hammond ', '', '', '', '', NULL, '', NULL, 'jerryh74@hotmail.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-21', '2009-10-21', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8853, '2009-10-21', 'Terry', 'Herwig ', '', '', '', '', NULL, '', NULL, 'wigs38@hotmail.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-21', '2009-10-21', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8854, '2009-10-21', 'John ', 'Huish ', '', '', '', '', NULL, '', NULL, 'jrh32@netzero.net ', NULL, NULL, true, NULL, NULL, '', '2009-10-21', '2009-10-21', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9311, '2010-01-20', '', '', '', '', '', '', NULL, '', NULL, 'bbdgm@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2010-01-20', '2010-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8856, '2009-10-21', 'Austin', 'Kline', '', '', '', '', NULL, '', NULL, 'klinea@wabash.edu ', NULL, NULL, true, NULL, NULL, '', '2009-10-21', '2009-10-21', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8857, '2009-10-21', 'Patrick ', 'Keena ', '', '', '', '', NULL, '', NULL, 'keenaplr@aol.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-21', '2009-10-21', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8858, '2009-10-21', 'Oliver', 'Kopilas', '', '', '', '', NULL, '', NULL, 'kopsh@rogers.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-21', '2009-10-21', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8859, '2009-10-21', 'Daniel ', 'Lenhardt ', '', '', '', '', NULL, '', NULL, 'daniel.lenhardt@scotiabank.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-21', '2009-10-21', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8860, '2009-10-21', 'June', 'Long ', '', '', '', '', NULL, '', NULL, 'jlong@shaw.ca ', NULL, NULL, true, NULL, NULL, '', '2009-10-21', '2009-10-21', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8861, '2009-10-21', 'Janelle', 'Marshall ', '', '', '', '', NULL, '', NULL, 'clfswife1@yahoo.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-21', '2009-10-21', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8862, '2009-10-21', 'Lori', 'Morrision', '', '', '', '', NULL, '', NULL, 'lmorrison@gbhs.on.ca', NULL, NULL, true, NULL, NULL, '', '2009-10-21', '2009-10-21', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8863, '2009-10-21', 'John', 'Marco', '', '', '', '', NULL, '', NULL, 'marcobev@comcast.net ', NULL, NULL, true, NULL, NULL, '', '2009-10-21', '2009-10-21', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8864, '2009-10-21', 'Rob & Christa ', 'MacLaggan ', '', '', '', '', NULL, '', NULL, 'maclaggan@sympatico.ca ', NULL, NULL, true, NULL, NULL, '', '2009-10-21', '2009-10-21', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8865, '2009-10-21', 'Jason', 'Meyer', '', '', '', '', NULL, '', NULL, 'zdub_23@yahoo.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-21', '2009-10-21', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8866, '2009-10-21', 'Donna', 'Mansor ', '', '', '', '', NULL, '', NULL, 'dmansor@att.net ', NULL, NULL, true, NULL, NULL, '', '2009-10-21', '2009-10-21', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8867, '2009-10-21', 'Terry ', 'McPhee', '', '', '', '', NULL, '', NULL, 'deucedss@hotmail.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-21', '2009-10-21', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8868, '2009-10-21', 'Brian', 'McCabe', '', '', '', '', NULL, '', NULL, 'brianmccabe62@hotmail.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-21', '2009-10-21', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8869, '2009-10-21', 'Pat', 'O''Toole', '', '', '', '', NULL, '', NULL, 'patotoole11319@aol.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-21', '2009-10-21', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8870, '2009-10-21', 'Tom', 'Pahapill', '', '', '', '', NULL, '', NULL, 'tpahapill@rogers.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-21', '2009-10-21', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8871, '2009-10-21', 'Dennis', 'Podlesney', '', '', '', '', NULL, '', NULL, 'pod4@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-10-21', '2009-10-21', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8872, '2009-10-21', 'Sandra', 'Reier', '', '', '', '', NULL, '', NULL, 'sandra-reier@coldwellbanker.ca ', NULL, NULL, true, NULL, NULL, '', '2009-10-21', '2009-10-21', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8874, '2009-10-21', 'Craig', 'Rioux', '', '', '', '', NULL, '', NULL, 'craigrioux@hotmail.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-21', '2009-10-21', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8875, '2009-10-21', 'Lisa', 'Smith', '', '', '', '', NULL, '', NULL, 'lsmith@rocksolidservices.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-21', '2009-10-21', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8876, '2009-10-21', 'Suarci', '', '', '', '', '', NULL, '', NULL, 'msuraci@msn.com ', NULL, NULL, true, NULL, NULL, '', '2009-10-21', '2009-10-21', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8877, '2009-10-21', 'Carolyn', 'Schoenwald', '', '', '', '', NULL, '', NULL, 'cps15@bellsouth.net ', NULL, NULL, true, NULL, NULL, '', '2009-10-21', '2009-10-21', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8893, '2009-10-25', 'Jill', 'Whitaker', '1529 Michigan Ave', 'LaPorte', 'IN', '46350', NULL, '219/324-3470', NULL, 'jillwhitaker@comcast.net', NULL, NULL, true, NULL, NULL, 'THANK YOU FOR YOUR CONSIDERATION...my email is jillwhitaker@comcast.net\r
+\r
+ph 219/324-3470, cell 312/391-2956.  I am happy to send/email or fax an official letter request as well. ', NULL, NULL, 'We have a benefit event for our local school - more than 300 will be attending (the majority families with children) from this area. I think Trout Creek would be a  wonderful destination for a family vacation. Hoping you would consider a contribution for our auction. Ski passes, golf package and/or one overnight would be amazing!  It will be a great direct marketing opportunity to this community of Northwest Indiana/Michiana and an opportunity. \r
+As a volunteer parent, we are required to turn items in by the 30th of October. If you are considering a contribution, please reply to me via email and the item can then be mailed (you can include additional promotional brochures for folks to pick up as well as part of the silent auction).  \r
+', ':Big 4 Golf Package:Boating/Sailing:Family Vacation:Golf Trip:Pleasure Vacation:Ski Trip:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8913, '2009-10-30', 'Kent Cornwall', 'Kent Cornwall', '224 Lawrence Road', 'New York', 'NY', '11111', NULL, '000-000-0000', NULL, 'kent3207@gmail.com', NULL, NULL, true, 2, 0, 'Increase traffic to your website\r
+\r
+We would like to get your website on first page of Google.\r
+\r
+All of our processes use the most ethical "white hat" Search Engine Optimization techniques that will not get your website banned or penalized.\r
+Please reply and I would be happy to send you a proposal.\r
+In order for us to respond to your request for information, please include your company’s website address (mandatory) and or phone number.\r
+', NULL, NULL, 'Increase traffic to your website\r
+\r
+We would like to get your website on first page of Google.\r
+\r
+All of our processes use the most ethical "white hat" Search Engine Optimization techniques that will not get your website banned or penalized.\r
+Please reply and I would be happy to send you a proposal.\r
+In order for us to respond to your request for information, please include your company’s website address (mandatory) and or phone number.\r
+', ':Spring/Fall Vacation:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8920, '2009-11-10', 'Sierra', 'Olsen', '18673 Mission Rd.', 'Traverse City', 'Michigan', '49686', NULL, '2312237611', NULL, 'extremefam@aol.com', NULL, NULL, true, 6, 6, 'just wondering baout hte prices for these date and if its stil open to be booked. please let me know!', '2009-12-27', '2009-12-29', '', ':Ski Trip:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8928, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'amfaje@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8929, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'amn1007@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8930, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'amykirby5@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8931, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'angel-ii-s@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8932, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'annam_williams@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8933, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'artcbenton@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8934, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'atallent48@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8935, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'aw5095@wayne.edu', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8936, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'awosik262916MI@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8938, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'barnold128@live.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8939, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'bates.helen@att.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8940, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'bbshellito@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8941, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'bccunn@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8942, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'bchasco@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8943, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'bemansfield@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8944, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'bfershtman@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8945, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'bfguimond@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8946, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'bjaynes@jerviswebb.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8947, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'bjherman05@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8948, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'blaisekrol@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8949, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'bloomdadjim@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8950, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'bmendols82@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8951, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'bmulheisen@hurstind.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8952, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'bobrains@landmarkmgt.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8953, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'bobsimon5@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8955, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'brenners@airadv.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8956, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'brian@northroofing.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8957, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'bsallen@delta.edu', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8958, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'buffett_fan@verizon.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8959, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'byrnes@msu.edu', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8960, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'bzavell@bex.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8961, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'c.deluca@att.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8962, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'carrilyn@acegroup.cc', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8963, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'cathskitchen@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8964, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'cbarnes@kingventure.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8965, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'cchapm6@columbus.rr.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8966, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'cciesick@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8968, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'cfrenell@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8969, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'christine_murrell72@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8970, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'christocarol@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8971, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'cici.amiri@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8972, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'ckushler@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8973, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'clh@wowway.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8974, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'cmdose@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8975, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'cmeld@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8976, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'coachbugsy@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8977, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'cokeefe@okeefeassociates.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8978, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'colleen.wilberding@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8979, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'cowan_d@ghc.on.ca', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8980, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'cpfahler@woh.rr.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8981, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'craig@mtl-troy.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8982, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'cultura101@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8983, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'dallen14@insightbb.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8984, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'dbaran@hfcc.edu', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8985, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'dcbracciano@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8986, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'dd4215@att.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8987, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'ddaldine@wowway.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8988, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'debbiebreak05@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8989, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'debjoseph@charter.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8990, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'deborah1@sandiego.edu', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8991, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'deckedout04@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8992, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'dferrara09@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8993, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'dgbenton@apt.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8994, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'dingojoe89@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8995, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'djs@cablespeed.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8996, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'dkonal@pappasfinancial.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8997, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'dlewand001@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8998, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'don.reef@sprint.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8999, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'doughankla@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9001, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'dpiacsek@msn.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9002, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'drdonart@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9003, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'dtalbot211@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9004, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'dtarnas@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9005, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'dtrexler@etczone.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9006, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'dudzrm@charter.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9007, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'ebloch97@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9008, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'ed.pobur@masseycadillacplymouth.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9009, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'edheidishort', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9010, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'edheidishort@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9011, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'efsaladin@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9012, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'elaine_yates@bellsouth.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9013, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'eleeson@cinci.rr.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9014, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'ellenf@rsmpllc.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9015, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'erkfritzdawn@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9016, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'eva@evedetroit.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9018, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'farley.barbara@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9019, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'farmerpatricia@att.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9020, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'fkovalik@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9021, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'flipside89@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9022, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'sloptop@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9023, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'fridahinsdale@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9024, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'friesenj@sympatico.ca', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9025, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'fsabre@charter.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9026, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'fsass01@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9027, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'fsruch@sbcglobal.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9028, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'g.giffin@infineum.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9029, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'g1942woody@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9030, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'gautan_jha@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9031, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'gbonamicidds@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9033, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'gc16@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9034, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'geoshari@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9035, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'golf2500@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9036, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'goshnock@charter.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9037, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'gpilchak@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9038, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'granney@prodigy.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9039, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'guts62@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9040, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'hamandbeaner@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9041, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'hassanamb@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9042, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'henway72@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9043, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'herrington@charter.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9044, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'hhgriesser@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9045, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'horsemom37@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9046, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'hotshot7576@netzero.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9047, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'hudanish@att.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9048, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'hyame1je@cmich.edu', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9049, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'j.deering@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9050, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'jabenton@ameritech.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9051, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'janetjoe@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9052, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'janicebrady@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9053, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'jbizango@charter.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9054, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'jdrikkers@charter.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9055, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'jeff-miedema@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9056, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'jeffandjuli33@verizon.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9057, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'jennifer_hernandez@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9058, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'jfrumery@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9059, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'jgust@dow.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9060, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'jharaszk@umich.edu', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9061, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'jhecker@flexngate-mi.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9062, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'jherrmann@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9063, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'jhlwds7-miscel@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9064, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'jhonigman@msn.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9065, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'jill-wegmann@uiowa.edu', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9066, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'jim.french@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9067, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'jjstorts@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9068, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'jkbarry@wideopenwest.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9069, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'jkmeteo@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9070, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'jmbckb@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9071, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'jockozaski@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9072, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'john.travis@bankibt.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9073, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'johng@mcmahonbaldwin.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9074, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'johnrobertschumacher@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9075, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'jonesmichaelp@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9076, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'joyrondini@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9077, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'jpnelson@rcn.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9078, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'jricci0728@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9079, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'jross4_228@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9080, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'js306stone@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9081, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'jsmith@incubatenow.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9082, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'jsteller@talontitle.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9083, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'jszamzow@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9084, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'jtgiwa@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9085, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'jtneetz@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9086, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'jtquail@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9087, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'juliecorch@msn.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9088, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'junswor@uwo.ca', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9089, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'just.fine@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9090, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'justinliberman@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9091, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'jvandeloo@new.rr.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9092, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'jwstew61@charter.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9093, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'jzientarski@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9094, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'karen.gilbert@sympatico.ca', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9095, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'karenannroland@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9096, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'kathyapartridge@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9097, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'kengallen@wowway.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9098, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'kengeisler@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9099, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'kentjohannsen@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9100, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'kfarstvedt@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9101, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'khmaclean42@att.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9103, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'kjbouwman@stmarysofmichigan.org', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9104, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'kjnelson2@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9105, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'kjostes@charter.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9106, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'kkapera@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9107, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'kldruyor@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9108, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'klwillman@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9109, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'kovac.john@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9110, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'kreiswirth@msn.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9111, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'kturnowchyk@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9112, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'kveryser@charterinternet.con', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9113, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'kviaanko@sbdglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9114, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'kviazanko@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9116, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'kzoosmitty@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9117, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'la_bello_vita@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9118, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'lascrsdk-bills@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9120, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'laurawake88@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9122, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'lawick@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9123, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'lchipman@tds.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9124, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'leah69@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9125, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'lebiaje@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9126, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'leebenj@msn.edu', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9127, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'lisamoore5@att.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9128, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'lisav_1213@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9129, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'lmkildahl64@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9130, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'lobos00g@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9131, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'lorrierrn@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9132, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'lovetasha@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9133, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'lpyykkonen@wowway.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9135, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'lwood.77@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9136, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'm.rant@charter.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9138, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'maprentice@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9139, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'marisa.boston@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9140, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'markopel@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9141, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'mary_e_wade@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9142, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'matt@h4smi.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9143, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'mattthecopierguy@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9144, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'maxxp21@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9145, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'mbcroft@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9146, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'mbkrater@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9147, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'mcdonaldlinda@msn.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9148, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'mcgill2002@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9149, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'mchomic@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9150, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'mcsigkirkland@charterinternet.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9151, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'mctrois@shaw.ca', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9152, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'megjim23@bellsouth.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9153, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'melanie@melaniebowen.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9154, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'melissa.hammett@citizensbank.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9155, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'melissa_brockway@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9156, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'mercina3@dex.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9157, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'mgonyon@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9158, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'mgrobards@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9159, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'michelle_moran@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9160, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'mick.story@jackson.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9161, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'mickeywaw@charter.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9162, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'mikeandsuedecker@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9163, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'mikejd4@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9164, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'mikelogan@synergy-env.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9165, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'missy.root@compuware.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9166, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'mivol@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9167, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'mkaat@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9168, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'mkllprice@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9169, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'mlalonde@expensereduction.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9170, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'mlewis2864@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9171, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'mrsalyce@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9528, '2011-05-19', 'Jimmie', 'Mitchell', '3086 Wakeshire Drive', 'Dublin', 'OH', '43017', NULL, '614 270-9074', NULL, 'mitchell36@ameritech.net', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.17) Gecko/20110420 YFF3 Firefox/3.6.17 FBSMTWB', '75.22.103.41', true, NULL, NULL, NULL, NULL, NULL, NULL, ':15:29:17:23:4:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9173, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'msugnet@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9174, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'mvanderlaan1@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9175, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'my4boys_4@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9176, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'nald810@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9177, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'neejur@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9178, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'nickpiunti@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9179, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'nlwalker6@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9180, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'nrhollow@charter.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9181, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'NSK@neilskahnpc.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9182, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'okray.mbc@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9183, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'oneputtcj@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9185, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'p.stoll@bex.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9186, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'palmich66@att.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9187, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'pam@bardhvac.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9188, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'pat.d@wintersteiger.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9189, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'pat92900@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9190, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'pfrising@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9191, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'phayes25@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9192, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'pj60140@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9193, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'ptspower@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9194, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'rana_adou@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9195, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'rbaranski@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9196, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'renga.rajan@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9197, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'rfort@att.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9198, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'rhrogala@att.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9199, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'richard@primericagroupone.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9200, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'rick@jarzembowski.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9201, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'ritasmythe7@att.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9202, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'rjin15@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9203, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'rob.debertoli@city.elliotlake.on.ca', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9204, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'robert.campbell@watsonwyatt.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9205, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'ron_yokum@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9206, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'roofdr2347@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9207, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'rosie1515@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9208, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'rosiemary@msn.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9209, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'rossfamily75@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9210, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'roxanneflaska@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9211, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'rudolphshorter@att.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9213, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 's_proksch@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9214, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'sabenton@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9216, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'sandybarnes1@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9217, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'sara@doyledetroit.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9218, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'sarahkjen@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9219, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'sdrake303@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9220, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'serhome007@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9221, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'sfraley@danis.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9222, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'shannonpackan@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9223, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'sharonlfowler@bellsouth.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9224, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'shelleyrenae@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9225, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'shellybattershell@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9226, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'shirley@korb-toy.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9227, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'sjkuehner@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9228, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'smiscavish@marcusmillichap.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9229, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'sneddy1@ejourney.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9230, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'spartans48309@wowway.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9231, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'spencers11@charter.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9232, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'srb39@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9233, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'stacielyn33@att.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9234, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'steve3010@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9235, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'sullivan316@att.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9236, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'susannystrom@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9237, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'susieturek@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9238, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'swalterarbor23@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9239, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'tajovi@tri.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9240, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'taketurns@charter.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9241, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'taradrury@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9242, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'tawo40@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9243, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'tbarr35223@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9244, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'tbazany1293@charter.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9245, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'tbenton@wolves.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9246, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'tcrystal2543@charter.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9247, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'tedvmccarthy@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9248, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'terri4msu@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9249, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'terry.weiler@spectrum-health.org', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9250, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'thaase@ndindustries.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9251, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'the_milanos@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9252, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'thebarnetts@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9253, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'thewps@ameritech.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9254, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'thomas_d_cox@yahoo.co.uk', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9255, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'tlgrove@dow.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9256, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'tmal104083@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9257, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'tmlagalo@dow.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9258, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'tpaws80778@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9259, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'trajter@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9260, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'transcribermom3@charter.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9261, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'traumadog91@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9262, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'trekceles@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9263, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'troutcreek@vdgrijn.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9264, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'tturner325@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9265, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'uppercapsd@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9266, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'vansad@earthlink.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9267, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'vikmali@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9268, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'warnerejw@triton.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9269, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'worksfile@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9270, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'yellowdog1397@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9272, '2009-11-11', '', '', '', '', '', '', NULL, '', NULL, 'zimplus2@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-11-11', '2009-11-11', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9273, '2009-11-12', 'beth', 'hager', '683 westview nw', 'grand rapids', 'michigan', '49504', NULL, '616-735-3685', NULL, 'bethha2003@yahoo.com', NULL, NULL, true, NULL, NULL, 'I bid/won a two nite stay from the Sacred Heart auction.  I did not know that there was a expiration date involved and I was wondering if that could be expanded.  I was planning on using it during the summer but was laid off in June and funds are very tight at this time.  So could I please get an extension of time to use this.  I paid lots for it and don''t want to lose out on this.  Thank you for your consideration.  ', NULL, NULL, 'won at Sacred Heart of Jesus School auction', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (24, '2003-07-31', 'Richard', 'Myers', '1022 Craig Rd', 'Maumee', 'Ohio', '43537', NULL, '(419)467-7428', NULL, 'rmyers@noneman.com', NULL, NULL, true, 6, 0, '<p>To clarify we would like to reserve for September 11, 2003 to the 14th of September.</p>', '2003-10-11', '2003-10-14', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7393, '2008-10-27', 'Jeff', 'Thompson', '', '', '', '', NULL, '', NULL, 'jeffthompson51@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7394, '2008-10-27', 'Karen', 'Swan', '', '', '', '', NULL, '', NULL, 'kmswan@med.umich.edu', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7395, '2008-10-27', 'Dave', 'Acky', '', '', '', '', NULL, '', NULL, 'daveacky@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8703, '2009-07-30', 'Bob', 'Cloutier', '', '', '', '', NULL, '', NULL, 'bbclout@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-07-30', '2009-07-30', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7396, '2008-10-27', 'Susan', 'Casey', '', '', '', '', NULL, '', NULL, 'sue@g-m-d.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2635, '2004-12-27', 'Frank', 'Zimmer', '3950 N. Lake Shore Drive #627E', 'Chicago', 'IL', '60613', NULL, '773-755-9284', NULL, 'fzimmer@scheersinc.com', NULL, NULL, true, 6, 5, '', '2005-07-03', '2005-07-06', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2973, '2005-07-12', 'Norm ', 'Shippy', '4129 Spruce', 'Dorr', 'MI', '49323', NULL, '(616) 681-2219', NULL, 'nbshippy@sbcglobal.net', NULL, NULL, true, 9, 5, '', '2005-08-29', '2005-09-02', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3007, '2005-07-29', 'carol', 'mcquillan', '902  Unit G Chestnut Hill Drive', 'Auburn Hills', 'Mi', '48326', NULL, '', NULL, 'mcquillan_carol@yahoo.com', NULL, NULL, true, 9, 4, '', NULL, NULL, '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7397, '2008-10-27', 'Craig', 'Smith', '', '', '', '', NULL, '', NULL, 'smittyc50@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7399, '2008-10-27', 'Jamie', 'Kurth', '', '', '', '', NULL, '', NULL, 'jkurth@bloomfield.org', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9618, '2011-11-15', 'sarah', 'heath', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'sarahhaynesheath@gmail.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_2) AppleWebKit/534.51.22 (KHTML, like Gecko) Version/5.1.1 Safari/534.51.22', '71.205.83.204', true, 4, 1, NULL, '2011-12-29', '2011-12-31', 'I would also like to know if there is a pool open during the winter?', ':12:2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (612, '2003-09-22', 'Douglas', 'Wassman', '', '', '', '', NULL, '', NULL, 'dman@hdtinfo.com', NULL, NULL, true, NULL, NULL, '', '2003-09-22', '2003-09-22', '', ':11:17:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (661, '2003-09-26', 'Carol', 'Lemieux', '', 'Westland', 'MI', '48185', NULL, '', NULL, 'chantio@yahoo.com', NULL, NULL, true, 9, NULL, '', '2006-01-01', '2006-01-06', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (666, '2003-09-26', 'Jennifer', 'Milas', '', 'Grand Rapids', 'MI', '49506', NULL, '', NULL, 'momluvscr@yahoo.com', NULL, NULL, true, 4, NULL, '', '2003-09-26', '2003-09-26', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (684, '2003-09-26', 'Greg ', 'Sheldon', '', 'Owensboro', 'KY', '42303', NULL, '', NULL, 'gis1948@aol.com', NULL, NULL, true, 6, NULL, '', '2003-09-26', '2003-09-26', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (893, '2003-11-22', 'Phil', 'Giuliani', '32058 Shadywood', 'New Baltimore', 'Michigan', '48047', NULL, '586-716-1944', NULL, 'philg160@hotmail.com', NULL, NULL, true, 9, 1, '', '2004-07-21', '2004-07-28', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1127, '2004-01-09', 'ALBERT', 'WILSON', '4651 West Water', 'Kimball', 'Mi.', '48074', NULL, '810.982.9637', NULL, 'awilson@itape.com', NULL, NULL, true, 6, 4, '', '2004-01-16', '2004-01-20', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1198, '2004-01-27', 'Ed', 'Murphy', '', '', '', '', NULL, '', NULL, 'murphy785@aol.com', NULL, NULL, true, NULL, NULL, '', '2004-01-27', '2004-01-27', '', ':11:12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1277, '2004-03-29', 'Edward', 'Oles', '28861 Gilbert Drive', 'Warren ', 'MI', '48093', NULL, '586 573-3083', NULL, 'eoles@wowway.com', NULL, NULL, true, 9, 0, '<p>Would like to rent (2) 3 bedroom units from 07-03-2004 to 07-06-2004 near to each other if possible. Please contact Jennifer @ (586) 573-3083. Thank you</p>', '2004-07-03', '2004-07-06', '', ':11:3:12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1296, '2004-04-14', 'David', 'Sturtz', '17517 Oak Hill Drive', 'Northville', 'MI', '48167', NULL, '248 305 5512', NULL, 'drsturtz@comcast.net', NULL, NULL, false, 9, 0, '', '2004-04-25', '2004-04-28', '', ':11:6:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1300, '2004-04-15', 'Susan', 'Yun', '6360 Golfview Drive', 'Clarkston', 'MI', '48346', NULL, '248-625-9485', NULL, 'jsjyun944@cs.com', NULL, NULL, false, 6, 5, '<p>Any availibility over the 4th? Just 3 nights for 2 adults. Thank you.</p>', '2004-07-02', '2004-07-05', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1332, '2004-05-11', 'SUZANNE', 'NILE', '25618 GRACELAND CIRCLE', 'DEARORN HEIGHTS', 'MICHIGAN', '48125', NULL, '313-806-2760', NULL, 'SNILE@AOL.COM', NULL, NULL, true, 9, 3, '', '2004-08-01', '2004-08-08', 'NEAR POOL', ':11:12:6:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1335, '2004-05-13', 'Gary', 'Featherston', '287 Lochaven', 'waterford', 'Michigan', '48327', NULL, '248-683-2668', NULL, 'lougars@netzero.net', NULL, NULL, true, 8, 5, '', '2004-06-05', '2004-06-07', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1353, '2004-06-05', 'Carol', 'Simpson', '', '', '', '', NULL, '', NULL, 'cssrtl@msn.com', NULL, NULL, false, 6, 3, '', '2004-06-09', '2004-06-12', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1360, '2004-06-14', 'carrie', 'hull', '939 hampton', 'grosse pointe woods,', 'mi', '48236', NULL, '(313) 882-4019', NULL, 'hull58@comcast.net', NULL, NULL, true, 4, 5, '', '2004-08-08', '2004-08-11', '', ':11:12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1402, '2004-06-20', 'Michael', 'Ashby', '48030 St. Andrews Sq', 'Plymouth', 'Mi', '48170', NULL, '734-634-2253', NULL, 'meashby@comcast.net', NULL, NULL, true, 0, 5, '<p>how close is your property to the charlevoix area?</p>', '2004-11-08', '2004-11-14', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1406, '2004-06-21', 'lisa', 'SIMMONS', '769 N. Shady Hollow Circle', 'bloomfield hills ', 'mi', '48304', NULL, '2485404734', NULL, 'lisasimmons6789@yahoo.com.au', NULL, NULL, true, 9, 1, '', '2004-08-02', '2004-08-07', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1408, '2004-06-21', 'Kim', 'collins', '30141 Windsor', 'Gibraltar', 'MI', '48173', NULL, '313-617-0622', NULL, 'ckln@comcast.net', NULL, NULL, true, 9, 2, '', '2004-08-13', '2004-08-16', 'Would need 2 units this size or larger.  Please state availability and prices.', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1423, '2004-07-05', 'Tom', 'Thumb', '1000 my', 'my', 'mi', '48099', NULL, '313-777-7777', NULL, 'tt@mymail.com', NULL, NULL, false, 0, 1, '', '2004-07-22', '2004-07-28', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2728, '2005-01-06', 'Darryll', 'Lucas', '', '', '', '', NULL, '', NULL, 'darrylllucas@hotmail.com', NULL, NULL, true, 6, NULL, '<p>Looking for a place for our annual tourney of 20 guys. Practice round on friday, tourney play on saturday and sunday. May 20 to May 24.</p>', NULL, NULL, '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2739, '2005-01-15', 'tom', 'egan', '31389 Pagels', 'warren', 'mi', '48092', NULL, '586-264-5882', NULL, 'tjegan@comcast.net', NULL, NULL, true, 7, NULL, '', '2004-02-05', '2006-02-05', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2760, '2005-01-30', 'kathy', 'larosa', '7440 Cascade Woods S.E.', 'grand rapids', 'mi', '49546', NULL, '616-954-7537', NULL, 'matthewlarosa@sbcglobal.net', NULL, NULL, true, 8, 4, '', '2005-02-18', '2005-02-20', 'Grand Rapids Press ', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2826, '2005-05-30', 'Scott ', 'Tomrell', '437 Thomas lane', 'Grand Blanc', 'MI', '48439', NULL, '810-695-2423', NULL, 'yayasfenton@yahoo.com', NULL, NULL, true, 1, 0, '<p>We will have either 8 or 12. What would be the price?</p>', '2005-09-11', '2005-09-14', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3575, '2005-09-20', 'Gary', 'Stowe', '', '', '', '', NULL, '', NULL, 'stowebl@hotmail.com', NULL, NULL, true, 6, 5, '<p>Price inquiry for 2 nights/2adults. One a golfer, one a golf-widow. Courses: Hidden River, Little Traverse Bay and Charlevoix CC.</p>', '2005-10-04', '2005-10-06', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3861, '2005-12-06', 'ginina', 'lee', '10164 maplelawn', 'detroit', 'mi', '48204', NULL, '3132831465', NULL, 'gininab@hotmail.com', NULL, NULL, true, 4, 3, '', '2005-12-08', '2005-12-11', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3867, '2006-01-05', 'Therese', 'Madigan', '9592 Alger Drive', 'Brighton', 'MI', '48114', NULL, '', NULL, 'c_t_madigan@hotmail.com', NULL, NULL, true, 6, NULL, '<p>I am planning family reunion for approx 75-85 people. We need a kitchen and eating area that will accommodate everyone. Also interested in fishing, kid activities, golf, boating and baseball field.</p>', '2006-08-11', '2006-08-13', 'Google search', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3881, '2006-02-18', 'Gary', 'Fisher', '', '', 'Michigan', '', NULL, '616-502-3915', NULL, 'gary.b.fisher@jci.com', NULL, NULL, false, 1, 0, '<p>Need Big FORE golf pkg quote. Have 8-12 guys in party. Late Spring or Early Summer. Friday &amp; Saturday night stay. Thx.</p>', NULL, NULL, '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3884, '2006-03-12', 'John', 'Ryan', '3450 Richards Way', 'Lake Orion', 'MI', '48360', NULL, '248-214-7322', NULL, 'johnryan2@comcast.net', NULL, NULL, true, 6, 1, '<p>looking to purchase 2 bedroom/ 2 bath with loft. Also would like details of rental management program and contact with mortgage lender.</p>', NULL, NULL, '', ':11:12:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3897, '2006-04-18', 'David', 'Arnold', '', 'Macomb', 'MI', '48044', NULL, '586-263-4597', NULL, 'dra7@comcast.net', NULL, NULL, true, 6, 5, '', '2006-04-18', '2006-04-18', '', ':11:', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4222, '2006-07-04', 'Philip', 'Selden', '9012 Whispering Pine Curve', 'Sylvania', 'Ohio', '43560', NULL, '419-829-2600', NULL, 'joggerphil@aol.com', NULL, NULL, true, 7, 1, '', '2006-04-09', '2006-08-09', 'We rented for the past two years. THe reservation from last year was probably under ', ':11:6:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4247, '2006-09-18', 'Robin', 'Vandenberg', '', '', '', '', NULL, '', NULL, 'rvandje@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-09-18', '2006-09-18', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4281, '2006-09-25', 'Anand', 'Menon', '', '', '', '', NULL, '', NULL, 'ab.menon@gmail.com', NULL, NULL, true, NULL, NULL, '', '2006-09-25', '2006-09-25', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7402, '2008-10-27', 'Scott', 'Nieman', '', '', '', '', NULL, '', NULL, 'snieman512@msn.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7403, '2008-10-27', 'Mike', 'Cavalieri', '', '', '', '', NULL, '', NULL, 'golfdance@personinternet.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8705, '2009-07-30', 'Mark', 'Hagerty', '', '', '', '', NULL, '', NULL, 'mark@thehagertys.org', NULL, NULL, true, NULL, NULL, '', '2009-07-30', '2009-07-30', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7404, '2008-10-27', 'Grant', 'Belanger', '', '', '', '', NULL, '', NULL, 'gbelanger@easyinsure.ca', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7405, '2008-10-27', 'John', 'Parsons', '', '', '', '', NULL, '', NULL, 'trailrite@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7487, '2008-10-27', 'Mike', 'Byma', '', '', '', '', NULL, '', NULL, 'mbyma@juno.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7218, '2008-09-22', 'Dave ', 'Rankin', '', '', '', '', NULL, '', NULL, 'flobee119@neo.rr.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2889, '2005-06-02', 'Joelle', 'Maleszyk', '', '', '', '', NULL, '', NULL, 'rjmaleszyk@wowway.com', NULL, NULL, true, NULL, NULL, '', '2005-06-02', '2005-06-02', '', ':11:', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7094, '2008-06-17', 'Laura', 'Hittler', '', '', '', '', NULL, '', NULL, 'lhittler@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7408, '2008-10-27', 'Ali', 'Jamal', '', '', '', '', NULL, '', NULL, 'ali@jamco1.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8709, '2009-07-30', 'Ernie', 'Mitchell', '', '', '', '', NULL, '', NULL, 'emitchell@saf.kaba.com', NULL, NULL, true, NULL, NULL, '', '2009-07-30', '2009-07-30', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7409, '2008-10-27', 'Vince', 'Trampus', '', '', '', '', NULL, '', NULL, 'vtrampus@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7421, '2008-10-27', 'John', 'Hanus', '', '', '', '', NULL, '', NULL, 'spiceman1@wowway.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7422, '2008-10-27', 'Steve', 'Bessette', '', '', '', '', NULL, '', NULL, 'stevebessette@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7412, '2008-10-27', 'Greg', 'Blair', '', '', '', '', NULL, '', NULL, 'greg_blair@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7423, '2008-10-27', 'Chris ', 'young', '', '', '', '', NULL, '', NULL, 'chris_young@cogeco.ca', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7430, '2008-10-27', 'Dennis', 'Brown', '', '', '', '', NULL, '', NULL, 'psu1972@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7413, '2008-10-27', 'Mary Ann', 'Russell', '', '', '', '', NULL, '', NULL, 'mar51354@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7424, '2008-10-27', 'Colleen', 'Strader', '', '', '', '', NULL, '', NULL, 'cmonk1027@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7414, '2008-10-27', 'Brian', 'Knowles', '', '', '', '', NULL, '', NULL, 'bknowles@onwbeer.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7425, '2008-10-27', 'Becky', 'Luckhardt', '', '', '', '', NULL, '', NULL, 'r.luckhardt@accellfitness.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7431, '2008-10-27', 'John', 'Won', '', '', '', '', NULL, '', NULL, 'jbwon4698@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7415, '2008-10-27', 'Jeff', 'Brundage', '', '', '', '', NULL, '', NULL, 'brundage@sympatico.ca', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7426, '2008-10-27', 'Christopher', 'Beals', '', '', '', '', NULL, '', NULL, 'roar1971@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7432, '2008-10-27', 'Michelle', 'Young', '', '', '', '', NULL, '', NULL, 'meyoung00@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7436, '2008-10-27', 'Doug', 'Barrett', '', '', '', '', NULL, '', NULL, 'dugbar1@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7440, '2008-10-27', 'Dominic', 'Monterosso', '', '', '', '', NULL, '', NULL, 'ndrosso@gmail.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7444, '2008-10-27', 'Jay', 'Dent', '', '', '', '', NULL, '', NULL, 'james.dent@cbsa-asfc.gc.ca', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7427, '2008-10-27', 'Alex', 'Aldred', '', '', '', '', NULL, '', NULL, 'amaldred@gmail.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7433, '2008-10-27', 'Anthony', 'Quagila', '', '', '', '', NULL, '', NULL, 'anthony.quaglia@brucepower.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7441, '2008-10-27', 'Richard', 'Kelly', '', '', '', '', NULL, '', NULL, 'rkelly@narmco.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7445, '2008-10-27', 'Kelly', 'Buller', '', '', '', '', NULL, '', NULL, 'lynnzapple@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7448, '2008-10-27', 'Anthony', 'Trupiano', '', '', '', '', NULL, '', NULL, 'troopie39@yahoo.com', NULL, NULL, true, NULL, NULL, '<p>A</p>', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7450, '2008-10-27', 'Bob', 'Ptashnik', '', '', '', '', NULL, '', NULL, 'rtptash@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7452, '2008-10-27', 'Lynn', 'McLeod', '', '', '', '', NULL, '', NULL, 'lynnmcleod@rogers.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7417, '2008-10-27', 'Scott', 'Hill', '', '', '', '', NULL, '', NULL, 'hammyhill@gmail.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7428, '2008-10-27', 'Elaine', 'Conklin', '', '', '', '', NULL, '', NULL, 'ebondie@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7434, '2008-10-27', 'Chris', 'Thomas', '', '', '', '', NULL, '', NULL, 'cthomas0622@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7438, '2008-10-27', 'Dave', 'Kennedy', '', '', '', '', NULL, '', NULL, 'qbecks@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7442, '2008-10-27', 'Jim', 'Junewick', '', '', '', '', NULL, '', NULL, 'jlwick2000@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7446, '2008-10-27', 'Mike', 'Keys', '', '', '', '', NULL, '', NULL, 'mikekeys@rogers.com', NULL, NULL, true, NULL, NULL, '<p>Mike</p>', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7498, '2008-10-27', 'Joe & Rob', '', '', '', '', '', NULL, '', NULL, 'robb@baeind.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7325, '2008-09-22', 'Ed & Pat', 'Brooks', '', '', '', '', NULL, '', NULL, 'state79@msn.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6668, '2008-05-01', 'William', 'Balnave', '', '', '', '', NULL, '', NULL, 'bbalnave@wowway.com', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7224, '2008-09-22', 'Gordon', 'Welch', '', '', '', '', NULL, '', NULL, 'greenj@lcc.edu', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5872, '2007-08-14', 'Todd', 'Kofler', '', '', '', '', NULL, '', NULL, 'tkofler@fuse.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7291, '2008-09-22', 'Gayle O.', 'Smith', '', '', '', '', NULL, '', NULL, 'nsmith9698@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5151, '2007-01-19', 'Donna', 'Bania', '', '', '', '', NULL, '', NULL, 'banido21@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2007-01-19', '2007-01-19', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7211, '2008-09-22', 'Larry', 'Hughes', '', '', '', '', NULL, '', NULL, 'elsiehues@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5914, '2007-08-14', 'Marie', 'Caradonna', '', '', '', '', NULL, '', NULL, 'mclc1333@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-08-14', '2007-08-14', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8715, '2009-07-30', 'Brian', 'Sharpe', '', '', '', '', NULL, '', NULL, 'brian.sharpe@tatumllc.com', NULL, NULL, true, NULL, NULL, '', '2009-07-30', '2009-07-30', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7385, '2008-10-06', 'Carol', 'Smith', '', '', '', '', NULL, '', NULL, 'cdscas@netzero.net', NULL, NULL, true, NULL, NULL, '', '2008-10-06', '2008-10-06', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8706, '2009-07-30', 'Peter', 'Holmes', '524 Glendene Cr.', 'Warterloo', 'Ontario', 'N21 4P4', NULL, '519-747-7020', NULL, 'holmepe@sympatico.ca', NULL, NULL, true, NULL, NULL, '', '2009-07-30', '2009-07-30', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7429, '2008-10-27', 'Bryan', 'Busby', '', '', '', '', NULL, '', NULL, 'bbusby@besam.ca', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7435, '2008-10-27', 'Brett', 'hackworth', '', '', '', '', NULL, '', NULL, 'bc_hackworth@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7439, '2008-10-27', 'Terry', 'Brush', '', '', '', '', NULL, '', NULL, 'mainsts@sympatico.ca', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7447, '2008-10-27', 'Seonghun', 'Kim', '', '', '', '', NULL, '', NULL, 'shkim@hatci.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7449, '2008-10-27', 'Steven', 'Davy', '', '', '', '', NULL, '', NULL, 'davyst@mapleleaf.ca', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7453, '2008-10-27', 'Jerry', 'Ohearn', '', '', '', '', NULL, '', NULL, 'jerryohearn@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7454, '2008-10-27', 'Terry', 'Pickard', '', '', '', '', NULL, '', NULL, 'terry.j.pickard@abc.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7455, '2008-10-27', 'Wameng', 'Vang', '', '', '', '', NULL, '', NULL, 'mengus_vang@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7457, '2008-10-27', 'Brian', 'McCall', '', '', '', '', NULL, '', NULL, 'brian.mccall@charter.net', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7458, '2008-10-27', 'Ted', 'Van Lunen', '', '', '', '', NULL, '', NULL, 'vanlunen@nrcan.gc.ca', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7459, '2008-10-27', 'Ron', 'Gesquiere', '', '', '', '', NULL, '', NULL, 'rgesquiere@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7460, '2008-10-27', 'Jim', 'Sullivan', '', '', '', '', NULL, '', NULL, 'jsullivan@wrightcoating.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7462, '2008-10-27', 'Lon', 'Adair', '', '', '', '', NULL, '', NULL, 'lonrai@rogers.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7464, '2008-10-27', 'Adam', 'Veron', '', '', '', '', NULL, '', NULL, 'adam1493@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7465, '2008-10-27', 'Bill', 'Rimmke', '', '', '', '', NULL, '', NULL, 'rimmsouth@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7466, '2008-10-27', 'Tom', 'Maher', '', '', '', '', NULL, '', NULL, 'tommaher07@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7468, '2008-10-27', 'Bruce', 'Risselada', '', '', '', '', NULL, '', NULL, 'risselba@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7469, '2008-10-27', 'Maureen', 'McCulloch', '', '', '', '', NULL, '', NULL, 'mojomatti@sympatico.ca', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7471, '2008-10-27', 'Craig', 'Stott', '', '', '', '', NULL, '', NULL, 'craigo75@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7472, '2008-10-27', 'Harvey', 'Anchel', '', '', '', '', NULL, '', NULL, 'harveyanchel@matrixhealthservices.ca', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7473, '2008-10-27', 'Matt', 'Harper', '', '', '', '', NULL, '', NULL, 'lumberstud@gmail.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7474, '2008-10-27', 'Des', 'Morrow', '', '', '', '', NULL, '', NULL, 'dmorrow77@cogeco.ca', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7475, '2008-10-27', 'David', 'Abraham', '', '', '', '', NULL, '', NULL, 'daveabraham@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7476, '2008-10-27', 'Paulette', 'Miernicke', '', '', '', '', NULL, '', NULL, 'paulette.miernicke@canadianbearings.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7477, '2008-10-27', 'Cary', 'Bean', '', '', '', '', NULL, '', NULL, 'beanc@eagleottawa.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7478, '2008-10-27', 'Norm', 'Ling', '', '', '', '', NULL, '', NULL, 'susanling16@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7479, '2008-10-27', 'Kevin', 'Bloch', '', '', '', '', NULL, '', NULL, 'cheapskatecharlies@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7481, '2008-10-27', 'Tony', 'Koshar', '', '', '', '', NULL, '', NULL, 't.koshar@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7484, '2008-10-27', 'Chris', 'Doornbos', '', '', '', '', NULL, '', NULL, 'bball32cd@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7485, '2008-10-27', 'Al', 'Dean', '', '', '', '', NULL, '', NULL, 'alnoneck@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7486, '2008-10-27', 'Glenn', 'Rein', '', '', '', '', NULL, '', NULL, 'glennrein@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7491, '2008-10-27', 'Jason', 'Orton', '', '', '', '', NULL, '', NULL, 'jeorton@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7492, '2008-10-27', 'Claudia', 'Raymond', '', '', '', '', NULL, '', NULL, 'steveraymond001@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7493, '2008-10-27', 'Jeff', 'Formanczyk', '', '', '', '', NULL, '', NULL, 'jfaspen@gmail.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7494, '2008-10-27', 'Ralph', 'Hess', '', '', '', '', NULL, '', NULL, 'ralphhess@bellnet.ca', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7495, '2008-10-27', 'Dylan', '', '', '', '', '', NULL, '', NULL, 'dylan_foukes@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7496, '2008-10-27', 'Ann', 'McManamon', '', '', '', '', NULL, '', NULL, 'annemcmanamon@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7499, '2008-10-27', 'Paul', '', '', '', '', '', NULL, '', NULL, 'prevensn@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7501, '2008-10-27', 'Ed', 'Raasch', '', '', '', '', NULL, '', NULL, 'eraasch@charter.net', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7502, '2008-10-27', 'Tim', 'Winterburn', '', '', '', '', NULL, '', NULL, 'twinterburn@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7503, '2008-10-27', 'Roger', 'Roberge', '', '', '', '', NULL, '', NULL, 'rroberge@pptc.gc.ca', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7504, '2008-10-27', 'Tom ', 'Tackett', '', '', '', '', NULL, '', NULL, 'ttackett@goughinc.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7506, '2008-10-27', 'Lynn', 'Elliott', '', '', '', '', NULL, '', NULL, 'nlplynn@bellnet.ca', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7508, '2008-10-27', 'Charisma', 'Taylor', '', '', '', '', NULL, '', NULL, 'charismant@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7509, '2008-10-27', 'Bob', 'McCullough', '', '', '', '', NULL, '', NULL, 'bob.mccullough@gm.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7510, '2008-10-27', 'Marcia', 'Vereecken', '', '', '', '', NULL, '', NULL, 'mv12251@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7511, '2008-10-27', 'Justin', 'Waterloo', '', '', '', '', NULL, '', NULL, 'jbreau@live.ca', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7512, '2008-10-27', 'john', 'Bobaljik', '', '', '', '', NULL, '', NULL, 'bojudy@sympatico.ca', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7514, '2008-10-27', 'Roger', 'Jones', '', '', '', '', NULL, '', NULL, 'rjones110@cox.net', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7517, '2008-10-27', 'Paul', 'Bulgarelli', '', '', '', '', NULL, '', NULL, 'pbulgarelli@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7518, '2008-10-27', 'Jim', 'Ditulio', '', '', '', '', NULL, '', NULL, 'jdditulio@ameritech.net', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7522, '2008-10-27', 'Laura', 'Orr', '', '', '', '', NULL, '', NULL, 'kitty_901@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7523, '2008-10-27', 'Linda', 'Barthel', '', '', '', '', NULL, '', NULL, 'barthel@umich.edu', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7525, '2008-10-27', 'Lou', 'Murdoch', '', '', '', '', NULL, '', NULL, 'jims25@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7526, '2008-10-27', 'Adam', 'Shier', '', '', '', '', NULL, '', NULL, 'adams@lumbermens-inc.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7528, '2008-10-27', 'Travis', 'Smith', '', '', '', '', NULL, '', NULL, 'twsierra74@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7530, '2008-10-27', 'Laurie', 'Hawkins', '', '', '', '', NULL, '', NULL, 'laurie.hawkins@rogers.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7531, '2008-10-27', 'Brett', 'Brown', '', '', '', '', NULL, '', NULL, '8ft4par@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7533, '2008-10-27', 'Susan', 'Robertson', '', '', '', '', NULL, '', NULL, 'smrobert@rogers.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7534, '2008-10-27', 'Sharon', 'Yee', '', '', '', '', NULL, '', NULL, 'sharonyee@sympatico.ca', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7535, '2008-10-27', 'Scott', 'Williston', '', '', '', '', NULL, '', NULL, 'swilliston102@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7536, '2008-10-27', 'Christine', 'Williamson', '', '', '', '', NULL, '', NULL, 'ceyoung6@juno.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7537, '2008-10-27', 'Kelly', 'King', '', '', '', '', NULL, '', NULL, 'tkhas@verizon.net', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7540, '2008-10-27', 'Dar', 'Howell', '', '', '', '', NULL, '', NULL, 'dhowell1956@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7541, '2008-10-27', 'Andrea', 'Govanis', '', '', '', '', NULL, '', NULL, 'a_govanis@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7542, '2008-10-27', 'Jason', 'Cabral', '', '', '', '', NULL, '', NULL, 'cabraljason6@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7544, '2008-10-27', 'Daryl', 'Davis', '', '', '', '', NULL, '', NULL, 'drdchiro69@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7546, '2008-10-27', 'Lynn', 'Stamiris', '', '', '', '', NULL, '', NULL, 'trini1999@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7548, '2008-10-27', 'Farhan', 'Mohammad', '', '', '', '', NULL, '', NULL, 'farhanm13@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7550, '2008-10-27', 'Jim', 'Stewart', '', '', '', '', NULL, '', NULL, 'jstewart5@cogeco.ca', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7551, '2008-10-27', 'David', 'Schultz', '', '', '', '', NULL, '', NULL, 'davewillride@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7552, '2008-10-27', 'Rodney', 'Gerth', '', '', '', '', NULL, '', NULL, 'rodneygerth@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7553, '2008-10-27', 'Rafael', 'Torre', '', '', '', '', NULL, '', NULL, 'rafaeltorre@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7555, '2008-10-27', 'Helen', 'Goljak', '', '', '', '', NULL, '', NULL, 'h.goljak@sympatico.ca', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7556, '2008-10-27', 'John', 'Hardacre', '', '', '', '', NULL, '', NULL, 'hardyj66@roadrunner.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7557, '2008-10-27', 'Craig', 'Brockie', '', '', '', '', NULL, '', NULL, 'cbrockie@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7558, '2008-10-27', 'Don', 'Pluta', '', '', '', '', NULL, '', NULL, 'dpluta55@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7559, '2008-10-27', 'Joe', 'Nieuwkoop', '', '', '', '', NULL, '', NULL, 'jnieuwkoop@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7560, '2008-10-27', 'Sue', 'Kuypers', '', '', '', '', NULL, '', NULL, 'skuypers@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7561, '2008-10-27', 'Bruce', 'Liebowitz', '', '', '', '', NULL, '', NULL, 'bruce@postguard.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7562, '2008-10-27', 'Katherine', 'Gilbert', '', '', '', '', NULL, '', NULL, 'kgilbert102@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7563, '2008-10-27', 'Jim', 'Dowdy', '', '', '', '', NULL, '', NULL, 'jdowdy@lfd.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7565, '2008-10-27', 'Scott', 'O''Neil', '', '', '', '', NULL, '', NULL, 'soneil@kpmg.ca', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7566, '2008-10-27', 'Anthony', 'Berto', '', '', '', '', NULL, '', NULL, 'anthonyberto@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7567, '2008-10-27', 'Lisa', 'Cote', '', '', '', '', NULL, '', NULL, 'lcote@vianet.on.ca', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7568, '2008-10-27', 'H', 'Schaefer', '', '', '', '', NULL, '', NULL, 'hs48044@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7571, '2008-10-27', 'Ryan', 'Moffat', '', '', '', '', NULL, '', NULL, 'rsmoffat55@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7572, '2008-10-27', 'Lincoly', 'Herweyer', '', '', '', '', NULL, '', NULL, 'clherweyer@aol.com', NULL, NULL, true, NULL, NULL, '', '2008-10-27', '2008-10-27', '', ':11:17:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7046, '2008-06-17', 'Angela', 'Zuiderveen', '', '', '', '', NULL, '', NULL, 'azuiderveen@devontitle.com', NULL, NULL, true, NULL, NULL, '', '2008-06-17', '2008-06-17', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7574, '2008-10-29', 'Carol', 'Davis', '', '', '', '', NULL, '', NULL, 'tcdavis@cablespeed.com', NULL, NULL, true, NULL, NULL, '', '2008-10-29', '2008-10-29', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4274, '2006-09-22', 'Nancy', 'Triezenberg', '', '', '', '', NULL, '', NULL, 'gtriezen@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-09-22', '2006-09-22', '', ':11:12:6:23:22:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9312, '2010-01-20', '', '', '', '', '', '', NULL, '', NULL, 'kwpbrentwood@gmail.com', NULL, NULL, true, NULL, NULL, '', '2010-01-20', '2010-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7289, '2008-09-22', 'Larry', 'Nichols', '', '', '', '', NULL, '', NULL, 'nichols_jbe@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-09-22', '2008-09-22', '', ':11:23:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6705, '2008-05-01', 'Chris', 'Johnson', '', '', '', '', NULL, '', NULL, 'chrisjohnson05@comcast.net', NULL, NULL, true, NULL, NULL, '', '2008-05-01', '2008-05-01', '', ':11:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7692, '2008-11-17', 'Liz', 'Mayle', '', '', '', '', NULL, '', NULL, 'elyame@msn.com', NULL, NULL, true, NULL, NULL, '<p>Li</p>', '2008-11-17', '2008-11-17', '', ':11:23:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7707, '2008-11-17', '', '', '', '', '', '', NULL, '', NULL, 'sd_sleight@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2008-11-17', '2008-11-17', '', ':11:23:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4937, '2006-10-02', 'Allan', 'Kowalski', '', '', '', '', NULL, '', NULL, 'tak0880@comcast.net', NULL, NULL, true, NULL, NULL, '', '2006-10-02', '2006-10-02', '', ':11:23:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8707, '2009-07-30', 'Greg', 'Kiss', '12275 St. Andrews Way', 'Fenton', 'MI', '48430', NULL, '810-691-9203', NULL, 'gjkassociatesinc@charter.net', NULL, NULL, true, NULL, NULL, '', '2009-07-30', '2009-07-30', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8708, '2009-07-30', 'William', 'Ling', '11966 Allbrook Dr.', 'Poway', 'CA', '92064-4125', NULL, '619-518-0775', NULL, 'wling@whling.com', NULL, NULL, true, NULL, NULL, '', '2009-07-30', '2009-07-30', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8710, '2009-07-30', 'Garry', 'Phillips', '13686 Green Prairie', 'Vicksburg', 'MI', '49097', NULL, '269-207-8872', NULL, 'gkphillips5002@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-07-30', '2009-07-30', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8711, '2009-07-30', 'William', 'Projieck', '3755 Fallentree Lane', 'Cincinnati', 'OH', '45236', NULL, '5139842366', NULL, 'wmprojieck@fuse.net', NULL, NULL, true, NULL, NULL, '', '2009-07-30', '2009-07-30', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8712, '2009-07-30', 'Richard', 'Schley', '2130 Annabelle', 'Detroit', 'MI', '48217', NULL, '313-386-0942', NULL, 'ricsly@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-07-30', '2009-07-30', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8717, '2009-07-30', 'Randy', 'VanHule', '', '', '', '', NULL, '', NULL, 'randyvanh@msn.com', NULL, NULL, true, NULL, NULL, '', '2009-07-30', '2009-07-30', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8714, '2009-07-30', 'Jordan', 'Sekulovski', '15537 98th Pl', 'Dyer', 'IN', '46311', NULL, '219-765-1866', NULL, 'amyjpant@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-07-30', '2009-07-30', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6533, '2007-11-23', 'Rita', 'Smythe', '', '', '', '', NULL, '', NULL, 'rsmythe7@comcast.net', NULL, NULL, true, NULL, NULL, '', '2007-11-23', '2007-11-23', '', ':11:23:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8716, '2009-07-30', 'Steven ', 'Shy', '13200 Cambridge Ct.', 'Plymouth', 'MI', '48170', NULL, '734-416-9700', NULL, 'steveshy@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-07-30', '2009-07-30', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8718, '2009-07-30', 'Jill ', 'Weber', '810 River Acres', 'Tecumseh', 'MI', '49286', NULL, '734-368-5547', NULL, 'jweber5547@verizon.net', NULL, NULL, true, NULL, NULL, '', '2009-07-30', '2009-07-30', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8719, '2009-07-30', 'Nancy', 'Wilson', 'P.O. Box 864', 'Hempstead', 'Texas', '77445', NULL, '979-826-3979', NULL, 'newilson6406@att.net', NULL, NULL, true, NULL, NULL, '', '2009-07-30', '2009-07-30', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8720, '2009-07-30', 'Jason', 'Wolfe', '29991 M-60 East', 'Homer', 'MI', '49245', NULL, '', NULL, 'jwolfe@us.brembo.com', NULL, NULL, true, NULL, NULL, '', '2009-07-30', '2009-07-30', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8724, '2009-08-12', 'George', 'Martin', '575 Thornhill Ct.', 'Belleville', 'MI', '48111', NULL, '734-699-1403', NULL, 't9664gm@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-08-12', '2009-08-12', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8725, '2009-08-16', 'Dean', '', '', '', '', '', NULL, '248-345-6798', NULL, 'dfefopov@umich.edu', NULL, NULL, true, NULL, NULL, '', '2009-08-16', '2009-08-16', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8728, '2009-08-27', 'Richard', 'St. John', '', '', '', '', NULL, '269-650-0197', NULL, 'rstjohn@chartermi.net', NULL, NULL, true, NULL, NULL, '', '2009-08-27', '2009-08-27', '', ':11:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9274, '2009-11-13', 'Jay ', 'MacCready', '', '', '', '', NULL, '', NULL, 'jmaccready@jacksonglassworks.com', NULL, NULL, true, NULL, NULL, '', '2009-11-13', '2009-11-13', '', ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9275, '2009-11-13', 'Holly', 'Sigafoose', '', '', '', '', NULL, '', NULL, 'hollys7@localnet.com', NULL, NULL, true, NULL, NULL, '', '2009-11-13', '2009-11-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9276, '2009-11-13', 'Terri', 'Farrell', '', '', '', '', NULL, '', NULL, 'terrimfarrell@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-11-13', '2009-11-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9277, '2009-11-13', 'Brian', '', '', '', '', '', NULL, '', NULL, 'bak@kellerthoma.com', NULL, NULL, true, NULL, NULL, '', '2009-11-13', '2009-11-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9278, '2009-11-13', 'Beatrix', '', '', '', '', '', NULL, '', NULL, 'bfuzet-przekop@cranbrook.edu', NULL, NULL, true, NULL, NULL, '', '2009-11-13', '2009-11-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9279, '2009-11-13', 'Jennifer', '', '', '', '', '', NULL, '', NULL, 'jencoyne@bezaitis.com', NULL, NULL, true, NULL, NULL, '', '2009-11-13', '2009-11-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9280, '2009-11-13', 'Kelly', '', '', '', '', '', NULL, '', NULL, 'kadesouza4mk@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-11-13', '2009-11-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9281, '2009-11-13', 'Dawn', '', '', '', '', '', NULL, '', NULL, 'dschae10@att.net', NULL, NULL, true, NULL, NULL, '', '2009-11-13', '2009-11-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9282, '2009-11-13', 'Elizabeth', '', '', '', '', '', NULL, '', NULL, 'elizabeth@thehelmfamily.com', NULL, NULL, true, NULL, NULL, '', '2009-11-13', '2009-11-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9283, '2009-11-13', 'Rachel', '', '', '', '', '', NULL, '', NULL, 'therachel@gmail.com', NULL, NULL, true, NULL, NULL, '', '2009-11-13', '2009-11-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9284, '2009-11-13', 'Arnold', '', '', '', '', '', NULL, '', NULL, 'marienilson@aol.com', NULL, NULL, true, NULL, NULL, '', '2009-11-13', '2009-11-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9285, '2009-11-13', 'Rodney', '', '', '', '', '', NULL, '', NULL, 'rgunsell@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2009-11-13', '2009-11-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8345, '2009-06-07', 'Melissa', '', '', '', '', '', NULL, '', NULL, 'mroth5670@comcast.net', NULL, NULL, true, NULL, NULL, '', '2009-06-07', '2009-06-07', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9286, '2009-11-13', 'Fran', '', '', '', '', '', NULL, '', NULL, 'fmg@pcisys.net', NULL, NULL, true, NULL, NULL, '', '2009-11-13', '2009-11-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10076, '2013-09-16', 'Abby', 'Haus', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'marsdena@hotmail.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:23.0) Gecko/20100101 Firefox/23.0', '70.90.138.33', true, 9, 6, NULL, '2014-02-07', '2014-02-09', NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9287, '2009-11-13', 'Mary', '', '', '', '', '', NULL, '', NULL, 'mary_k_wilkinson@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2009-11-13', '2009-11-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9288, '2009-11-13', 'Kirk', '', '', '', '', '', NULL, '', NULL, 'kraetzer1988@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2009-11-13', '2009-11-13', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9313, '2010-01-20', '', '', '', '', '', '', NULL, '', NULL, 'sarah.cox21@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2010-01-20', '2010-01-20', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9335, '2010-04-09', 'Chelsea', 'Luedtke', '9049 Cardinal Drive', 'Millington', 'MI', '48746', NULL, '989-871-9841', NULL, 'luedtke_2307@hotmail.com', 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_2; en-us) AppleWebKit/531.21.8 (KHTML, like Gecko) Version/4.0.4 Safari/531.21.10', '71.238.41.64', true, 4, 6, NULL, '2010-08-05', '2010-08-08', NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9336, '2010-04-12', 'Tina', 'Lindemulder', '6951 West Mount Hope', 'Mulliken', 'MI', '48861', NULL, '517-899-0682', NULL, 'lyletinacodykeli@centurytel.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.4; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)', '174.124.176.146', false, 6, NULL, NULL, NULL, NULL, 'I am writing on behalf of the Lakewood HS Football Pigskin Club.\r
+On Saturday 5/1/2010 we will be hosting our Annual Fundraiser Event and are intersted in obtaining donations for this upcoming event. Please see our event flyer: http://www.lakewood.k12.mi.us/images/athletics/fling.pdf\r
+\r
+\r
+\r
+\r
+\r
+\r
+If you are interested in donating for this event please mail item/items  to:\r
+Lakewood Pigskin Club-Attn:Coach Jim Behrenwald\r
+ 7223 Velte Rd, Lake Odessa, MI 48849\r
+\r
+Thanks for your time and we look forward to hearing back from you!\r
+Tina Lindemulder', ':12:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9339, '2010-04-22', 'joann', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'joann.garrity@ssa.gov', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; IE6SP1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC LM 8; InfoPath.2)', '137.200.0.109', false, 8, NULL, 'i use a walker and am looking for a place to swim for exercise, do you have memberships for the club house, or is that just for the people at the condos, thanks for your time and have a good day', NULL, NULL, 'drive by it on my way home', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9341, '2010-04-24', 'KIRBY', 'HOULE', '106 BETHEL LAKE CT', 'SUDBURY', 'ON', 'P3E 0A1', NULL, '705-673-3981', NULL, 'KWHOULE@FCRCA.COM', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.3; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '216.223.90.122', false, 6, 2, NULL, '2010-07-11', '2010-07-16', NULL, ':11:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9625, '2011-11-29', 'John', 'Bailey', '1927 Rosa parks Blvd.', 'Detroit', 'MI', '48216', NULL, '(313) 962-8834', NULL, 'jbailey@baileytelecomm.com', 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)', '99.18.28.48', true, NULL, NULL, NULL, NULL, NULL, NULL, ':12:23:4:22:24:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9342, '2010-04-28', 'Sherri', 'Bassett', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'ssbassett@ligtel.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729)', '69.160.198.65', true, NULL, NULL, NULL, NULL, NULL, NULL, ':29:17:12:6:11:23:2:4:18:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9343, '2010-04-28', 'amy', 'prieskorn', '5216 dutch road', 'leslie', 'MI', '49251', NULL, '5175893381', NULL, 'apriesko@live.com', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; AT&T CSM8.1; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '71.83.15.104', true, 8, 5, NULL, '2010-06-18', '2010-06-20', NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9344, '2010-05-05', 'Martin Babcoak', 'Martin Babcoak', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'martinbabcock261@gmail.com', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.9) Gecko/20100315 Firefox/3.5.9 GTB7.0 ( .NET CLR 3.5.30729)', '122.163.84.113', true, 8, NULL, NULL, NULL, NULL, 'We are interested to increase traffic to your website, please get back to us in order to discuss the possibility in further detail.', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9353, '2010-05-15', 'Nathan Kyle', 'Nathan Kyle', NULL, NULL, 'IA', NULL, NULL, NULL, NULL, 'nathan.kyle07@gmail.com', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.9) Gecko/20100315 Firefox/3.5.9 GTB7.1', '122.163.117.168', true, 1, NULL, 'We are interested to increase traffic to your website, please get back to us in order to discuss the possibility in further detail.', NULL, NULL, 'We are interested to increase traffic to your website, please get back to us in order to discuss the possibility in further detail.', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9332, '2010-03-31', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'newcomb@michiweb.com', 'Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10.4; en-US; rv:1.9.2.2) Gecko/20100316 Firefox/3.6.2', '76.173.8.190', true, NULL, NULL, NULL, NULL, NULL, NULL, ':15:29:10:17:3:12:6:11:23:25:2:4:20:18:22:16:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9346, '2010-05-06', 'Kelly', 'English', '', '', '', '', NULL, '', NULL, 'r.kenglish71@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2010-05-06', '2010-05-06', '', ':20:', NULL, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9347, '2010-05-06', 'Lisa', '', '', '', '', '', NULL, '', NULL, 'lisarudnick@chartermi.net', NULL, NULL, true, NULL, NULL, '', '2010-05-06', '2010-05-06', '', ':20:', NULL, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9348, '2010-05-09', 'Cecelia', 'Maloney', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'ceceliamaloneycmd@gmail.com', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.9) Gecko/20100315 Firefox/3.5.9 (.NET CLR 3.5.30729)', '122.162.103.169', true, 6, NULL, 'We are interested to increase traffic to your website, please get back to us in order to discuss the possibility in further detail.', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9345, '2010-05-05', 'Russ', 'Bone', '3089 west route 113', 'Kankakee', 'IL', '60901', NULL, '8159397627', NULL, 'runbone@sbcglobal.net', 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)', '12.2.142.12', true, 6, 5, NULL, NULL, NULL, 'WOuld like to have a room with a jucuzzi if possible. Do you have any specials in this time frame?', ':15:29:6:23:22:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9349, '2010-05-12', 'Martin Babcock', 'Martin Babcock', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'martinbabcoak1@gmail.com', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.9) Gecko/20100315 Firefox/3.5.9 GTB7.0 (.NET CLR 3.5.30729)', '122.163.9.39', true, 8, NULL, 'We are interested to increase traffic to your website, please get back to us in order to discuss the possibility in further detail.', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9350, '2010-05-12', 'Denise', 'Saba', '14061 Haverhill Lane', 'Chicago', 'IL', '60567', NULL, '708-364-0152', NULL, 'dsaba@schiffhardin.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '66.28.165.8', true, 8, 5, 'Would like to get pricing and availability', '2010-12-24', '2011-01-01', 'Been in the area before.', ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9351, '2010-05-13', 'Harold', 'Ellis', NULL, 'New York', 'NY', '10001', NULL, NULL, NULL, 'haroldellis022@gmail.com', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.9) Gecko/20100315 Firefox/3.5.9 GTB7.1 (.NET CLR 3.5.30729)', '122.163.130.231', true, 6, NULL, 'We are interested to increase traffic to your website, please get back to us in order to discuss the possibility in further detail.', NULL, NULL, 'We are interested to increase traffic to your website, please get back to us in order to discuss the possibility in further detail.', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9352, '2010-05-14', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'anthonyrencher@yahoo.com', 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; F-6.0SP2-20041109; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC LM 8)', '136.1.1.102', true, NULL, NULL, NULL, NULL, NULL, NULL, ':15:17:12:23:2:18:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4434, '2006-09-25', 'David', 'Premoe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'dppremoe@hotmail.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727)', '68.255.72.233', true, 6, NULL, 'Please e-mail me the details of our reservations from July 23 to July 26.  I have erased our information, so I need to know the building number and room number.  I also need to know the cost information.  Thank you.\r
+\r
+David Premoe', NULL, NULL, NULL, '', NULL, '1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9172, '2009-11-11', 'ero BEachn', 'Hickey', '2425 3rd Pl SW', 'Vero Beach', 'FL', '32962', NULL, NULL, NULL, 'msmarthafl@aol.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; GTB6.4; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; AskTB5.2)', '67.191.118.255', true, NULL, NULL, NULL, '2009-11-11', '2009-11-11', '', ':15:29:17:12:23:22:', NULL, '2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9354, '2010-05-18', 'MIJUNG', 'LEE', '4863 s ridge dr', 'west bloomfield', 'MI', '48323', NULL, '248-295-4410', NULL, 'lmj-mt@hanmail.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; GTB6.4; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)', '71.227.75.77', true, 6, 6, NULL, '2010-05-29', '2010-05-31', NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9356, '2010-05-22', 'Karen', 'Beebe', '10517 Village Ct.', 'Grand Blanc', 'MI', '48439', NULL, '810-606-8056', NULL, 'kagdbeebe@comcast.net', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 GTB7.0 ( .NET CLR 3.5.30729)', '98.209.159.159', true, 6, 6, NULL, '2010-07-12', '2010-07-19', NULL, ':22:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9355, '2010-05-19', 'Jim Guthrie', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'jimguthriess@gmail.com', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.9) Gecko/20100315 Firefox/3.5.9 GTB7.0 (.NET CLR 3.5.30729)', '122.163.130.55', true, 6, NULL, 'We have the ability to quickly promote your site to the top of the search engines. Please let me know if I can send you a proposal to show you how we can achieve these results for you?', NULL, NULL, 'We have the ability to quickly promote your site to the top of the search engines. Please let me know if I can send you a proposal to show you how we can achieve these results for you?', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9357, '2010-05-23', 'John', 'Axelson', '150 Hawthorne Dr', 'Brooklyn', 'MI', '49230', NULL, '517 5928984', NULL, 'jaxelsonmd@gmail.com', 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_8; en-us) AppleWebKit/531.21.8 (KHTML, like Gecko) Version/4.0.4 Safari/531.21.10', '184.8.42.69', true, 9, 2, NULL, '2010-07-07', '2010-07-09', 'We are requesting a two night stay; prefer two queen or king size beds for two couples for two nights.  Thanks.', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9358, '2010-05-25', 'Diane', 'Lonnerstaer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'mommbs@aol.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; GTB0.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618)', '71.65.21.233', true, NULL, NULL, NULL, NULL, NULL, NULL, ':15:12:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9359, '2010-05-26', 'susan', 'siemers', '735 crab thicket', 'st. louis', 'MO', '63131', NULL, '314-965-0439', NULL, 'srsiemers@aepriverops.com', 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; MS-RTC LM 8)', '71.86.129.2', true, 6, NULL, 'Please advise availability', '2010-07-03', NULL, 'Need to accommodated 17 people (12 adults and five kids) in various unit arrangements', ':15:29:3:12:22:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1428, '2004-07-05', 'Robert', 'Frankowski', NULL, NULL, 'MI', NULL, NULL, NULL, NULL, 'rjfrankowski@yahoo.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MDDC)', '68.43.157.137', true, NULL, NULL, NULL, '2004-07-05', '2004-07-05', '', ':29:12:11:2:18:22:', NULL, '2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9360, '2010-05-29', 'Suzan', 'van den Boer', NULL, 'Utrecht, the Netherlands', 'Europe', NULL, NULL, NULL, NULL, 'svdboer@gmail.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; GTB6.5; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; eSobiSubscriber 2.0.4.16)', '83.160.139.232', true, 6, 4, 'Hi, we are looking for a condo for 2 adults and a 21-months old toddler. Is there a childfriendly condo that you would recommend for us? It would be great if we could step outside directly from our room and if there''s a playground nearby.\r
+Thank you!\r
+regards,\r
+Suzan van den Boer', '2010-06-14', '2010-06-18', NULL, ':12:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9361, '2010-05-29', 'david', 'parsons', '3836 tall oaks', 'toledo', 'OH', '43614 5018', NULL, '4193891512', NULL, 'davidalp00@gmail.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; GTB6.4; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618)', '72.240.194.79', true, 1, 5, 'Your quote on your web site is not working.,. looking 4 a good deal!!!', '2010-07-25', '2010-07-30', NULL, ':11:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9362, '2010-05-30', 'Tami', 'Fite', '1340 River Road', 'MArysville', 'MI', '48040', NULL, '248-410-2489', NULL, 'iaminprayer@comcast.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; FunWebProducts; GTB6.5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; msn OptimizedIE8;ENUS)', '76.112.92.119', true, NULL, NULL, NULL, NULL, NULL, NULL, ':29:3:12:6:23:4:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9366, '2010-06-04', 'sue', 'mauter', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'sueone@wowway.com', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3', '69.47.220.17', true, 8, NULL, 'do you have a spa?', NULL, NULL, 'planwithttan', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9364, '2010-06-01', 'Sallyanne', 'Cochran', '8401 Culpeper Drive', 'Indianapolis', 'IN', '46227', NULL, '317-443-5893', NULL, 'SSCochran@dow.com', 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50727)', '216.99.65.10', true, 4, 1, NULL, '2010-06-27', '2010-07-02', 'My brother has a reservation June 28-July 2nd (confirm # 82373). We were hoping to stay near him - please let me know if there is ANY (no matter what size: 2bdrm-5bdrm)availability during that time.', ':15:12:6:23:4:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9365, '2010-06-03', 'Julie', 'Fromm', '1106 Englewood', 'Royal Oak', 'MI', '48073', NULL, '248-589-2928', NULL, 'bullyfromm@gmail.com', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 GTB7.0 (.NET CLR 3.5.30729)', '74.199.54.195', false, 4, NULL, NULL, '2010-06-18', '2010-06-21', 'We have been in contact and have reserved a unit in Building 16. We have decided to stay the Fri/Sat/Sun nights as above. Please contact me with the specifics of our reservation.', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9375, '2010-06-11', 'lisa', 'Bolla', '30111 Cobblestone lane', 'New Hudson', 'MI', '48165', NULL, '313-235-9431', NULL, 'bollal@dteenergy.com', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '63.77.247.10', true, NULL, NULL, NULL, NULL, NULL, NULL, ':12:6:23:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9368, '2010-06-06', 'Gayle', 'Wallace', NULL, NULL, 'MI', NULL, NULL, NULL, NULL, 'hiker208@comcast.net', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '68.60.185.153', true, 4, NULL, 'Fishing in your trout ponds.  May we keep what we catch if we have an all species fishing license?', NULL, NULL, NULL, ':6:20:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9369, '2010-06-06', 'lucynda', 'killian', '3147 burgess', 'beaverton', 'MI', '48612', NULL, '989-4292726', NULL, 'annalou323@att.net', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 (.NET CLR 3.5.30729)', '99.53.158.30', true, 6, NULL, NULL, NULL, NULL, 'We are having a fundraiser for a 9 year old girl who was diagnosed with ovarian cancer May 2010.  I am a scrapbooker along with her mother.  We are seeing if any scrapbooking retreat would be willing to donate a scrapbooking weekend as a auction prize.  This would help with costs the insurance does not cover/gas money/and lost time from work.  \r
+\r
+Thank you for your time.\r
+Lucynda Killian\r
+989-429-2726', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9370, '2010-06-06', 'Todd', 'White', '5577 Kingsmill Drive', 'Bloomfield Hills', 'MI', '48301', NULL, '248 5380899', NULL, 'twhite243115mi@comcast.net', 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_3; en-us) AppleWebKit/531.22.7 (KHTML, like Gecko) Version/4.0.5 Safari/531.22.7', '98.224.247.111', true, 9, NULL, 'Hello!  I am interested in condo #148 from July 3-9.  Can you give me some information on TV locations?  I have 2 kids, and they will be in the 2nd bedroom or loft.  Do either of those rooms have a TV?\r
+\r
+Thanks!\r
+\r
+Todd White', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9371, '2010-06-07', 'Agnieszka', 'Mrugala', '1807 Monroe Ct', 'Glenview', 'IL', '60025', NULL, '7737200893', NULL, 'agnieszka8@comcast.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB5; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '74.0.141.202', true, 6, 4, NULL, '2010-08-08', '2010-08-15', NULL, ':11:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9372, '2010-06-09', 'Mary', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'marykurt@bex.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; SU 3.22; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 3.1; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '72.241.107.222', true, 9, NULL, 'Do guests need to buy a fishing license to fish in your ponds?', NULL, NULL, 'Do guests need a fishing license to fish on your property?', ':6:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6177, '2007-09-28', 'KATHERINE', 'SOCIA', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'ksocia@sbcglobal.net', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3', '75.45.250.18', false, 8, NULL, NULL, NULL, NULL, 'Please cancel reservation number 83457 for Steve Zurbrick.\r
+Thanks', ':24:', NULL, '1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9373, '2010-06-09', 'Rita', 'Thomas', '53548 Shinnecock Dr', 'South Lyon', 'MI', '48178', NULL, '248-982-5922', NULL, 'rita.thomas@comcast.net', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6.5; .NET CLR 1.0.3705; Media Center PC 3.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '68.41.168.109', true, 6, 5, NULL, '2010-07-02', '2010-07-05', NULL, ':11:23:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9374, '2010-06-10', 'Frank', 'Toms', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'frank.toms@us.army.mil', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; Internet Explorer from GPO)', '214.27.58.33', true, 6, 5, 'im currently serving in the us army, and deployed to afghanistan. i will be coming back to michigan for R&R (two week rest) in the first part of november, and was trying to plan a getaway for myself and my wife. i was wondering if you had any packages or deals for that kind of event? thank you for your time.', '2010-11-06', '2010-11-09', NULL, ':4:18:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9367, '2010-06-05', 'Stacy', 'Bertani', '743 Brooks Lane', 'Oxford', 'MI', '48371', NULL, '248-628-4455', NULL, 'fabmommyof2@sbcglobal.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '99.130.33.51', true, 8, NULL, NULL, NULL, NULL, 'Hi Everyone!\r
+\r
+Debby, you have been so helpful to me.  I was wondering if you knew of any other condo owners who would like to sell their condo.  I would really like to be in the wooded areas, I just love the trees!  I am looking for a 2 bed, 2 or 1 bath condo.  \r
+\r
+Thanks so much!!!\r
+\r
+Stacy Bertani\r
+248-628-4455', ':17:12:11:23:2:20:18:22:24:', NULL, ':2:1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9376, '2010-06-12', 'Kathy', 'Rinaldi', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'kag0590@sbcglobal.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; PeoplePal 3.0; yie8)', '68.21.43.48', false, 4, NULL, 'We are planning on making a reservation to spend a few days at Trout Creek and will be arriving on a Sunday.  Is the office open for check-in on Sundays and if not where do we get the key/what is check-in process?  Thanks.', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9377, '2010-06-13', 'Kara', 'Herman', NULL, NULL, 'MI', NULL, NULL, NULL, NULL, 'kkckherman@gmail.com', 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; SH_Token_1.0; .NET CLR 2.0.50727; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '167.73.110.8', false, 6, 6, NULL, '2010-12-17', '2010-12-20', 'looking at availability and pricing.  thanks!', ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9378, '2010-06-13', 'michelle', 'gray', NULL, NULL, NULL, '48439', NULL, NULL, NULL, 'michgray@comcast.net', 'Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3', '69.244.188.235', true, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9379, '2010-06-14', 'Kevin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'showman67@yahoo.com', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; FunWebProducts; GTB6.5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618)', '98.224.210.24', true, 4, NULL, NULL, NULL, NULL, 'Hi,\r
+\r
+I was wondering what the rates would be for Aug.13,14,15th.  I noticed the rates drop on Aug.15th.I am looking into one bedroom,one bath. Is there a way you can let me know how much each night would be and a total?Lastly, is it possible to get discounted back to school rates for all three night? Thanks.\r
+\r
+Kevin', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9380, '2010-06-16', 'Angela', 'Ettawageshik', NULL, NULL, 'MN', NULL, NULL, NULL, NULL, 'Angela_Ettawageshik@cargill.com', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.9) Gecko/20100315 Firefox/3.5.9', '167.136.242.30', true, 2, 5, NULL, '2010-08-11', '2010-08-16', NULL, ':15:12:23:22:16:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9381, '2010-06-17', 'Kevin', 'Riddle', '3714 Kensington Drive', 'Royal Oak', 'MI', '48073', NULL, NULL, NULL, 'kriddle8593@wowway.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; GTB0.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; eSobiSubscriber 2.0.4.16)', '69.14.165.22', true, 8, NULL, 'I am team manager for the Birmingham United team.  Wondering about availability of 10 condos for the weekend of Sept. 10-12.  Cost?  Availability of pool and amenities?  Thanks.', '2010-09-10', '2010-09-12', NULL, ':14:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9382, '2010-06-17', 'jake', 'chamberlain', '207 Main street', 'butler', 'OH', '44822', NULL, NULL, NULL, 'nanno2024@hotmail.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '151.213.94.96', true, 6, NULL, 'How much is the cost? I have chosen four different packages. I just need some information on these.', '2010-07-22', '2010-07-25', NULL, ':3:11:23:4:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9383, '2010-06-20', 'demaris', 'edmond', '7230 w congress', 'Milwaukee', 'WI', '53218', NULL, NULL, NULL, 'dedmond22@att.net', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 GTB7.0 (.NET CLR 3.5.30729)', '75.9.188.49', true, NULL, NULL, NULL, NULL, NULL, NULL, ':10:23:4:18:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9384, '2010-06-21', 'mona', 'rash', 'p.o.box 1446', 'mauriceville', 'TX', '77626', NULL, NULL, NULL, 'rashmona@yahoo.com', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '68.28.169.230', true, 6, 4, NULL, '2010-08-21', '2010-08-28', 'Do you allow pets?  Will be\r
+willing to pay $200 for them to stay on patio,#70. All kennel trained,small dogs.  3 adults only. Will be our 60th birthday.', ':12:6:23:22:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9385, '2010-06-23', 'Paula', 'Johnson', '5572 Silverleaf Court', 'Haslett', 'MI', '48840', NULL, '517-230-2496', NULL, 'pjohnson@fosterswift.com', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC LM 8)', '64.141.145.66', true, 9, 6, 'Would be interested in 3 nights or two nights.  We may have an addition 4 children agest 10-16 who would be willing to sleep on the floor, is that an option?', '2010-07-22', '2010-07-25', NULL, ':3:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9389, '2010-06-26', 'Mike', 'Bird', '4321 N Ashland', 'Chicago', 'IL', '60613', NULL, '312 671-2311', NULL, 'mbird68835@aol.com', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '24.148.51.80', true, 2, 6, NULL, '2010-07-28', '2010-08-02', NULL, ':29:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9386, '2010-06-23', 'Kenneth', 'Soronen', '35546 Springvale St.', 'Farmington Hills', 'MI', '48331', NULL, '248 6610607', NULL, 'ksoronen@yahoo.com', 'Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_4_11; en) AppleWebKit/533.16 (KHTML, like Gecko) Version/4.1 Safari/533.16', '99.130.33.108', true, 4, 5, 'We will be staying two nights, golfing on the 28th, we would play after 2:30 PM. A nice course with a low rate.  Thank you.\r
+Ken', '2010-06-26', '2010-06-28', NULL, ':11:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9387, '2010-06-23', 'Ryan', 'Hallberg', '2168 Forest Hills', 'Muskegon', 'MI', '49441', NULL, NULL, NULL, 'ryanhallberg@comcast.net', 'Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_4_11; en) AppleWebKit/530.19.2 (KHTML, like Gecko) Version/4.0.2 Safari/530.19', '68.60.58.43', true, NULL, NULL, NULL, NULL, NULL, NULL, ':12:2:4:14:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9388, '2010-06-24', 'Liz', 'Metro', '781 Beech Court', 'Plymouth', 'MI', '48170', NULL, '7347273142', NULL, 'lizmetro127@sbcglobal.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0)', '76.226.57.60', false, 6, 3, NULL, '2010-07-15', '2010-07-18', NULL, ':15:12:16:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9421, '2010-09-13', 'Debbie', 'Ulmer', '29800 E. Lafayette', 'Sturgis', 'MI', '49091', NULL, '269-651-5544', NULL, 'dulmer@verizon.net', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.8) Gecko/20100722 Firefox/3.6.8 ( .NET CLR 3.5.30729; .NET4.0C)', '66.227.224.218', true, 6, 6, 'We are planning a motorcycle color tour this weekend and have 4-5 couples coming.  Not sure if you rent for just a couple days, but thought I would check on availability and pricing', '2010-10-01', NULL, NULL, ':17:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9391, '2010-06-27', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'lynnreesjones@yahoo.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET4.0C)', '71.55.89.62', true, NULL, NULL, NULL, NULL, NULL, NULL, ':15:29:12:23:22:16:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9392, '2010-06-30', 'Carol', 'Hunter', '60417 Strobel Road', 'Centreville', 'MI', '49032', NULL, '269-467-6241', NULL, 'carolhunter2@verizon.net', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; MS-RTC LM 8)', '140.239.148.66', true, 6, 2, 'I am trying to plan a family reunion for 2013.  Our group is anywhere from 125-150 people.  I would like to try and get a good group rate if you accomodate this large of a group.', '2013-08-16', '2013-08-18', NULL, ':15:29:17:3:6:11:16:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9393, '2010-07-02', 'Brian', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'schad@live.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB6.5; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 3.0.30618; Media Center PC 5.0; SLCC1; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)', '75.232.239.119', false, 9, NULL, NULL, NULL, NULL, 'Your link to make a reservation is not working. Do you still take 3 night weekend reservations?', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9394, '2010-07-05', 'Ilissa', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'ilissa@lnf.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB6.5; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; OfficeLiveConnector.1.5; OfficeLivePatch.1.3)', '96.255.148.74', true, 6, NULL, 'Hello,\r
+We usually head to The Homestead, but instead would like a change.  Quick initial question: do you allow 4 legged family members(canine type)?\r
+\r
+Thanks!', NULL, NULL, NULL, ':12:23:22:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9581, '2011-08-23', 'Brian', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'briansiu9791@gmail.com', 'Mozilla/5.0 (Windows NT 6.1; rv:5.0) Gecko/20100101 Firefox/5.0', '68.42.66.112', false, 9, 1, 'we have several families going and need at least 3 two-bed condos.  please let me know anything available.  Thanks.', '2011-09-03', '2011-09-05', NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9395, '2010-07-07', 'Anna', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'ampark629@yahoo.com', 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; MS-RTC LM 8)', '198.80.248.100', false, 6, NULL, 'We have a group of 24 adults and 13 kids; looking to accomodate the group with various cabins - probably 6 2-bedrooms and 1 5-bedrooms June 18-25 2011 (7 nights).  Do you provide any group rates and could you give me a quote on this?', NULL, NULL, NULL, ':12:22:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9584, '2011-08-28', 'Stella', 'Havlik', '37312 Freedom Ave.', 'N. Ridgeville', 'OH', '44039', NULL, '440-5528731', NULL, 'SPietka@aol.com', 'Mozilla/4.0 (compatible; MSIE 7.0; AOL 9.5; AOLBuild 4337.5400; Windows NT 5.1; Trident/4.0)', '205.188.116.144', true, NULL, NULL, NULL, NULL, NULL, NULL, ':10:17:3:12:6:11:23:4:20:18:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9396, '2010-07-07', 'molly', 'schichtel', '5572 S. Betsie River Rd.', 'Interlochen', 'MI', '49643', NULL, '231-275-3038', NULL, 'mollyschichtel@charter.net', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; GTB6.5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)', '96.42.153.101', false, 6, NULL, 'Is there space av. and details like food offered on Sat night', NULL, NULL, NULL, ':20:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9397, '2010-07-09', 'Linnae', 'Elmore', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'linnae.elmore@gmail.com', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.10) Gecko/20100504 Firefox/3.5.10 ( .NET CLR 3.5.30729)', '71.67.187.214', true, NULL, NULL, 'Feel free to include anything honeymoon related.', NULL, NULL, NULL, ':23:4:18:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9398, '2010-07-11', 'Ginny', 'Grubbs', '3280 Boyes Rd.', 'Delton', 'MI', '49046', NULL, '269-671-5825', NULL, 'jmngny@tds.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )', '75.100.149.44', true, 6, NULL, 'We are wanting to have a family reunion here.  Where in the range of the low-high cost of each room would it approximately be in July.  Do you have a large commons room where we could get together and do you have facilities for our fixing our own meals?  This would be a group 50-60.  Thanks, Ginny', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9399, '2010-07-11', 'cindy', 'dumke', 'w152 n6881 westwood dr', 'menomonee falls', 'WI', '53051', NULL, '2622511413', NULL, 'cindy1484@sbcglobal.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; YPC 3.2.0; FunWebProducts; GTB6.5; (R1 1.3); .NET CLR 1.1.4322; yie8)', '75.9.121.249', true, 6, 6, NULL, '2011-06-22', '2011-06-25', 'I am not sure of the dates, but I am planning a family reunion and I did not see prices on the website? there would be around 60 people.', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9400, '2010-07-12', 'Gary', 'Ogden', '2829 riverside drive', 'trenton', 'MI', '48183', NULL, '734-671-9940', NULL, 'gogden@homespunfurniture.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.5; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '70.88.99.74', true, 1, NULL, 'note above request', NULL, NULL, 'Big Fore quote\r
+dates: Sept. 17,18,19\r
+Players 26\r
+Lodging and meals (if meals available)\r
+Arrive the 17 around 12:30 to play 18 holes\r
+Sept. 18th play 36 holes with tee times allowing 36 holes\r
+Play 18 holes Sept.19 early\r
+Do you have a substitute course for Dunmaglas and Bear lake? Could even be a replay of one of the others.\r
+Contact me via email. Thanks', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9524, '2011-05-10', 'Perry Gates', 'Perry Gates', 'Delta', 'Canton', 'CO', '81416', NULL, NULL, NULL, 'philgarcia01@gmail.com', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.19) Gecko/20110420 Firefox/3.5.19 GTB7.1', '122.173.163.13', true, 8, NULL, 'We are Internet Marketing experts who can help you answer these questions, drive mass traffic to your site, and dramatically increase sales.', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9401, '2010-07-12', 'JeanAnn', 'Davidson', '208 Carney Dr', 'Dundee', 'MI', '48131-9538', NULL, NULL, NULL, 'jeanann@umich.edu', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4', '173.149.114.224', true, NULL, NULL, NULL, NULL, NULL, NULL, ':10:17:4:14:18:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5558, '2007-03-28', 'joe', 'belanger', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'jbelanger@aimconstruction.com', 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_8; en-us) AppleWebKit/533.16 (KHTML, like Gecko) Version/5.0 Safari/533.16', '75.232.17.113', false, 9, NULL, NULL, NULL, NULL, 'are you pet freindly... i want to bring my dog ...medium in size 40lbs', '', NULL, '1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9402, '2010-07-14', 'Gail', 'Lesinski', '15028 W. 150th Lane', 'Crown Point', 'IN', '46307', NULL, '219-696-6191', NULL, 'foxydog2@att.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; FunWebProducts; GTB6; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '99.147.195.195', true, NULL, NULL, NULL, NULL, NULL, NULL, ':10:17:23:18:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9403, '2010-07-15', 'Jamie', 'Mulvenna', NULL, NULL, 'MI', NULL, NULL, NULL, NULL, 'jmulvenna10@comcast.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; FunWebProducts; GTB6.5; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; AskTB5.2)', '76.112.187.235', true, 6, NULL, NULL, NULL, NULL, 'I am just starting a search for 2014 family reunion for 80-100 people.  It would be for three nights.\r
+If you could send me some info. on lodging and activites for adults and children that would be great.  Thank you.', ':29:3:6:22:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9404, '2010-07-18', 'Lisa', 'Steffke', '1850 Boxford St.', 'Trenton', 'MI', '48183', NULL, '734-362-0588', NULL, 'karlisa@wowway.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C)', '69.47.197.131', true, NULL, NULL, NULL, NULL, NULL, NULL, ':15:17:12:6:23:20:18:22:16:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9405, '2010-07-19', 'Stacy', 'Bos', NULL, 'Chicago', 'IL', NULL, NULL, NULL, NULL, 'stacermsu@yahoo.com', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.6) Gecko/20100625 Firefox/3.6.6 (.NET CLR 3.5.30729)', '66.251.255.161', false, 6, 6, 'I''m in the beginning stages of planning a 40th b-day surprise weekend for my husband.  Would be interested in the 5 bedroom condo for sometime end of June 2011 to mid July 2011.  Would like to get some idea of pricing.', '2011-07-14', '2011-07-17', NULL, ':29:11:23:22:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9406, '2010-07-19', 'Randy', 'Fahrer', '7720 Stone Hill Ct.', 'Maumee', 'OH', '43537', NULL, '419-867-7720', NULL, 'rmfahrer@yahoo.com', 'Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2.4) Gecko/20100611 YFF35 Firefox/3.6.4', '72.241.97.104', true, NULL, NULL, NULL, NULL, NULL, NULL, ':29:17:12:6:23:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9407, '2010-07-20', 'Sharon', 'Mosteller', '1781 Hubbard Rd./', 'Monroe', 'MI', '48161', NULL, '734 269 9993', NULL, 'sharons@umich.edu', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MCIT1.0; MCIT1.0)', '141.214.17.4', true, 8, 3, NULL, '2010-09-03', '2010-09-06', 'Bulletin Board in Monroe, MI indicating if you bring a guest they would get 50% off the rental.  Is tht correct? Is condo #32 available?', ':15:29:17:23:16:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6368, '2007-11-20', 'John R', 'Welke', '28920 Edward', 'Roseville', 'MI', '48066', NULL, '586 774-7670', NULL, 'dwelke@wowway.com', 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_8; en-us) AppleWebKit/533.16 (KHTML, like Gecko) Version/5.0 Safari/533.16', '67.149.162.106', true, NULL, NULL, NULL, '2007-11-20', '2007-11-20', '', ':10:17:23:4:18:', NULL, '2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9562, '2011-07-17', 'David', 'Cooper', '489 Sorrento', 'Poinciana', 'FL', '34759', NULL, NULL, NULL, 'solivitacoopers@cfl.rr.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '70.119.153.162', true, 8, NULL, NULL, NULL, NULL, 'We would like to rent a unit for June, July and August of next year.  If we like it we would commit to a 3-month rental on a yearly basis.  Is that possible?  How much?\r
+\r
+We are former owners.  Liz will remember us.', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9411, '2010-08-13', 'Aaron & Susan', 'Peterson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'susiemarie9@gmail.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MDDC; InfoPath.2; .NET4.0C)', '74.97.229.245', true, NULL, NULL, NULL, NULL, NULL, NULL, ':2:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9414, '2010-08-29', 'lisa bostedo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'lotus15@embarqmail.com', 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)', '71.48.102.85', true, 8, NULL, 'Hi,\r
+I would like to know if tans unit #93 has 1 or 2 bath and also how many pools are on the property??? Also can fishing be done at anytime?\r
+thanks, Lisa', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9408, '2010-07-30', 'Michelle', 'Meek', '4020 Cohoctah Rd.', 'Linden', 'MI', '48451', NULL, '8106913629', NULL, 'meekm@huronvalley.k12.mi.us', 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)', '216.11.79.25', false, 9, 2, NULL, '2010-08-05', '2010-08-08', 'I was wondering if you would be able to help us out.  My husband, Chuck Meek is the coach to the Michigan Outlaws team we have stayed with you for the past couple years when we have been to the Petoskey softball tournament.  He had a stroke on July 7th and this is our last tournament of the year and probably the last time he will be coaching for a long time.  We have both our daughters and two friends coming along.  We need accommodations badly.  I would have made reservations sooner but because of the circumstances I wasnt sure we would even be able to come up there.  Is there anything up there for this weekend. Thanks, Michelle Meek - Michigan Outlaws 18u Black', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9409, '2010-08-06', 'jocelin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'kozclassic@comcast.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; FBSMTWB; GTB6.5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '70.88.91.110', false, 8, NULL, NULL, NULL, NULL, 'On September 18, 2010, we will be hosting the 4th Annual Bob Kozminski Memorial Classic at Gracewil Country Club in Walker. Last year was a huge success. Once again, we need to call on the support of local businesses to make this year’s event just has successful. There are several different ways you can help support this cause. We have several sponsorships available, as well as the need for several raffle items. I ask that you please take a moment to review the attached scholarship information and sponsorship opportunities. If I can be of further assistance, please feel free to contact me.\r
\r
+Thanks,\r
\r
\r
+Jocelin Kozminski\r
+Bob Kozminski Memorial Classic\r
+kozclassic@comcast.net\r
+www.kozclassic.org\r
+3860 Sydney Court NW\r
+Grand Rapids, MI 49534\r
+(616) 570-7167', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9412, '2010-08-20', 'Paula', 'Tucker', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'patricknortoni2@gmail.com', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.11) Gecko/20100701 Firefox/3.5.11 GTB7.1 ( .NET CLR 3.5.30729)', '122.161.4.183', true, 8, NULL, 'We are a leading India based SEO company providing the best search engine optimization services. We act as your business partner and helps you reach your business goals. We promote websites no matter who you are - a huge company with thousands of employees, a small business or a professional who offers professional / consulting services. Let us know if you are interested and we will get back to you with more details.', NULL, NULL, 'We are a leading India based SEO company providing the best search engine optimization services. We act as your business partner and helps you reach your business goals. We promote websites no matter who you are - a huge company with thousands of employees, a small business or a professional who offers professional / consulting services. Let us know if you are interested and we will get back to you with more details.', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9413, '2010-08-24', 'Patreze', 'Willingham', '22617 shadowpine way', 'novi', 'MI', '48375', NULL, '3134091305', NULL, 'patreze.willingham@federalmogul.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB6.5; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Tablet PC 2.0)', '192.55.140.2', false, 6, 6, 'We would also like to visit the casino along with skiing. Any lounges nearby?', '2011-02-11', '2011-02-13', 'I have a group that wants to visit your resort and we like the Condo #2. Can you give me a good price to rent that for the weekend specified above? Thank you', ':12:23:2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8235, '2009-06-04', 'Jennifer', 'Richardson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'jennyrich625@aol.com', 'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.0; AOLBuild 4327.5006; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0)', '64.12.117.14', true, 9, NULL, NULL, '2011-06-17', '2011-06-20', 'We usually play in the soccer tournament Fathers Day Weekend and would like unit #20 in building #3 if it is available.  I was wondering if you knew if it was available or not for next summer.  If so can you let me know so I can put a deposit down.', '', NULL, '1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9415, '2010-09-02', 'stephen', 'sobieski', '40892 knightsford', 'northville', 'MI', '48168', NULL, '7344208057', NULL, 'stfsobi@aol.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; FunWebProducts; GTB6.5; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Media Center PC 5.0; MS-RTC EA 2; SLCC1)', '68.42.92.72', true, NULL, NULL, NULL, NULL, NULL, NULL, ':10:11:18:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9416, '2010-09-02', 'Penney', 'Castellano', NULL, NULL, 'MI', NULL, NULL, '517 203-8650', NULL, 'theskysthelimit42@yahoo.com', 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_4; en-us) AppleWebKit/533.17.8 (KHTML, like Gecko) Version/5.0.1 Safari/533.17.8', '24.231.228.65', true, 6, 5, 'this is for today (assuming you are reading this on Friday, Sept 3rd....please advise asap...i will call also..thanks', '2010-09-03', '2010-09-05', NULL, ':23:4:22:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9417, '2010-09-04', 'Kathy', 'Mazany', '121 Ashworth', 'Horton', 'MI', '49246', NULL, NULL, NULL, 'kmazany@yahoo.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)', '208.53.107.89', true, NULL, NULL, NULL, NULL, NULL, NULL, ':10:18:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9215, '2009-11-11', 'Steve', 'Alliston', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'salliston@aol.com', 'Mozilla/4.0 (compatible; MSIE 7.0; AOL 9.0; Windows NT 6.0; GTB6.5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 1.1.4322; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET4.0C)', '205.188.117.14', false, 9, NULL, 'I am the President of the LOBOS Soccer Club. Can you please send me a list of what families are staying in which condo''s next weekend? It really helps the teams trying to get in touch with each other. \r
+\r
+Steve', NULL, NULL, NULL, '', NULL, '1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9418, '2010-09-05', 'Tracy', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'tops4less@yahoo.com', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 2.0.50727)', '98.206.69.188', true, NULL, NULL, NULL, NULL, NULL, NULL, ':15:17:2:20:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9419, '2010-09-06', 'Tim', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'TimGolobic@aol.com', 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-US; rv:1.9.2.8) Gecko/20100722 Firefox/3.6.8', '76.192.56.103', false, 4, 6, NULL, '2011-02-23', '2011-02-27', 'Interested in pricing on either of the 5 BR units arriving Feb 23 departing Feb 27 (4 nights)', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9410, '2010-08-12', 'Robert', 'Peruzzi', '90 N. Edgewood', 'Grosse Pointe Shores', 'MI', '48236', NULL, '586-381-0572', NULL, 'rperuzzi@ford.com', 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; F-6.0SP2-20041109; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 1.1.4322)', '68.40.29.75', true, NULL, NULL, NULL, NULL, NULL, NULL, ':12:23:25:4:18:22:16:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9435, '2010-10-28', 'Marie', 'Allard', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'marieallard@att.net', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; .NET CLR 2.0.50727; MS-RTC LM 8)', '72.37.171.140', true, 9, NULL, NULL, NULL, NULL, 'Your website reservations is working at snails pace. It takes forever to load, both at home and at work. \r
+Please investigate and correct.', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9466, '2010-12-29', 'kelly', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'klmaz3@aol.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)', '99.157.227.231', false, 8, NULL, 'are small dogs allowed', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9422, '2010-09-15', 'Norma', 'Steinhilb', '32082 Liparoto Drive', 'Rockwood', 'MI', '48173', NULL, '734 379-0980', NULL, 'msteinhilb@comcast.net', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2)', '68.250.1.18', true, NULL, NULL, 'Had the best time ever last week in condo 82!  You guys are the best!\r
+Thanks', NULL, NULL, NULL, ':11:4:18:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9423, '2010-09-23', 'Tom', 'Keuten', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'tkeuten@hotmail.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MDDC; MS-RTC LM 8; InfoPath.2; .NET4.0C)', '75.39.17.2', true, NULL, NULL, NULL, NULL, NULL, NULL, ':12:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9424, '2010-09-26', 'Becky', 'McKeoun', '711 Sidney St', 'Bay City', 'MI', '48706', NULL, NULL, NULL, 'Beckyka1975@yahoo.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET4.0C; OfficeLiveConnector.1.5; OfficeLivePatch.1.3; yie8; AskTB5.6)', '24.236.174.106', true, NULL, NULL, NULL, NULL, NULL, NULL, ':17:3:12:11:23:4:20:18:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8167, '2009-06-04', 'Diane', 'Snellgrove', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'dsnellgrov@aol.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; FunWebProducts-MyWay; .NET CLR 1.1.4322; AskTbBCPA/5.8.0.12304)', '209.255.57.20', true, 9, NULL, NULL, NULL, NULL, 'Is it possible to stay for 3 days during the holidays, specifically, 12-29,30 and 31, leaving Sunday, 1-1-11?  2 bedrooms, 2 baths?\r
+and if so what would the cost be?', '', NULL, '1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9425, '2010-09-29', 'Matt', 'Vandlen', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'matt.vandlen@pfizer.com', 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1; UserABC123)', '148.168.40.4', true, 1, NULL, 'I spoke with Nicki this morning about a spring trip and wanted to ensure our communication on my contact information was clearly articulated.  People have difficulty with my last name for some reason.  Thanks...MV', NULL, NULL, NULL, ':11:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9426, '2010-10-04', 'Julie', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'jd1229@hotmail.com', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; OfficeLiveConnector.1.4; OfficeLivePatch.1.3)', '164.76.116.26', true, NULL, NULL, NULL, NULL, NULL, NULL, ':15:10:17:3:12:11:23:4:20:18:22:24:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9427, '2010-10-04', 'Steve', 'Freeman', '320 Oakpark Drive', 'Tecumesh', 'ON', 'N8N 4N9', NULL, '519-8198457', NULL, 'sfreeman@frontiercollege.ca', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB6.5; SLCC1; .NET CLR 2.0.50727; MDDR; .NET CLR 3.5.30729; InfoPath.2; MS-RTC LM 8; .NET CLR 3.0.30729)', '209.195.110.25', false, 4, NULL, NULL, '2010-12-26', '2011-01-01', 'I am looking for total cost including cleaning of a unit that would sleep 10 adults who will be skiing at Nubs Nob and Boyne Highlands for the dates listed above', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9428, '2010-10-07', 'Cara', 'Porter', '2600 N. Jebavy Dr.', 'Ludington', 'MI', '49431', NULL, '2318436030', NULL, 'caramporter@hotmail.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; Media Center PC 3.0; .NET CLR 1.0.3705; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '97.83.107.137', false, 6, NULL, 'Hi! I am writing to you on behalf of Covenant Christian School, a private Christian school in Ludington, Michigan.  \r
+\r
+Every year, to keep our tuition costs as low as possible, we have the Annual Autumn Auction, our biggest fundraising event of the year with almost 300 people attending.This year our auction will be held October 29th, 2010.\r
+\r
+What we do for this event is contact local, state, and nation-wide businesses that we know our families do or would enjoy doing business with and ask them to make a donation for the auction.  It can be to your discretion what you donate &it is tax-deductible.  Anything you can donate is greatly appreciated.  We hope that you will also become a part of our auction this year.  Please let me know if you are interested in becoming a part of our tradition.  I look forward to hearing from you!  Thank you so much and God bless you.', NULL, NULL, NULL, ':15:29:10:17:12:6:11:23:25:2:4:18:22:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9429, '2010-10-15', 'Robert', 'Mariotti', '12815 Birkenstock st', 'Carmel', 'IN', '46032', NULL, '(916) 871-2936', NULL, 'uh60bh@hotmail.com', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30729)', '66.121.73.254', true, 7, 4, NULL, '2010-12-26', '2010-12-30', NULL, ':12:2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5760, '2007-07-09', 'Kim', 'Rule', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'krule@core.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '64.141.137.181', false, 6, NULL, 'Do you have any long term condo''s available to rent from Nov 1 until May or June 2011\r
+\r
+2 bed 1 or 2 bath', NULL, NULL, NULL, ':20:', NULL, '1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9430, '2010-10-18', 'Martha', 'Millar', '25400 N. St Marys Road', 'Mettawa', 'IL', '60048', NULL, '847-367-8633', NULL, 'Keokuk94@yahoo.com', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; MS-RTC LM 8)', '76.245.200.184', true, 8, 6, 'There are approx 50 of us - we''d need roughly 25 bedrooms. We could also come the first week of August. Interested in competitive pricing', '2011-07-23', '2011-07-30', 'Friends', ':3:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9431, '2010-10-20', 'Ryan', 'Mynsberge', '3325 Shorewood Ave', 'Fort Gratiot', 'MI', '48059', NULL, '810-385-5055', NULL, 'rmyns@hotmail.com', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '12.47.83.10', true, 9, 1, NULL, '2010-12-20', '2010-12-23', NULL, ':12:25:2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9432, '2010-10-20', 'Mike', 'Diegel', '', '', '', '', NULL, '', NULL, 'michaeldiegel@comcast.net', NULL, NULL, true, NULL, NULL, '', '2010-10-20', '2010-10-20', '', ':11:18:22:', NULL, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9433, '2010-10-20', 'Ronda', 'Diegel', '', '', '', '', NULL, '', NULL, 'drrondadiegel@comcast.net', NULL, NULL, true, NULL, NULL, '', '2010-10-20', '2010-10-20', '', ':11:23:', NULL, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9420, '2010-09-11', 'Brett', 'Babb', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'backyjack11@gmail.com', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.14) Gecko/20101001 Firefox/3.5.14 GTB7.1 (.NET CLR 3.5.30729)', '122.180.150.18', true, 8, NULL, 'Do you wish you could increase your online leads?  We have helped a lot of businesses thrive in this market and we can help you!  Simply hit reply and I’ll share with you the cost and the benefits.', NULL, NULL, 'Do you wish you could increase your online leads?  We have helped a lot of businesses thrive in this market and we can help you!  Simply hit reply and I’ll share with you the cost and the benefits.', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9434, '2010-10-24', 'Lloyd', 'Schmaltz', NULL, NULL, 'MI', '48348', NULL, NULL, NULL, 'Lloyd@flotronicsinc.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.5; .NET CLR 1.1.4322)', '70.88.94.70', true, 9, NULL, 'Do you have a pool --we are planning on a winter vacation --skiing--but kids like a pool- -we have stayed  at Trout Creek before but forget about the pool - -do you show a picture somewhere --states  -- indoor/outdoor', NULL, NULL, NULL, ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4242, '2006-09-18', 'Bridget', 'Mahrle', '3011 Thomas', 'Berkley', 'MI', '48072', NULL, '248-388-2976', NULL, 'bridget@wekeepitclean.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.55.3 (KHTML, like Gecko) Version/5.1.5 Safari/534.55.3', '71.238.24.76', true, 9, NULL, 'Hello Trout Creek!!!\r
+I''m curious if any of the 3 bedroom lofts are offering any specials the week of Aug-5-11.', '2012-08-05', '2012-08-11', NULL, '', NULL, '1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9436, '2010-10-31', 'john', 'miedema', '8441 meadowbrook', 'jenison', 'MI', '49428', NULL, '6164376686', NULL, 'jbeans388@gmail.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; .NET CLR 1.1.4322; .NET4.0C; .NET4.0E)', '68.28.138.230', true, NULL, NULL, NULL, NULL, NULL, NULL, ':17:11:23:18:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9437, '2010-11-02', 'kirsten', 'shorr', '4534 timberlake tr', 'highland', 'MI', '48357', NULL, '248-889-3566', NULL, 'chzzshrr@aol.com', 'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.1; AOLBuild 4334.5012; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '64.12.117.74', true, 6, NULL, NULL, '2010-12-30', '2011-01-02', NULL, ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9438, '2010-11-03', 'Marsha', 'Manley', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'martinbabcock000@gmail.com', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.15) Gecko/20101026 Firefox/3.5.15', '122.163.239.78', true, 6, NULL, 'We will optimize your site to increase its rankings with major search engines. This will drive targeted online users to your site, as well as attract new users through the use of relevant keywords and phrases. Not only will we help you gain those higher rankings, but maintain your status through continual management and support. Please reply to this email so we can send you more details.', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9439, '2010-11-04', 'Susan', 'Davis', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'chzbrgr1@hotmail.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB6.6; SLCC1; .NET CLR 2.0.50727; eSobiSubscriber 2.0.4.16; .NET CLR 1.1.4322; .NET CLR 3.5.30729; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET CLR 3.0.30729)', '151.213.90.146', true, 6, NULL, 'Do you allow dogs?\r
+Thank you', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10090, '2013-10-11', 'Kelly', 'Hemmelgarn', '3028 Stelzer Rd.', 'Celina', 'OH', '45822', NULL, '419-925-4259', NULL, 'kellyhem@woh.rr.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.59.10 (KHTML, like Gecko) Version/5.1.9 Safari/534.59.10', '98.30.134.50', true, 6, 6, 'We are trying to visit Michigan for a vacation. This is for 2 families, total number of 11. Would like to know availability and cost of week for Condo#2  5-bedroom 3 bath. \r
+Thank you!', NULL, '2014-07-26', NULL, ':15:12:6:23:22:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9441, '2010-11-13', 'Annette', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'duenorth@tds.net', 'Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12 ( .NET CLR 3.5.30729; .NET4.0C)', '96.60.33.113', true, 4, NULL, 'When is your next scrapbooking weekend?', NULL, NULL, NULL, ':20:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9442, '2010-11-14', 'Stacey', 'Dobbin', '4253 Oil Springs Line', 'Oil Springs', 'ON', 'N0N1P0', NULL, '5198342802', NULL, 'dobbinsm@ciaccess.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; GTB6.5; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MDDC; .NET CLR 1.1.4322; OfficeLiveConnector.1.5; OfficeLivePatch.1.3)', '209.90.157.51', true, NULL, NULL, NULL, NULL, NULL, NULL, ':12:2:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9446, '2010-11-26', 'wendy', 'nicholls', '2331 Parliament Dr.', 'Sterling Heights', 'MI', '28310', NULL, '586-246-6282', NULL, 'wlnicholls@yahoo.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; yie8)', '96.27.35.170', true, 6, 1, 'Do you have any availability during the time requested.  We may have up to eight so I''m interested in both the two and three bedroom condo.', '2010-12-25', '2010-12-28', NULL, ':12:2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9443, '2010-11-14', 'Kelly', 'Risner', NULL, NULL, 'OH', NULL, NULL, NULL, NULL, 'davidakelly@earthlink.net', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB6.6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET4.0C)', '71.67.129.242', true, NULL, NULL, 'looking at spring break and July 4th week. also want to klnow which rooms are available thru TAN plan', NULL, NULL, NULL, ':12:18:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9444, '2010-11-15', 'Scott', 'Jongekrijg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'sjonge04@hotmail.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2)', '12.97.246.3', true, 6, NULL, 'I am inquiring about a 2 bedroom 2 bath or a three bedroom 2 bath condo.  We would be checking in feb. 5th for 1 night.  We will be watching the superbowl so I would like a unit with a upgraded tv HDTV if possible?  What would the rates be for a 2 bedroom or a 3 bedroom?  I am flexible on how many bathroom would prefer at least 2.  We do not need a ski package just the lodging.', NULL, NULL, NULL, ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9445, '2010-11-15', 'Nicole', 'Nesseth', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'nnesseth23@yahoo.com', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB0.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET4.0C)', '98.250.105.64', false, 4, 6, 'Hello,\r
+We''re looking for a condo close to Nubs Nob that sleeps 12 or more. Please contact me if your available for the above dates.', '2010-12-30', '2011-01-02', NULL, ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9914, '2013-03-02', 'mark', 'johnson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'markedman58@yahoo.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.4; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C)', '67.202.19.66', true, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, ':3:', '8', NULL, NULL, NULL, '8', 'morning', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9447, '2010-11-26', 'Chris', 'Dobies', '30522 Georgetown Drive', 'Beverly Hills', 'MI', '48025', NULL, NULL, NULL, 'cdobies01@me.com', 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_5; en-us) AppleWebKit/533.19.4 (KHTML, like Gecko) Version/5.0.3 Safari/533.19.4', '69.136.155.27', true, NULL, NULL, NULL, NULL, NULL, NULL, ':12:11:2:18:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9448, '2010-11-28', 'Rick', 'Monhollen', '4295 W.Woodbridge Ln.', 'New Palestine', 'IN', '46163', NULL, '317-861-0860', NULL, 'mmtci@prodigy.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET4.0C)', '68.78.6.83', true, 2, 4, NULL, '2010-12-18', '2010-12-24', NULL, ':25:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9449, '2010-11-29', 'Caroline', 'Hall', '4232 Quaker Hill', 'Fort Gratiot', 'MI', '48059', NULL, '810-357-9820', NULL, 'carehall@umich.edu', 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_4; en-us) AppleWebKit/533.17.8 (KHTML, like Gecko) Version/5.0.1 Safari/533.17.8', '67.194.147.155', true, 4, 1, NULL, '2010-12-30', '2011-01-02', NULL, ':3:25:2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9450, '2010-11-30', 'keith', 'hatcher', '27261 Winslow', NULL, 'MI', NULL, NULL, NULL, NULL, 'ike1906@gmail.com', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC LM 8)', '204.78.172.20', true, 9, NULL, 'I am visiting Trout Creek with friend dec. 9th. I would like to know proces of winter activities and also proce of needed snow gear or clothing?', '2010-11-30', '2010-12-03', NULL, ':25:2:4:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9451, '2010-12-05', 'Don', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'donald.smith10@comcast.net', 'BlackBerry9630/4.7.1.61 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/105', '199.46.198.233', true, 9, NULL, 'We are renting condos the week of Christmas and looking to reserve the clubhouse for New Year''s Eve. Please let me know if it is still available. Thank you.', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9453, '2010-12-06', 'Laurie', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'garbits@comcast.net', 'Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12 (.NET CLR 3.5.30729)', '71.205.181.139', true, NULL, NULL, NULL, NULL, NULL, NULL, ':11:2:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9452, '2010-12-05', 'Kevin', 'Fink', '4527 Dovewood Lane', 'Sylvania', 'OH', '43560', NULL, '419-467-1213', NULL, 'kevinf@seagateplastics.com', 'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.127 Safari/533.4', '72.241.31.47', true, 9, 1, NULL, '2010-12-28', '2011-01-01', 'flexible on unit size/configuration', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9454, '2010-12-07', 'Mimi', 'Ognjanovski', NULL, NULL, 'MI', NULL, NULL, '586-453-4264', NULL, 'ognjan@wowway.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; InfoPath.2; .NET CLR 3.0.30729; .NET4.0C)', '74.199.11.214', false, 9, NULL, 'Looking for prices for the 25-27 for units: 20, 88 or 123.', '2010-12-25', '2010-12-27', 'Looking for prices for the 25-27 for units: 20, 88 or 123.', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9455, '2010-12-08', 'Lois', 'Pozolo', NULL, 'Rochester Hills', 'MI', NULL, NULL, '248-651-0267', NULL, 'lpozolo@sbcglobal.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C)', '75.45.226.161', true, 6, 5, 'Hello - I made a reservatioon on Monday with "Chris" and haven''t gotten my email confirmation yet.  COuld you someone please email that to me?  Thank you so much!!  I was also wondering if no one rents the bigger condos for the holidays - if we could maybe get an upgrade?  Thanks so much.', '2010-12-23', '2010-12-26', NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9560, '2011-07-12', 'Richard', 'Wing', '2228 Windsor Ave', 'Drexel Hill', 'PA', '19026', NULL, '610-662-7567', NULL, 'guswing@verizon.net', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '173.49.31.48', false, 4, 4, 'I have a reservation already but I have lost the email of the details.  Would you please resend me the emil with the details of my reservation.  Thanks.', '2011-07-29', '2011-08-01', NULL, ':23:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9601, '2011-09-29', 'Brian', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'covbri@yahoo.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '98.28.178.149', false, 8, NULL, 'Interested in renting a 2 bedroom condo over the course of the Thanksgiving weekend - would arrive on Wednesday evening and leave on Monday morning.  Looking for a price per night.  Thanks and let me know.', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7837, '2009-02-05', 'David Leon', 'Carter', '6796 Garfield Ave', 'Cass City', 'MI', '48726', NULL, '9899122041', NULL, 'nellecarter54@yahoo.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '24.236.227.217', true, 9, 1, NULL, '2010-12-27', NULL, NULL, ':2:', NULL, '1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9458, '2010-12-13', 'Heather', 'Swager', '2110 Colter Cove', 'fort wayne', 'IN', '46808', NULL, NULL, NULL, 'heather.swager@gmail.com', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC LM 8)', '63.119.254.243', true, 7, 6, NULL, '2011-02-18', '2011-02-21', NULL, ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5752, '2007-07-09', 'kathryn', 'Reason', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'kaz791@aol.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET4.0C)', '98.250.14.109', true, 9, 1, NULL, '2010-12-28', '2010-12-31', NULL, ':12:2:', NULL, '1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9459, '2010-12-15', 'john', 'chumah', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'shevy98@hotmail.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; GTB6.6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MDDC; WinNT-EVI 05.03.2010; .NET4.0C)', '97.84.142.14', true, NULL, NULL, NULL, NULL, NULL, NULL, ':15:23:14:18:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9461, '2010-12-16', 'Judy', 'Russ', '673 N Waverly Rd', 'Dimondale', 'MI', '48821', NULL, '517-646-6197', NULL, 'russju@comcast.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1)', '70.89.7.214', false, 9, 1, NULL, '2011-01-27', '2011-01-29', NULL, ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9460, '2010-12-15', 'don', 'zane', NULL, NULL, 'MI', NULL, NULL, NULL, NULL, 'dzane@rocketmail.com', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '63.238.139.239', true, 6, NULL, 'do you accept dogs?', NULL, NULL, NULL, ':25:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8371, '2009-06-07', 'randy', 'hillary', NULL, NULL, 'OH', NULL, NULL, '4192607102', NULL, 'r.hillary@hotmail.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; InfoPath.1; .NET4.0C; .NET CLR 3.0.30729)', '72.240.80.6', true, NULL, NULL, NULL, '2009-06-07', '2009-06-07', '', ':2:', NULL, '2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9462, '2010-12-17', 'Dmitri', NULL, NULL, NULL, 'MI', NULL, NULL, NULL, NULL, 'dkonn@yahoo.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; MDDR; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '12.31.240.157', false, 7, 3, 'Please advise if you have availability for the New Year weekend 12/30 - 1/2 for 4 adults and a teen (2 b-room condo).', '2010-12-30', '2011-01-02', NULL, ':25:2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9464, '2010-12-23', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'cosrock_pastor@hotmail.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; GTB6.6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MDDC; .NET4.0C)', '24.180.133.152', true, NULL, NULL, NULL, NULL, NULL, NULL, ':12:2:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9465, '2010-12-26', 'Jere', 'Neill', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'jereneill@sbcglobal.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; GTB6.5; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MAAU; .NET4.0C)', '108.72.94.116', true, 4, NULL, 'Hello there. I have not received a confirmation for 5 nights beginning February 20th. We are to stay in Carol Marouk''s unit. Maybe you didn''t get my email right when we were talking by pnone.', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9467, '2010-12-31', 'Jamie', 'Frain', '8380 bail eau oaks', 'Ada', 'MI', '49301', NULL, '616-291-0407', NULL, 'Jamiebfrain@gmail.com', 'Mozilla/5.0 (iPad; U; CPU OS 3_2_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B500 Safari/531.21.10', '166.205.9.151', true, 9, NULL, NULL, '2010-12-31', '2011-01-02', NULL, ':12:2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9468, '2011-01-04', 'Caela', 'McGrath', '1170 Meadowood Drive', 'Waterford', 'MI', '48327', NULL, '248-765-0777', NULL, 'caelamcg@hotmail.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; .NET CLR 1.1.4322)', '216.11.6.36', false, 9, 2, NULL, '2011-07-25', '2011-07-30', 'Hi.  I am looking for a nice unit that will comfortably sleep 2 children, and 4 adults.', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3447, '2005-08-30', 'Kathryn', 'Malhiot', '1177 Gunderson Ave', 'Oak Park', 'IL', '60304', NULL, '708-386-0914', NULL, 'kmalhiot@comcast.net', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; MS-RTC LM 8)', '12.198.73.2', false, 9, 3, 'I am trying to look at some different weekends in February, but am getting a message on all of them that nothing is available.  Yesterday I saw quite a few available.  Is there something wrong with the website?\r
+Thank you', NULL, NULL, NULL, ':2:', false, '1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9469, '2011-01-05', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'jkiefer580@gmail.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; MDDR; .NET4.0C; .NET4.0E)', '71.227.31.140', true, NULL, NULL, NULL, NULL, NULL, NULL, ':17:12:2:18:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7908, '2009-02-12', 'Lisa', 'Lykins', '6941 N 100 W', 'Bryant', 'IN', '47326', NULL, '260-997-6308', NULL, 'selykins@embarqmail.com', 'Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10', '67.236.80.159', true, 9, NULL, NULL, NULL, NULL, 'I booked Unit 107 for superbowl weekend and I have not received an email conformation. Can you send me one?  Thanks Lisa Lykins', ':2:', NULL, '1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9470, '2011-01-09', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'jho@email.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MDDC; .NET4.0C)', '71.111.193.157', true, NULL, NULL, NULL, NULL, NULL, NULL, ':15:29:10:17:12:6:23:25:2:4:18:22:24:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4897, '2006-10-02', 'Kathy', 'Schultz', '848 Scenic Drive', 'N Muskegon', 'MI', '49445', NULL, NULL, NULL, 'snk1355@msn.com', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727)', '71.115.140.112', true, NULL, NULL, NULL, '2006-10-02', '2006-10-02', '', ':10:17:11:23:2:4:', NULL, '2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9471, '2011-01-10', 'kim', 'ye', '57767 grey fox glen', 'washington twp.', 'MI', '48094', NULL, '586-530-6927', NULL, 'kimslim1960@yahoo.com', 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_6; en-us) AppleWebKit/533.19.4 (KHTML, like Gecko) Version/5.0.3 Safari/533.19.4', '71.227.113.122', true, 9, 6, NULL, '2011-02-25', '2011-02-27', NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9472, '2011-01-11', 'Judy', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'jbornais@uwindsor.ca', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC LM 8)', '137.207.99.202', false, 4, NULL, 'We are interested in renting a condo for 2 to 5 days for 14 people. We have flexibility on when stay.  Can you please e-mail some availability and pricing including lift tickets.\r
+\r
+Many thanks', NULL, NULL, NULL, ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10149, '2014-01-24', 'Elizabeth', 'Brewer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'ea.brewer@yahoo.com', 'Mozilla/5.0 (compatible; MSIE 10.0; Windows Phone 8.0; Trident/6.0; IEMobile/10.0; ARM; Touch; NOKIA; Lumia 822)', '107.9.9.234', false, 8, NULL, 'We have a reservation for a stay in September and I was wondering if you have any roll away cribs or pack and plays or the like available for use? Thanks! Elizabeth', NULL, NULL, NULL, ':12:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7961, '2009-03-26', 'Helen', 'Dean', '129 Sumac Dr', 'Kingsville', 'ON', 'N9Y 3R1', NULL, '519 733 4422', NULL, 'helen_dean@gecdsb.on.ca', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; AskTbX-SD/5.9.1.14019)', '64.228.192.173', false, 9, 3, 'I would like to reserve condo # 82 for our March Break vacation. We are from Ontario. I see that you have the 2 night, 3rd night free deal on again, but when I tried to reserve on-line it didn''t come up with the price for the third night free. Please advise. \r
+Thank you', '2011-03-17', '2011-03-20', NULL, ':2:', NULL, '1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9474, '2011-01-17', 'Michele', 'Kirkey', '1749 Pinecone Ct', 'Lewis Center', 'OH', '43035', NULL, '740-548-2263', NULL, 'jmkirkey@frontier.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '71.244.140.15', true, NULL, NULL, NULL, NULL, NULL, NULL, ':12:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9807, '2012-10-13', 'krist', 'hunter', '120 Foxboro drive', 'alpena', 'MI', '49707', NULL, '9893560999', NULL, 'khunter120@live.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; HPNTDF; BRI/1; .NET4.0C; AskTbNCH2/5.15.4.23821)', '66.227.144.229', true, NULL, NULL, NULL, NULL, NULL, NULL, ':2:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10105, '2013-11-13', 'Joe', 'Mikla', NULL, NULL, NULL, NULL, NULL, '602-690-4965', NULL, 'jmm78@me.com', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.48 Safari/537.36', '69.174.58.116', true, NULL, NULL, NULL, '2014-07-16', '2014-07-20', NULL, NULL, NULL, ':3:', '16', NULL, NULL, '16', '16', 'morning', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9477, '2011-01-23', 'Christina', 'Miller', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'orgmiller2@gmail.com', 'Mozilla/4.0 (compatible; MSIE 7.0; AOL 9.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '64.12.117.74', true, 9, NULL, NULL, '2011-02-25', '2011-02-27', NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9478, '2011-01-24', 'Jennifer', 'Bellore', '420 timber ridge drive', 'highland', 'MI', '48357', NULL, NULL, NULL, 'jennifer.bellore@farmington.k12.mi.us', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322)', '216.11.60.70', true, 4, NULL, NULL, NULL, NULL, 'Could you please pass along the discount lift ticket prices and locations.\r
+\r
+Thank you', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9479, '2011-01-24', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'mac_kcmo@yahoo.com', 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)', '65.210.129.209', true, NULL, NULL, NULL, NULL, NULL, NULL, ':12:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9582, '2011-08-26', 'Traci', 'Springer', '18230 Westcott Dr.', 'Belleville', 'MI', '48111', NULL, NULL, NULL, 'tracispringer@hotmail.com', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB7.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '204.39.38.50', true, NULL, NULL, NULL, NULL, NULL, NULL, ':11:20:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9487, '2011-02-08', 'beverly', 'teno', '54201 cascade ct', 'new baltimore', 'MI', '48047-5863', NULL, '586 7256292', NULL, 'jtenodds@comcast.net', 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_6; en-us) AppleWebKit/533.19.4 (KHTML, like Gecko) Version/5.0.3 Safari/533.19.4', '98.224.179.60', true, NULL, NULL, 'accommodations needed for 5 (3DULTS 2 KIDS) 2/17 to 2/20', NULL, NULL, NULL, ':2:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9482, '2011-01-30', 'Greg', 'Clark', NULL, NULL, 'MI', NULL, NULL, NULL, NULL, 'Reaganauts@aol.com', 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_6; en-us) AppleWebKit/533.19.4 (KHTML, like Gecko) Version/5.0.3 Safari/533.19.4', '98.243.198.43', true, NULL, NULL, NULL, NULL, NULL, NULL, ':10:11:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9483, '2011-01-30', 'Jim', 'Hansen', '415 East Richards Road', 'Oregon', 'WI', '53575', NULL, '608-835-2275', NULL, 'JimH854@Yahoo.com', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC LM 8)', '71.98.2.175', true, 6, 1, NULL, '2011-07-17', '2011-07-23', 'Need accomodations for a family of six.  Prefer two to three bedrooms', ':15:12:22:16:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9531, '2011-05-22', 'william', NULL, '15818 Greenview', 'Fraser', 'MI', '48026', NULL, '5864158345', NULL, 'greenviewadams@aol.com', 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.68 Safari/534.24', '68.60.122.27', false, 9, NULL, NULL, NULL, NULL, 'Any week in July or August available?', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9490, '2011-02-08', 'Kerry', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'nedadams@hotmail.com', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; MS-RTC LM 8; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET4.0C; .NET4.0E)', '72.37.244.44', true, 7, NULL, 'Looking for price and availability for march break 14 to 19th.', NULL, NULL, 'Stayed near Nobs Nub before and went by your place, and wondered what the cost and availability would be.', ':12:25:2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9889, '2013-02-11', 'Patti', 'Arnold', '6200 Buckhorn Lake Rd.', 'Highland', 'MI', '48357', NULL, '2488871999', NULL, 'patjoarnold@aol.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '50.33.183.107', true, 4, 3, NULL, '2013-02-16', '2013-02-18', NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9485, '2011-01-31', 'Louie', 'De Longhi', '1350 Rideau St.', 'Sudbury', 'ON', 'P3A 5B2', NULL, '705-566-3659', NULL, 'ldelonghi@personainternet.com', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB6.6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET4.0C)', '63.135.11.222', true, NULL, NULL, 'Do your golf packages include True North Golf Course?', NULL, NULL, NULL, ':11:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9486, '2011-02-01', 'Lynne', 'Kennedy', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'lynne.kennedy@att.net', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET4.0C)', '99.165.217.153', true, 4, 2, 'Do you offer any specials for multi-night reservations (4+ nights)?', NULL, NULL, NULL, ':12:22:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9481, '2011-01-27', 'Bonnie', 'Paridy', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'golfbonpar@hotmail.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322)', '12.233.14.66', true, 4, NULL, NULL, NULL, NULL, 'Hi:  I e-mailed you 2 weeks ago in regards to pricing for 2 couples wanting a golf package.  Friends recommended.  Normally we go to Boyne, but we want something different.  Coming up for a Thursday to Sunday stay. Playing 3-4 courses.  Please e-mail me price.  Staying June 23-26.  Thanks Bonnie.', ':11:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9488, '2011-02-08', 'Ana', 'Cuellar', '6010 Summerset Ct', 'midland', 'MI', '48640', NULL, '989 8324106', NULL, 'ana_cuellar@hotmail.com', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13 (.NET CLR 3.5.30729)', '75.51.103.140', true, 9, NULL, NULL, '2011-02-17', '2011-02-20', 'we are 1o adults and 12 kids, may need 2 or 3 units', ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9489, '2011-02-08', 'Krystal', 'Rundhaug', NULL, NULL, 'WI', NULL, NULL, NULL, NULL, 'samanthabrighteyes@hotmail.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; HPDTDF; .NET4.0C; AskTbFWV5/5.9.1.14019)', '216.41.200.174', true, 8, 5, 'It is our 21st Anniversary May 18th! Would like to give my husband a Romantic, queit, get away! We have not been to your place before so I would just like to know more info!Was wondering what you would have \r
+available for the two of us, would like Beautiful scenery, big hot tub, fireplace, nice dinner, etc. you know the goodies!!!! haha! Please just email me with any specials that you maybe having during that time! Thank you so Much!!!! Krystal', '2011-05-18', '2011-05-20', 'magazine ad', ':4:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9491, '2011-02-09', 'Kelly', 'Beyer', '3180 Hixon Rd', 'Rochester', 'MI', '48306', NULL, '2486082882', NULL, 'kelly.beyer@hp.com', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB6.6; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.30729; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 3.5.30729; InfoPath.2; MS-RTC LM 8)', '198.208.251.70', true, 9, 5, NULL, '2011-02-19', '2011-02-21', 'We stayed the week before Christmas loved it.  these are our preferred dates but flexible if there is another weekend less booked for less dollars.', ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9492, '2011-02-09', 'Ann', 'Norton', '2500 N. 100th Street', 'Wauwatosa', 'WI', '53226', NULL, '414 430 0997', NULL, 'annnort@gmail.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; GTB6.6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; OfficeLiveConnector.1.5; OfficeLivePatch.1.3)', '72.131.53.171', true, 8, 3, NULL, '2011-02-09', NULL, 'I am working with Southeastern JDRF (Juvenile Diabetes Research Foundation) to organize and present an awesome line up for our 2011 Gala. We are passionate about finding a cure for Type 1 Diabetes! This event hosts about 400 guests. We have received passes for the Car Ferry and are now seeking lodging on the Michigan side for the winning bidder. I have seen information on your establishment and it looks absolutely beautiful.  I am offering you the opportunity to assist us in the search for a cure by donating to our Auction/Gala. We would love to be able to offer a stay at your establishment! The Gala event is March 12th, 2011. Please let us know if you would be willing to help FUND A CURE!', ':15:29:17:3:12:6:11:23:4:22:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9493, '2011-02-09', 'Kim', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'fivemoorekids@aol.com', 'Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13 ( .NET CLR 3.5.30729; .NET4.0C) FBSMTWB', '69.244.152.195', true, 6, NULL, NULL, NULL, NULL, NULL, ':25:2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9494, '2011-02-12', 'KERRY', 'ZINGER', NULL, 'COMMERCE TWP.', 'MI', '48382', NULL, '2486851442', NULL, 'kerryzinger@comcast.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; InfoPath.2; BRI/1)', '98.250.200.245', true, 6, 3, NULL, '2011-02-20', '2011-02-23', NULL, ':25:2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7652, '2008-11-13', 'Pauline', 'LaJoie', '880 Snowdrift', 'Commerce Twp', 'MI', '48390', NULL, '313-550-0075', NULL, 'plajoie10@aol.com', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; WinNT-PAI 25.09.2009)', '99.103.186.129', true, 9, 5, '3 Nights.........last year\r
+2 nights one night free!', '2011-05-15', '2011-05-18', NULL, ':23:', NULL, '1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9495, '2011-02-13', 'Carol', 'Ferguson', 'RR 1', 'Petrolia', 'ON', 'N0N 1R0', NULL, '519 882 4623', NULL, 'cferguson002@sympatico.ca', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322; .NET4.0C)', '174.89.144.154', true, 4, 4, NULL, '2011-03-14', '2011-03-17', 'We would like to be located near the clubhouse if possible. We are traveling with friends. We''ll do either 2 bedroom 1 or 2 bath or whatever is available near the clubhouse. We are only 3 people.\r
+Thanks\r
+Carol Ferguson', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9497, '2011-02-20', NULL, NULL, NULL, NULL, 'MI', NULL, NULL, NULL, NULL, 'mike@gmandsons.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; GTB5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; eSobiSubscriber 2.0.4.16; .NET CLR 3.5.30729; .NET CLR 3.0.30729)', '71.238.173.75', true, NULL, NULL, NULL, NULL, NULL, NULL, ':12:2:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9496, '2011-02-17', 'Jenna', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'jolso521@uwsp.edu', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; .NET4.0C; .NET4.0E)', '143.236.34.51', true, 6, NULL, 'We would like to come here but we have a dog that we don''t have a place for. What is your pet policy?', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9498, '2011-02-26', 'Harley', 'Mcdowell', '9 Barker rd.665', 'white Pigeon', 'MI', '49099', NULL, NULL, NULL, 'hpm1@live.com', 'Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13 (.NET CLR 3.5.30729)', '75.205.208.133', true, 9, NULL, NULL, '2011-06-02', '2011-06-03', 'I  stayed there last year. would like the same condo and play golf at chestnut valley and hidden river', ':11:18:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9499, '2011-02-26', 'Ruthann', 'Foltz', NULL, NULL, 'OH', '44857', NULL, NULL, NULL, 'rafoltz@hotmail.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; CPNTDF; .NET4.0C; BRI/1)', '71.74.146.181', true, 8, NULL, 'Looking at affordable family vacation options the last week of June.', '2011-06-25', '2011-07-02', 'Travel Advantage Network has only 1 unit available...we are looking for options for a family vacation.', ':3:12:22:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9533, '2011-05-25', 'Kelly', 'Gawron', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'kellygawron@gmail.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; F-6.0SP2-20041109; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '136.2.1.104', true, NULL, NULL, NULL, NULL, NULL, NULL, ':29:17:12:6:11:23:25:2:4:14:18:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9964, '2013-04-27', 'RIta', 'Marzec', '16381 Ellen Drive', 'Livonia', 'MI', '48154', NULL, '734-462-8999', NULL, 'rmarz@onemain.com', 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)', '174.84.223.158', true, NULL, NULL, NULL, NULL, NULL, NULL, ':12:11:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9500, '2011-02-27', 'Janet', 'Bigalke', '358 Cottonwood Lane', 'Saline', 'MI', '48176', NULL, '(734) 546-6838', NULL, 'janetbigalke@gmail.com', 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_6; en-us) AppleWebKit/533.19.4 (KHTML, like Gecko) Version/5.0.3 Safari/533.19.4', '24.11.169.147', false, 6, 3, NULL, '2011-07-01', '2011-07-06', 'We are looking for a 2 bedroom 2 bath condo for the week of July 3.  Do you have any units available and for what price?', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9501, '2011-02-28', 'debby', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'escapedriva@hotmail.com', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '71.13.68.235', true, 9, NULL, NULL, NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9502, '2011-03-02', 'Marianne', 'Ledvina', '199 North 90th Street', 'Milwaukee', 'WI', '53226', NULL, '414-507-8958', NULL, 'mledvina@sbcglobal.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '204.238.52.68', true, 8, NULL, 'We will be staying at Trout Creek from April 2 through April 9.  However, when I have been looking at webistes in the area, it does not seem that there is anything to do --- Yikes!  I will be vacationing with my in-laws and wanted to do day trips with them to see different historical sites, etc.  Please direct me to how I can confirm what will be open (ie: Ferry to Mackinac Island, Historical Museums, Ship in port etc.).\r
+\r
+Any assistance will be greatly appreciated as they will not be able to ski, snowboard, snowmobile etc.\r
+\r
+Thank you,\r
+\r
+Marianne', NULL, NULL, 'Sundance Vacations / Plan with Tan', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9503, '2011-03-05', 'Shana', 'Suris', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'shana.suris@sbcglobal.net', 'Mozilla/5.0 (iPad; U; CPU OS 4_2_1 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8C148 Safari/6533.18.5', '76.226.103.190', true, 4, NULL, 'I would like to speak with someone regarding travel  and dates for our stay.  Thank you  248.302.6888', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9504, '2011-03-07', 'Sue', 'Nofz', '11130 Shadow Creek Ct', 'Sterling Heights', 'MI', '48313', NULL, '586-323-2533', NULL, 'snofz@yahoo.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; Creative ZENcast v2.01.01)', '69.14.36.203', true, NULL, NULL, NULL, NULL, NULL, NULL, ':15:29:17:3:12:6:11:23:2:4:18:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9476, '2011-01-21', 'Emily', 'Young', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'eyoung@wmol.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; .NET CLR 1.1.4322; InfoPath.1; MS-RTC LM 8)', '69.129.157.50', true, NULL, NULL, NULL, NULL, NULL, NULL, ':20:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9505, '2011-03-08', 'Vicki', 'Sordyl', '16522 W. Teton Drive', 'Lockport', 'IL', '60441', NULL, NULL, NULL, 'vsordyl@comcast.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.5; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2)', '209.175.16.30', true, 8, 6, NULL, '2011-06-26', '2011-07-03', 'Hi,\r
+\r
+I''ve been looking online through homeaway and vrbo and then I remembered meeting you a couple years ago and how generous and helpful you were and wanted to see if you could help me and my family out. I''m looking to rent a place for a family vacation that has 5 bedrooms that fits about 12 people from 6.26.11-7.3.1. Would Trout Creek have anything that could accomodate our group? If so what would it cost to rent by the week?\r
+\r
+Kindly,\r
+\r
+Vicki', ':12:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9885, '2013-02-06', 'Lee', 'Ferris', '7415 Lake St.', 'Dexter', 'MI', '48130', NULL, '734-552-2800', NULL, 'ferrislee@comcast.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; .NET CLR 1.1.4322)', '198.36.94.35', false, 6, NULL, NULL, '2013-02-15', '2013-02-17', 'Six people total\r
+Kids ages: 13, 13, 12, 10', ':12:2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9506, '2011-03-09', 'Ryan', 'Wrobleski', '940 Monroe Ave NW Apt 406', 'Grand Rapids', 'MI', '49503', NULL, '248-224-0114', NULL, 'wrobo1501@gmail.com', 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '24.11.7.107', false, 8, 6, 'I would like to get a quote for a golf package for group of 12 (min) to 20 (max).  3 nights lodging.  5 rounds of golf (Thurs to Sat, 18, 36, 36) at a combination of the following courses (True North, Hidden River, Little Traverse Bay, Dunmaglas, Black Bear, or Boyne Highlands).  Please contact me if you need additional information to put together a quote.', '2011-09-08', '2011-09-11', '2011 Novi Golf Show.  True North booth.', ':11:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9507, '2011-03-13', 'Kae', 'Kingma', '2600 Inverness Rd. SE', 'Grand Rapids', 'MI', '49546', NULL, '616 942-0564', NULL, 'kae53@comcast.net', 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_6; en-us) AppleWebKit/533.19.4 (KHTML, like Gecko) Version/5.0.3 Safari/533.19.4', '68.41.95.226', true, 9, 3, 'Do you have 3 or 4 of the 2 bedroom units available for the weekend of Aug. 5 & 6?  We would arrive on Friday and check out on Sunday.\r
+What is the cost per unit?', '2011-08-05', '2011-08-07', NULL, ':15:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9508, '2011-03-15', 'Courtney', 'Caulkins', '', '', '', '', NULL, '', NULL, 'courtneycaulkins@yahoo.com', NULL, NULL, true, NULL, NULL, '', '2011-03-15', '2011-03-15', '', ':20:', NULL, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9509, '2011-03-15', 'Karrie ', 'Pater', '', '', '', '', NULL, '', NULL, 'kpater1@hotmail.com', NULL, NULL, true, NULL, NULL, '', '2011-03-15', '2011-03-15', '', ':20:', NULL, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9510, '2011-03-15', 'Laura', 'Budreau', '', '', '', '', NULL, '', NULL, 'dlbudreau@sbcglobal.net', NULL, NULL, true, NULL, NULL, '', '2011-03-15', '2011-03-15', '', ':20:', NULL, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9511, '2011-03-16', 'CaSandra', 'Maynard', '6315 Heyer Street', 'Romulus', 'MI', '48174', NULL, '734 7080147', NULL, 'maynards.06@gmail.com', 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_6; en-us) AppleWebKit/533.20.25 (KHTML, like Gecko) Version/5.0.4 Safari/533.20.27', '68.42.200.253', true, 6, 6, NULL, '2011-08-26', '2011-08-28', 'I am looking for a place to host my families reunion in August sometime. Date is flexible. \r
+We need room for a max 39 adults and 20 kids.\r
+For 2 nights only.', ':3:6:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9512, '2011-03-19', 'Kathie', 'Jones', '8169 Dan Smit', 'Watervliet', 'MI', '49098', NULL, '2698610049', NULL, 'skdrjones@sbcglobal.net', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.15) Gecko/20110303 Firefox/3.6.15 ( .NET CLR 3.5.30729)', '99.88.228.61', true, 4, 5, NULL, '2011-06-17', '2011-06-20', 'I never got a confirmation email for my reservation.  I booked #37. Please send confirmation.  Thanks.', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9966, '2013-05-01', 'Robert', 'Ringenberg', NULL, NULL, NULL, NULL, NULL, '616-460-1510', NULL, 'robertringenberg@comcast.net', 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.64 Safari/537.31', '68.61.75.189', true, NULL, NULL, '2 seperate condo''s 4 in each. Flexible on dates. Can come the weekend after also. Courses in order of favorites: 1)Arthur Hills 2.) Little traverse 3.) Hidden River 4.) Chestnut Valley. Never have played Black Lake. 18 holes per day. Thursday - Drive up from Grand Rapids play late morning (11 am), Friday 9-10 am, Saturday 9-10 am, Leave sunday. Possibly play sunday if included in package. Contact me ASAP on this. We have not been up that way for 18 yrs.', '2013-09-05', '2013-09-08', NULL, NULL, NULL, ':3:', '8', NULL, NULL, NULL, '8', 'morning', 'Same', 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9513, '2011-03-20', 'Kent', 'Greener', '2710 East Shore Dr.', 'Portage', 'MI', '49002', NULL, '269-720-1785', NULL, 'kgreener@gloryusa.com', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.10) Gecko/20100914 Firefox/3.6.10 (.NET CLR 3.5.30729)', '75.40.225.201', true, 9, 4, NULL, '2011-06-17', '2011-06-20', NULL, ':14:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9514, '2011-03-21', 'Taryn', 'Smith', '152 W. Michigan Ave.', 'Jackson', 'MI', '49201', NULL, '517-206-6332', NULL, 'tsmith@jtv.tv', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.15) Gecko/20110303 Firefox/3.6.15 ( .NET CLR 3.5.30729)', '207.179.121.196', true, 8, NULL, 'I saw your ad in the Michigan Travel Ideas Magazine.  \r
+\r
+JTV viewers travel north for vacations and GOLF.  We are launching our Golf Show where Trout Creek would be a perfect fit for our viewing audience; thereby, driving more people to your golf course.  \r
+  \r
+Let’s get to know each other better.  Please contact me to discuss ideas.  \r
+\r
+Taryn Smith \r
+Account Manager, JTV\r
+contact me for advertising packages & pricing\r
+PH: 517-206-6332\r
+FX: 517-783-5060\r
+EM: tsmith@jtv.tv\r
\r
+Online www.JTV.tv “Live JTV Stream” \r
+Comcast~Channel 90\r
+at&t U-Verse~Channel 5380\r
+Broadstripe~Channel 10 & 160', NULL, NULL, 'Michigan Travel Ideas Magazine', ':15:29:10:17:3:12:6:11:23:25:2:4:20:14:18:22:16:24:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9515, '2011-03-22', 'Dave', 'Wagenhauser', NULL, NULL, NULL, NULL, NULL, '419-350-9943', NULL, 'gobluefan2323@yahoo.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB6.6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MDDR; InfoPath.3; .NET4.0C)', '12.50.170.34', true, 1, 6, NULL, '2011-07-29', '2011-07-31', 'I stopped by your booth in Novi but never received a return phone call.  Looking at two nights with three rounds for the dates above.  Black Lake, Dunmglas and Little Traverse Bay.  Please call or email quotation.  Stayed at Hamlet Village in the past.', ':11:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9516, '2011-03-22', 'Kristine', 'Grabowski', '34340 Coachwood', 'Sterling Heights', 'MI', '48312', NULL, '5862685718', NULL, 'KGrabowski@wowway.com', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.151 Safari/534.16', '96.27.36.146', true, 9, NULL, 'I am the President of the PTO at my children''s school and wondered if Trout Creek ever makes donations for a weekend stay?  We are a non-profit organization and are looking for donations for our Family Fun Night event.  We LOVE Trout Creek and thought it would also be enjoyed by other families in our community.  I look forward to hearing from you!', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9517, '2011-04-12', 'DAniel', 'Fine', '9519 Taylor May Rd', 'Chagrin Falls', 'OH', '44023', NULL, '440-241-4890', NULL, 'alpacadan@windstream.net', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.16) Gecko/20110319 Firefox/3.6.16', '69.40.250.131', true, 9, NULL, NULL, '2011-07-31', '2011-08-06', 'I''d like to rent the same unit I rented last year across the lot from the indoor pool, I can''t remember the unit number. Last year we also rented a one bedroom unit. We only need the 3 bedroom unit this year. \r
+Regards, \r
+Dan Fine', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9518, '2011-04-12', 'Charles', 'Murray', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'murrayc9@msu.edu', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; .NET4.0C; .NET4.0E)', '12.154.167.138', true, 9, NULL, 'I work with Paul Forney, a member of the Trout Creek board, and have been traveling to Trout Creek for 5+ years now.  Do any of the condos allow dogs?  I am planning on visiting Trout Creek again this year and many more to come, but this is a key factor in that decision.\r
+\r
+Thank you.', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9520, '2011-04-24', 'Kristi', 'McLaren', '2642 Quail Run', 'Rochester', 'MI', '48306', NULL, '586-336-9408', NULL, 'mclarenmk@comcast.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; GTB6.6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; AskTbX-SD/5.11.3.15590)', '76.112.60.184', false, 9, 1, 'I am looking for your nicest 2 bdrm+loft for the week after christmas for our ski team.  Do you have any that have two beds in bedroom #2?  Can you email with options and pricing so we can discuss at our next team meeting.  THANK YOU!  PS would prefer close to fitness/indoor pool.', '2011-12-26', '2012-01-01', NULL, ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9521, '2011-04-28', 'Perry', 'Gates', NULL, NULL, 'IA', NULL, NULL, NULL, NULL, 'philgarcia02@gmail.com', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.18) Gecko/20110319 Firefox/3.5.18 GTB7.1', '122.177.93.24', true, 4, NULL, 'We are Internet Marketing experts who can help you answer these questions, drive mass traffic to your site, and dramatically increase sales.', NULL, NULL, 'We are Internet Marketing experts who can help you answer these questions, drive mass traffic to your site, and dramatically increase sales.', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9522, '2011-04-28', 'daphne', 'betley', '12960 sleigh trail', 'milford', 'MI', '48380', NULL, '5862914449', NULL, 'dbetley@sjm.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 1.1.4322; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C)', '24.11.43.190', true, 9, 1, NULL, '2011-07-30', '2011-08-05', NULL, ':12:11:22:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9032, '2009-11-11', 'Gaylon', 'Brooks', '22861 Teppert', 'Eastpointe', 'MI', '48021', NULL, '586-771-6614', NULL, 'gbrooksii@comcast.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '216.55.112.120', true, 9, 4, NULL, '2011-08-19', '2011-08-24', 'I would like rates for the indicated dates please.', ':12:23:22:', NULL, '1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9523, '2011-05-08', 'Robert', 'LaJoie', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'bl654@yahoo.com', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:2.0.1) Gecko/20100101 Firefox/4.0.1', '99.30.202.106', true, 9, NULL, NULL, NULL, NULL, 'My wife and I will at TC next week. Do you have wifi?  Thank you', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9728, '2012-05-25', 'Amanda', 'Irwin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Amanda.irwin@mac.com', 'Mozilla/5.0 (iPad; CPU OS 5_1_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9B206 Safari/7534.48.3', '24.11.58.175', false, 4, NULL, NULL, NULL, NULL, 'Just wondering if we need a fishing license to fish in your ponds when we visit in a few weeks.  Thank you!', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9527, '2011-05-18', 'cindy', 'novotney', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'cindynovotney@allstate.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; AskTB5.6)', '98.209.140.121', true, 8, NULL, NULL, NULL, NULL, 'chris, just picked up the message please change the contact to my cell 248 563 7717  we are coming up next friday (memorial weekend to clean  no need to clean after cousing they only slept there and we are fine\r
+still interested in long term rental', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9529, '2011-05-21', 'michelleq', 'bobowick', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'mbobowick@clearwaterassociates.us', 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_5; en-us) AppleWebKit/533.18.1 (KHTML, like Gecko) Version/5.0.2 Safari/533.18.5', '98.246.162.114', false, 6, NULL, 'I am writing to inquire about availability from 7/24 and leaving on 7/28.  I will be traveling wiht 2 little chidlren, my sister and my parents (70 yoa of some physical limitations). I wanted to know if hte condos looking at 2 bdrm or 3 bdrm options if there are stairs .. would need my parents to be on the main floor.  As thye need to avoid stairs - likewise are there stairs in the condos and or stairs to get to the condos.', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9530, '2011-05-21', 'Kathi', 'Austin', '7644 Hardcastle Lane', 'La Grange', 'TX', '78945', NULL, '281-433-4176', NULL, 'kathiaustin@hotmail.com', 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_7; en-us) AppleWebKit/533.21.1 (KHTML, like Gecko) Version/5.0.5 Safari/533.21.1', '65.119.50.107', false, 6, 5, NULL, '2012-07-01', '2012-09-01', 'Looking for a two-three month stay to get out of the Texas heat - July 1-September 1, 2012.  Newly retired and based near Austin, TX.  Any way to find something that is not rented out weekly only and so the monthly rate is not thousands of dollars?  We have a well behaved Labrador who would like to join us.', ':15:6:22:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9532, '2011-05-24', 'Heather', 'Wourman', NULL, NULL, 'MI', NULL, NULL, '734-763-1271', NULL, 'cerovski@umich.edu', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MCIT1.0; .NET4.0C; .NET4.0E; InfoPath.3; MCIT1.0)', '141.214.17.4', false, 9, NULL, 'We are looking for a place to hold a 4-day Wilderness Medicine Course that involves inside and outside accomodations for approximately 150 people. What can your resort offer us?', '2012-05-31', '2012-06-03', NULL, ':18:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9886, '2013-02-06', 'Colleen', 'Sturtz', NULL, NULL, 'MI', NULL, NULL, NULL, NULL, 'Sturtzcms@comcast.net', 'Mozilla/5.0 (iPad; CPU OS 6_1 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10B141 Safari/8536.25', '98.250.140.219', true, NULL, NULL, NULL, NULL, NULL, NULL, ':2:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9535, '2011-05-31', 'Larry', 'Easton', '227 Pierce Lake Dr.', 'Chelsea', 'MI', '48118', NULL, NULL, NULL, 'shopperpe@att.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC EA 2; ety8x_cfg)', '76.226.202.190', true, NULL, NULL, NULL, NULL, NULL, NULL, ':23:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9536, '2011-06-07', 'Chris', 'Vanneste', '21892 Chrome Bolt', 'Macomb', 'MI', '48044', NULL, NULL, NULL, 'chris.vanneste@smithgroup.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; MS-RTC LM 8; .NET4.0C; .NET4.0E)', '12.37.95.179', true, NULL, NULL, NULL, NULL, NULL, NULL, ':15:17:12:11:2:4:18:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9537, '2011-06-12', 'Steve', 'Hamilton', '6702 Haggerty Rd.', 'Hillsboro', 'OH', '45133', NULL, '937-393-8239', NULL, 'soilsteve@yahoo.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)', '71.79.21.171', true, 6, 5, 'Do you allow dogs.', '2011-09-19', '2011-09-23', NULL, ':17:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9538, '2011-06-13', 'YAGNESHBHAI', 'RAMANI', NULL, NULL, NULL, NULL, NULL, '8474528851', NULL, 'yramani@gmail.com', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.151 Safari/534.16', '216.165.167.10', true, 6, NULL, NULL, '2011-07-01', '2011-07-04', 'Cound not find any rate information about 3 bed rooms and 5 bed rooms for weekend of 4th of july.  Please email me the details...', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9539, '2011-06-16', 'John', 'Estep', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'jestep002@columbus.rr.com', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; .NET4.0C; MS-RTC LM 8)', '206.49.104.35', true, 6, 1, NULL, '2011-07-10', '2011-07-17', 'How far is beach from property?? Walking distance? Which units are available that week above?', ':12:6:22:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9540, '2011-06-16', 'Tom', 'Moores', '951 E Maple', 'Holly', 'MI', '48442', NULL, '248-866-0663', NULL, 'karetom2@comcast.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB7.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.30729; .NET4.0C; .NET CLR 3.5.30729)', '98.250.226.32', true, 8, 1, '3 couples will be golfing in the area and are looking for 3 double beds in seperate rooms.  thanks', '2011-08-30', '2011-09-02', 'play in amatuer golf tourny at boyne and saw signs for condo rentals.', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9541, '2011-06-17', 'Sandy victor', 'Sandy victor', 'india', 'Delhi', 'IN', '25256', NULL, '9873469501', NULL, 'sandyvictor10@gmail.com', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.17) Gecko/20110420 Firefox/3.6.17', '182.64.215.237', true, 6, NULL, 'SEO Company\r
+COMPLETE INTERNET MARKETING SOLUTION\r
+SEO - Link Building - Copywrighting - Web Designing - PHP\r
+In order for us to respond to your request for information, please include your company’s website address (mandatory) and or phone number.\r
+Marketing suggestion for your website\r
+We noticed that you are not at the top of the search engines for a number of your key terms. We have helped companies similar to yours to achieve top organic rankings. Please reply to this message and we will prepare a special proposal for you, to show you how we can achieve similar results for you.\r
+\r
+Sincerely,\r
+sandy victor', NULL, NULL, 'SEO Company\r
+COMPLETE INTERNET MARKETING SOLUTION\r
+SEO - Link Building - Copywrighting - Web Designing - PHP\r
+In order for us to respond to your request for information, please include your company’s website address (mandatory) and or phone number.\r
+Marketing suggestion for your website\r
+We noticed that you are not at the top of the search engines for a number of your key terms. We have helped companies similar to yours to achieve top organic rankings. Please reply to this message and we will prepare a special proposal for you, to show you how we can achieve similar results for you.\r
+\r
+Sincerely,\r
+sandy victor', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9542, '2011-06-18', 'Dana', 'Adams', '608 Secretariate Dr', 'Corunna', 'ON', 'N0N1G0', NULL, '5194810253', NULL, 'oasishairco@yahoo.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; BRI/2)', '72.39.234.59', true, 7, NULL, 'I have a group of 6 women who are looking for a day of golf and either some shopping or a day of river tubing.', '2011-08-26', '2011-08-28', NULL, ':11:23:22:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9543, '2011-06-20', 'diana', 'lubbers', '1301 linden', 'muskegon', 'MI', '49445', NULL, '2317302630', NULL, 'granny2d@gmail.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB5; Comcast Install 1.0; FunWebProducts; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET4.0C; msn OptimizedIE8;ENUS; AskTB5.6)', '50.37.58.173', true, NULL, NULL, NULL, NULL, NULL, NULL, ':14:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9544, '2011-06-21', 'Thomas', 'Ribich', NULL, 'Columbus', 'OH', NULL, NULL, NULL, NULL, 'tbribich@earthlink.net', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; GTB7.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C)', '99.89.243.74', false, 6, NULL, 'Two questions:\r
+1) how far in advance can a reservation be made? I put in dates for July, 2012 and got a "dates not available" response yet the dates on the calendar showed available.\r
+2)are the rates shown per night or for the entire length of stay? I was given a rate of $695 for a 2bed/2ba condo, for 4 people and 4 wkday nights. For what period of time does the $695 apply?\r
+Thanks!', NULL, NULL, NULL, ':3:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9545, '2011-06-23', 'Gary', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'garysmalling@yahoo.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET4.0C; .NET CLR 3.0.30729)', '68.52.95.156', false, 6, NULL, 'Not sure of exact travel dates. Please include prices for packages through end of october 2011. Thanks.', NULL, NULL, NULL, ':11:23:4:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6310, '2007-11-20', 'John', 'Dennis', '703-2000 Regent Street', 'Sudbury', 'ON', 'P3E 5T5', NULL, '705-522-8940', NULL, 'bear.management@gmail.com', 'Mozilla/5.0 (Windows NT 5.1; rv:2.0.1) Gecko/20100101 Firefox/4.0.1', '208.96.66.83', true, 8, 6, 'We would arrive late Friday and leave early Monday', '2012-05-18', '2012-05-21', 'Been there 3 or 4 times', ':11:', NULL, '1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9546, '2011-06-23', 'gary', 'reeves', '19 loomis ferry rd', 'HHI', 'SC', '29928', NULL, '2392727277', NULL, 'gdr111@aol.com', 'Mozilla/4.0 (compatible; MSIE 7.0; AOL 9.6; AOLBuild 4340.167; Windows NT 6.0; Trident/5.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; InfoPath.2; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET4.0C; MSN OptimizedIE8;ENUS)', '174.107.196.33', true, NULL, NULL, NULL, NULL, NULL, NULL, ':29:11:23:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9547, '2011-06-24', 'Don', 'Quade', '4575 Julian Street', 'Denver', 'CO', '80211', NULL, '303-668-0417', NULL, 'dquade4@comcast.net', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB7.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; WinNT-PAI 12.06.2009)', '199.184.176.44', true, 8, 1, 'Need your help - I''m planning a family reunion/50th wedding anniversary party for my parents. We know for sure we will need 4 condos, all different sizes depending on each families needs, and possibly more for a few other relatives that may be attending. Can we get a group rate? Do you have a clubroom or facility that we can utilize one evening for an anniversary celebration? This even is taking place a year from now - what do we need to do to make/hold reservations? Any assistance you can provide in our pre-plan stages would be most appreciated. Thanks you! Sincerely, Don Quade', '2012-07-01', '2012-07-08', 'Stayed at Trout Creek in the past', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9548, '2011-06-25', 'deb', 'russell', '5735 archer road', 'brethren', 'MI', '49619', NULL, NULL, NULL, 'dr@kaltelnet.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB7.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; MDDC; .NET CLR 3.5.30729; .NET CLR 3.0.30618)', '184.175.143.73', true, 6, 4, 'We are looking for an extended stay condo from approx. July 15th (or even sooner) until around September 15th (give or take a week or two).  Do you have availability for this?  If not, we would even be interested in just a one month rental.  If so, can you give me an approx. monthly price?  ...And are dogs an option?  We have a very old/laxy Bassett Hound.  We would like either a 2 bedroom 2 bath, or 2 bedroom 1 bath.\r
+\r
+Thank you SO much for your help and information,\r
+\r
+Deb Russell', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9549, '2011-06-28', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'noneej@gmail.com', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.100 Safari/534.30', '24.53.152.118', true, NULL, NULL, NULL, NULL, NULL, NULL, ':10:17:6:18:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9550, '2011-06-28', 'Matt', NULL, NULL, 'Worthington', 'OH', NULL, NULL, NULL, NULL, 'mshu4@columbus.rr.com', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.18) Gecko/20110614 Firefox/3.6.18 ( .NET CLR 3.5.30729)', '76.181.46.168', false, 8, 4, 'Please provide pricing information. Thank you!', '2011-08-07', '2011-08-13', 'We have stayed there in the past.', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9551, '2011-06-30', 'Olya', 'Hnat', '5958 Slate Dr', 'Troy', 'MI', '48085-3883', NULL, '2488795618', NULL, 'olyak101@yahoo.com', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.112 Safari/534.30', '71.238.53.41', true, 4, NULL, NULL, '2011-07-01', '2011-07-05', NULL, ':15:29:12:23:22:16:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9552, '2011-07-01', 'Jeff', NULL, '12718 Ludlow Ave.', 'Huntington Woods', 'MI', '48070', NULL, '2484082204', NULL, 'jeffmeade@wideopenwest.com', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.112 Safari/534.30', '69.14.126.43', false, 8, NULL, 'Spoke with Nicky today (Fri 7/1) about a soccer team/parents accomadations. Still waiting for an email with group rate details.\r
+\r
+Thanks, Jeff', '2011-09-09', '2011-09-11', 'Petoskey soccer club website', ':14:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9756, '2012-07-05', 'Sheila', 'Foote', '9125 burning tree dr', 'Grand blanc', 'MI', '48439', NULL, '810 694-2020', NULL, 'Sheilam4@sbcglobal.net', 'Mozilla/5.0 (iPad; CPU OS 5_1_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9B206 Safari/7534.48.3', '76.231.141.111', true, 9, NULL, 'Have reservation want to know how much owed and check in time', '2012-07-12', '2012-07-15', NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9554, '2011-07-05', 'Toni', 'Aspacher', '25 PARKWOOD DRIVE', 'BOWLING GREEN', 'OH', '43402', NULL, '4193532901', NULL, 'maspacher@woh.rr.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_7) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.112 Safari/534.30', '184.58.111.241', true, 4, 5, 'how far and where is the nearest swimming beach?', '2011-07-26', '2011-07-29', NULL, ':15:4:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9555, '2011-07-06', 'Jennifer', 'Kendall', '55 Mapleton', 'Grosse Pointe Farms', 'MI', '48236', NULL, NULL, NULL, 'jajkendall@yahoo.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; GTB6.6; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; eSobiSubscriber 2.0.4.16; OfficeLiveConnector.1.5; OfficeLivePatch.1.3; .NET4.0C; InfoPath.3)', '68.40.104.125', true, NULL, NULL, NULL, NULL, NULL, NULL, ':12:6:2:18:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9556, '2011-07-07', 'Vicki', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'vcr32779@aol.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; EasyBits GO v1.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; BRI/1; MASM; .NET4.0C)', '174.107.196.22', false, 6, NULL, 'Retired, non smoking, couple with one dog seeking long term UNfurnished (need all appliances) rental in Harbor Springs.\r
+$1000.00 monthly or less.', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9557, '2011-07-07', 'Diana', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'smalleys4@comcast.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '71.205.143.97', true, 4, NULL, 'We will be staying at the resort late July. I noticed that you offer discount tickets for the ferry and carriage tours at Mackinac Island. Could you please let me know the cost of that package. We will need 3 adult and 2 child tickets. Thank you', NULL, NULL, NULL, ':22:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9558, '2011-07-08', 'Dayl', 'Hall', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'dayl_hall_cm@comcast.net', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0)', '69.244.160.223', true, NULL, NULL, NULL, NULL, NULL, NULL, ':12:6:23:25:4:20:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9456, '2010-12-09', 'Carol', 'Cohen', '5056 Mirror Lake Court', 'W Bloomfield', 'MI', '48323', NULL, '248-481-9575', NULL, 'caroljcohen@sbcglobal.net', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:5.0) Gecko/20100101 Firefox/5.0', '65.31.79.160', true, NULL, NULL, NULL, NULL, NULL, NULL, ':15:29:17:12:6:11:23:22:16:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9723, '2012-05-14', 'Alaric', 'Thomas', '3792 northwestern', 'detroit', 'MI', '48206', NULL, '3133611150', NULL, 'essenceofyou4731@gmail.com', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/536.11 (KHTML, like Gecko) Chrome/20.0.1132.47 Safari/536.11', '198.228.201.160', true, NULL, NULL, NULL, NULL, NULL, NULL, ':15:29:17:6:23:4:18:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9561, '2011-07-14', 'Cecilia', 'Lewandowski', '2680 Wareing Drive', 'Lake Orion', 'MI', '48360', NULL, NULL, NULL, 'cec.lewandowski@gmail.com', 'Mozilla/5.0 (Windows NT 5.1; rv:5.0) Gecko/20100101 Firefox/5.0', '98.250.62.165', true, NULL, NULL, NULL, NULL, NULL, NULL, ':10:12:23:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9390, '2010-06-26', 'Kate', 'Petriken', '1343 Schafer Drive', 'Burton', 'MI', '48509', NULL, '810-744-1227', NULL, 'petriken@sbcglobal.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C)', '76.226.43.125', true, NULL, NULL, NULL, NULL, NULL, NULL, ':3:12:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9566, '2011-07-29', 'Susan', 'Callahan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'bigstella@comcast.net', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0)', '98.224.226.166', false, 6, NULL, 'I know TC is a resort, but they are owned condo''s.  Do you have any full-time resident owners living there?', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9563, '2011-07-18', 'Kris', 'Kokx', '600 Oakleigh N.W.', 'Grand Rapids', 'MI', '49504', NULL, '616 735-0261', NULL, 'Ristinkay@sbcglobal.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB6.3; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; yie8)', '76.235.205.71', true, 9, 2, 'Looking for availability and rates.\r
+\r
+Thank you.', '2011-08-12', '2011-08-15', NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9564, '2011-07-19', 'Stacy', 'Sturmoski', '3511 miller rd', 'kalamazoo', 'MI', '49001', NULL, '2698234233', NULL, 'babystace310@Yahoo.com', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.122 Safari/534.30', '24.176.16.86', false, 6, 5, 'This would be for myself and my friend. If condo #53 is available for the retreat, we would like to have that one reserved. If not, we would prefer to have just one king bed in the room if the other one is not available. We were wondering what the cost would be for this and we would also like to stay Thurs for free :)', '2011-10-06', '2011-10-09', 'Thank you!', ':23:20:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9565, '2011-07-28', 'Joe', 'DAlessandro', '10404 Bunker Hgwy', 'Eaton Rapids', 'MI', '48827', NULL, '5177498341', NULL, 'joe@fdhayes.com', 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.122 Safari/534.30', '173.13.14.170', true, 9, NULL, NULL, NULL, NULL, 'Looking for a 3 day golf package for 4 late August playing Little Traverse plus others 3 rounds total', ':11:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9567, '2011-07-31', 'Steven', 'Remer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'sremer817@yahoo.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; GTB7.1; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; BRI/1; MALN; InfoPath.2)', '24.238.210.132', false, 6, NULL, NULL, NULL, NULL, 'Hi,\r
+\r
+I have reservations within the next few weeks. Quick question.  Do you get good cell phone reception through ATT at the resort? \r
+\r
+Thanks', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9568, '2011-07-31', 'Aimee', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'go2murr@yahoo.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; IEMB3; BRI/2; BO1IE8_v1;ENUS)', '97.85.40.116', false, 2, 4, NULL, '2011-08-19', '2011-08-21', '2 bedroom 1 bath or 2 bedroom 2 bath which ever price is better.  Thank you.', ':6:23:4:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6133, '2007-08-14', 'Nick', 'Zlojutro', '4520 Silver Valley Ln', 'Traverse City', 'MI', '49684', NULL, '(231) 883-5202', NULL, 'jzlojutro@aol.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 1.0.3705; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '75.133.73.146', true, 9, 1, NULL, '2011-08-06', '2011-08-08', 'Hi - can you call me on my cell phone at 231-883-5202? You are going to help make our decision of what we are going to do this weekend. My wife and my son want to stay at Trout Creek my daughter wants to go to Mac Island. Can you call me a with how much a 2 bedroom loft would be for sat and sun nite. You have our info on file. Thanks, Nick', '', NULL, '1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9570, '2011-08-02', 'Jim', 'Slater', '186 Lynn Ave.', 'Shreveport', 'LA', '71105', NULL, '318-861-3391', NULL, 'jimslater@comcast.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '76.107.1.19', true, NULL, NULL, NULL, NULL, NULL, NULL, ':11:22:16:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9571, '2011-08-03', 'Amy', 'Moran', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'amybixel@yahoo.com', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '170.128.174.152', true, NULL, NULL, NULL, NULL, NULL, NULL, ':15:29:17:12:6:11:23:25:2:4:14:18:22:16:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9572, '2011-08-04', 'Darian Lewis', 'Darian Lewis', 'derekjohnson.231@gmail.com', 'Charleroi', 'PA', '15022', NULL, NULL, NULL, 'derekjohnson.231@gmail.com', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.18) Gecko/20110614 Firefox/3.6.18 GTB7.1 (.NET CLR 3.5.30729)', '182.68.40.232', true, 2, NULL, 'We can increase rankings of your website in search engines. Please reply back for more details.', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9573, '2011-08-04', 'david', 'silbert', '4602 valleyview dr', 'west bloomfield', 'MI', '48323', NULL, '248-535-8359', NULL, '2silbert@gmail.com', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.107 Safari/535.1', '99.60.164.33', true, 6, NULL, 'are 8 lb pets allowed. are you on the lake. is there water & jet ski rental available.', '2011-08-13', '2011-08-20', NULL, ':15:29:12:6:22:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9574, '2011-08-05', 'David', 'Cournoyer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'dcournoyer33@gmail.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_5_8) AppleWebKit/534.50.2 (KHTML, like Gecko) Version/5.0.6 Safari/533.22.3', '66.41.77.87', false, 6, 5, NULL, '2011-08-24', '2011-08-27', NULL, ':22:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9575, '2011-08-05', 'mark', 'reuss', '6440 Hills Dr.', 'Bloomfield Hills', 'MI', '48301', NULL, '248-647-3958', NULL, 'mark_l_reuss@hotmail.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.50 (KHTML, like Gecko) Version/5.1 Safari/534.50', '68.42.220.168', false, 7, NULL, NULL, '2011-12-26', '2012-03-05', NULL, ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9576, '2011-08-08', 'Janet', 'Kusch', '21213 Francis Street', 'St. Clair Shores', 'MI', '48082', NULL, '(586) 295-6302', NULL, 'kuschj@pepperlaw.com', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322; AskTbORJ/5.12.3.17451)', '63.85.130.114', true, NULL, NULL, NULL, NULL, NULL, NULL, ':2:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9878, '2013-02-01', 'Paul', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'pjkardos@msn.com', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.17 (KHTML, like Gecko) Chrome/24.0.1312.57 Safari/537.17', '66.188.12.58', false, NULL, NULL, 'Availability for either Condo 1 or 2...', '2013-07-18', '2013-07-21', NULL, NULL, NULL, ':3:', '12', NULL, NULL, '12', '12', 'morning', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9577, '2011-08-13', 'stacey', 'smith', 'P O BOX 63', 'Avalon', 'NJ', '08202', NULL, '6098466331', NULL, 'stacey.a.smith@comcast.net', 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1', '76.116.126.246', true, NULL, NULL, NULL, NULL, NULL, NULL, ':12:25:2:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9184, '2009-11-11', 'Catherine', 'Womack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'orbitx7@sbcglobal.net', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)', '76.226.42.197', true, 9, 5, NULL, '2011-09-09', '2011-09-11', NULL, ':14:', NULL, '1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9578, '2011-08-16', 'Shelley', 'Swan', '2312 S. Parma Rd.', 'Parma', 'MI', '49269', NULL, '517-531-3476', NULL, 'sjswan@cmsenergy.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)', '67.59.61.153', true, NULL, NULL, NULL, NULL, NULL, NULL, ':15:12:23:25:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9480, '2011-01-24', 'Diane', 'Kalota', NULL, NULL, NULL, NULL, NULL, '248-302-6639', NULL, 'dkalota7@gmail.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '75.219.23.198', true, 9, NULL, NULL, '2011-09-02', '2011-09-05', 'My husband and I are thinking about coming up for Labor Day weekend any good packages you could offer us for the weekend? It is just the 2 of us we stayed before and really enjoyed it!', ':15:11:2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9579, '2011-08-20', 'Michael', 'DiGregorio', '450 Townhall Road', 'Metamora', 'IL', '61548', NULL, '3093691122', NULL, 'mdiggs@mtco.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '207.179.227.166', true, NULL, NULL, NULL, NULL, NULL, NULL, ':10:11:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9586, '2011-09-01', 'lynda', NULL, NULL, NULL, NULL, NULL, NULL, '2487199559', NULL, 'lbc48165@comcast.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; GTB7.1; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; InfoPath.1)', '65.185.130.113', false, 6, NULL, NULL, '2011-09-03', '2011-09-05', NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9580, '2011-08-21', 'Roger', 'Boughton', '2205 SW 10th Ave', 'Austin', 'MN', '55912', NULL, NULL, NULL, 'rwbought@smig.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; AskTbORJ/5.12.3.17451)', '216.188.220.62', true, NULL, NULL, 'WE are interested in rates for 09/17-09/20/2012.  We would be a part of 8 to 10 for three nights in September of 2012.', NULL, NULL, NULL, ':15:17:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9583, '2011-08-26', 'Glade', 'Lathrop', '569 Greenwood Ave se', 'East grand Rapids', 'MI', '49506', NULL, '616-776-0072', NULL, 'glade.lathrop@att.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; FunWebProducts; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; Zune 4.7)', '76.253.97.114', true, NULL, NULL, 'Ski deals or packages.\r
+Any with small dog welcome?', NULL, NULL, NULL, ':2:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9585, '2011-09-01', 'jonelle', 'Gillette', '42521 Amherst Ct.', 'Canton', 'MI', '48187', NULL, '734-667-3488', NULL, 'jgillette50@live.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_5_8) AppleWebKit/534.50.2 (KHTML, like Gecko) Version/5.0.6 Safari/533.22.3', '71.238.2.88', true, NULL, NULL, NULL, NULL, NULL, NULL, ':10:17:23:2:4:18:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9587, '2011-09-03', 'Dorrine  & Tim', 'McCormick', '1886 N Waldron Rd', 'Vestaburg', 'MI', '48891', NULL, '989-235-3564', NULL, 'dorikmc@yahoo.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; SynapseWorkstation.3.2.1)', '75.133.75.206', true, NULL, NULL, 'When do you start taking reservations for Summer 1012?', NULL, NULL, NULL, ':12:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9588, '2011-09-03', 'aj', 'sly', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'sail1boat@hotmail.com', 'Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2.21) Gecko/20110830 Firefox/3.6.21 ( .NET CLR 3.5.30729; .NET4.0C)', '66.227.132.253', true, NULL, NULL, NULL, NULL, NULL, NULL, ':3:12:11:23:2:14:18:22:24:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9982, '2013-06-06', 'Karen', 'Waligora', '16680 S Laurel Pk Dr', 'Livonia', 'MI', '48154', NULL, NULL, NULL, 'sci419@twmi.rr.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/536.30.1 (KHTML, like Gecko) Version/6.0.5 Safari/536.30.1', '97.71.21.33', true, NULL, NULL, NULL, NULL, NULL, NULL, ':10:17:12:23:4:18:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9589, '2011-09-06', 'Jennifer', 'Howard', '7504 Majestic Woods Drive', 'linden', 'MI', '48451', NULL, '810-287-0598', NULL, 'modern_jennifer@comcast.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0)', '75.144.87.165', false, 9, 6, NULL, '2011-10-08', '2011-10-09', 'We r coming in for a soccer game and have heard many good things about your resort.  The would be 10 or 11 of us total.', ':14:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9590, '2011-09-07', 'Jim', 'Schwark', '20840 26 Mile Rd', 'Macomb', NULL, '48042', NULL, '5867496265', NULL, 'jimschwark@yahoo.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322)', '69.39.68.210', true, NULL, NULL, NULL, NULL, NULL, NULL, ':10:17:12:23:18:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9591, '2011-09-07', 'Brian', 'Asselin', '3879 Northview dr.', 'petoskey', 'MI', '49770', NULL, '2318388478', NULL, 'briasselin@yahoo.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0; yie9)', '67.161.88.111', true, NULL, NULL, NULL, NULL, NULL, NULL, ':10:24:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9592, '2011-09-11', 'Amy', 'Salter', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'amyandsteve93@yahoo.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; yie9)', '68.60.176.58', false, 8, NULL, NULL, NULL, NULL, 'Please help.....my family and I were at your beautiful condos this weekend for my son''s soccer tournament.  We stayed in unit 49 under the last name of Gertz. Apparently in our rush to leave today, we forgot a few treasures...in a closet by the front door we left an orange swimming suit, dark green Dukes Of Hazard tshirt, and green towel. In the bedroom with king size bed (by the sink area perhaps) a bag of goodies purchased from Mackinaw City with an orange raincoat, tie dye sweatshirt, and dog statue purchased for a birthday present.  I will be happy to pay for shipping to get the items returned to us.  Please let me know if/when you discover these items.  I have two devestated kids that I hope we can make happy again!!!!!!', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9594, '2011-09-15', 'Michelle', 'Wylie', NULL, 'Sarnia', 'ON', 'N7S6M4', NULL, NULL, NULL, 'wylie5@cogeco.ca', 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_8; en-us) AppleWebKit/533.19.4 (KHTML, like Gecko) Version/5.0.3 Safari/533.19.4', '72.39.200.107', false, 7, 4, 'Hi there we contacted you earlier in the year regarding long term ski rentals.We are a ski family with 3 kids who will race with Nubs Nob. We are looking to secure a long term/ seasonal rental from Dec- March, could you let me know if you may have anything available', NULL, NULL, NULL, ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3844, '2005-10-26', 'suzee', 'wieckowski', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'suzee1976@comcast.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; .NET CLR 3.0.30729; .NET4.0C)', '71.205.157.226', true, 9, 6, 'see above in please specify box!', '2012-10-07', '2012-10-11', 'I am wondering if these dates which I think are arriving on Sun 10-7-12, leaving on Thurs 10-11-12/ 1st off are ava. /second cost and third when the season for the off season rate begins. We use to come up every year for about 15-18 years straight had to give it up for a bit but everyone wants to start the tradition up again. Always loved it up there. If you could give me this information I would app. it./ we would need both 5 bedroom condos! Thank you Suzee', '', false, '1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7576, '2008-11-10', 'John', 'Dennis', '703-2000 Regent St.', 'Sudbury', 'ON', 'P3E 5T5', NULL, '705-522-8940', NULL, 'jonden@hotmail.com', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:6.0.2) Gecko/20100101 Firefox/6.0.2', '208.96.66.83', true, 8, NULL, 'I have written you 2 or 3 time about booking the 5 bedroom Condo for next May and have not even received any indication that you have read my email.\r
+John Dennis', NULL, NULL, 'I am an old customer', ':3:', NULL, '1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7746, '2009-02-02', 'anna', 'Coulter', '498 Wimbleton Drive', 'Birmingham', 'MI', '48009', NULL, '248-761-6553', NULL, 'acoulter@guardian.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; HPDTDF; BRI/1; .NET4.0C)', '98.224.244.73', true, 4, 6, NULL, '2011-12-28', '2012-01-01', 'We are interested in seeing if condo 1 or 2 are available.  If so, how much for above dates?', ':2:', NULL, '1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9595, '2011-09-17', 'Stephanie', 'VanDeventer', '7378 Winding lake Circle', 'OVIEDO', 'FL', '32765', NULL, '4072764572', NULL, 'reidv8@aol.com', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.220 Safari/535.1', '97.100.157.153', true, 8, 2, 'Dear Trout Creek,\r
+\r
+Our budget is $2000.00 for 13 nights. Would it be possible to accomodate us? We are a family of 4, 2 adults 2 children, aged 13 and 9 and very conscientious renters. As a matter of fact, we just sold our home on Crooked River so we are renting until we but another property.', '2011-12-22', '2012-01-02', 'Been Skiing Nubs Nob the past 10 years.', ':25:2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9596, '2011-09-20', 'Cheri', 'Loudenbeck', '9011 Round Lake Rd', 'Laingsburg', 'MI', '48848', NULL, '517-351-1278', NULL, 'cloudenbeck@thesterlinggrp.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C)', '24.56.253.11', true, NULL, NULL, NULL, NULL, NULL, NULL, ':17:12:11:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9600, '2011-09-27', 'tammy', 'fayson', '20109 Fenmore', 'Detroit', 'MI', '48235', NULL, '313-563-3378', NULL, 'tammy.fayson@yahoo.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '12.90.49.170', true, NULL, NULL, 'I want to know if ice fishing is available during the winter months?', NULL, NULL, NULL, ':6:25:4:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9597, '2011-09-21', 'Candi', 'Thayer', '3140 Happy Valley', 'Jackson', 'MI', '49203', NULL, '517 768-0161', NULL, 'charlieedu@yahoo.com', 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_8; en-us) AppleWebKit/531.9 (KHTML, like Gecko) Version/4.0.3 Safari/531.9', '69.128.90.166', true, 8, NULL, NULL, NULL, NULL, 'Im interested in a winter seasonal rental.  Can you please tell me what is available, what the dates and terms are and if you also have month to month rental.', ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9598, '2011-09-21', 'Lorena', 'Flores', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'florlorena@gmail.com', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 3.0.30729; .NET CLR 3.5.30729; .NET4.0C; MS-RTC LM 8)', '137.200.0.106', false, 6, NULL, 'I''m looking for a time to scrapbook and saw the scrapbooking weekend coming up in october. Is that still available, and if it is, I''m by myself, what are the prices per person (don''t necessarily mind sharing with other people)', NULL, NULL, NULL, ':20:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9808, '2012-10-16', 'Stacy', 'Babb', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'stacybabb2@gmail.com', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.5) Gecko/20091102 Firefox/3.5.5 GTB7.1', '182.68.35.204', true, 6, NULL, 'We offer $ 99 per month quality Search Engine Optimization / SEO Services and Internet Marketing Solutions. Our dedicated team of SEO Professionals ensures Top 10 search engine rankings. Please reply to this email so we can send you more details.', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9602, '2011-10-07', 'Marianne', 'Hauswirth', '583 north old woodward', 'Birmingham', 'MI', '48009', NULL, '2488929512', NULL, 'Mhauswirth3@Gmail.com', 'Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_3 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J2 Safari/6533.18.5', '198.228.227.2', false, 4, NULL, NULL, '2011-12-21', '2011-12-24', 'I am looking for two  to three units two that can sleep six one that sleeps 4', ':12:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9603, '2011-10-13', 'Alicia', 'Elie', NULL, NULL, 'MI', '48197', NULL, '602-577-2623', NULL, 'alicia.loves.31@gmail.com', 'Mozilla/5.0 (Windows NT 6.1; rv:7.0.1) Gecko/20100101 Firefox/7.0.1', '98.250.171.30', true, 4, NULL, NULL, NULL, NULL, NULL, ':20:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9622, '2011-11-28', 'james', 'ward', '39876 woodside dr s', 'northville', 'MI', '48168-3425', NULL, '2489741502', NULL, 'brushrunabout@aol.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '76.192.60.32', true, 6, NULL, 'Need estimate of cost of lift tickets and rentalts for adults and those under 18 for MLK weekend. Need to know if there is shuttle to locat slopes. Please give me a call. 248 974 1502. I need to know on 29Nov if our budget can work here or if we have to stay further out.  Thanks, Jim', '2012-01-13', '2012-01-16', 'Need room for 16 to 20 person boy scout troop.', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9604, '2011-10-18', 'Edna', 'Hewitt', '3833 Ravine Hollow Court', 'Maumee', 'OH', '43537', NULL, '4198671906', NULL, 'ejhewitt40@gmail.com', 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1', '24.52.72.220', true, NULL, NULL, NULL, NULL, NULL, NULL, ':15:29:10:17:2:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9605, '2011-10-19', 'Pam', 'MIller', '13646 73rd St.', 'South Haven', 'MI', '49090', NULL, '269 637-2937', NULL, 'dogdoc@btc-bci.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; WOW64; Trident/5.0; FunWebProducts; yie9)', '50.37.55.248', true, NULL, NULL, NULL, NULL, NULL, NULL, ':29:10:12:20:18:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9606, '2011-10-20', 'Steve', 'Pronger', '2480 Buckingham Dr.', 'Windsor', 'ON', 'N8T 2B5', NULL, '519-890-6012', NULL, 'stevepronger@ymail.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; HPNTDF; .NET4.0C)', '24.57.199.12', true, 9, 5, NULL, '2012-01-01', '2012-01-06', 'Would like a 5 night ski week from Jan 1 through Jan 6. Saw the special on website.\r
+Please send pricing and availability  - thanks', ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9607, '2011-10-22', 'Gary', 'Landless', '63160 E. Charleston Drive', 'Washingtn Twp', 'MI', '48095', NULL, '5862075939', NULL, 'glandless@gmail.com', 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1', '24.11.28.104', false, 9, 2, NULL, '2012-08-23', '2012-08-26', '"m in the process of setting up a 20/24 golfer weekend outing in late August 2012.  We will arrive Thursday morning 8/23 and play 18 holes and depart after golf and lunch on \r
+Sunday 8/26.  Please email me any information you can to help in determining where our 2012 outing will be held.\r
+Regards,\r
+Gary landless\r
+glandless@gmail.com', ':11:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9608, '2011-10-22', 'Mittie', 'McMaster', '1180 E. Forest Ave.', 'Ypsilanti', 'MI', '48198', NULL, NULL, NULL, 'Mitster@aol.com', 'Mozilla/5.0 (Windows NT 6.0; WOW64; rv:7.0.1) Gecko/20100101 Firefox/7.0.1', '68.42.115.162', true, NULL, NULL, NULL, NULL, NULL, NULL, ':11:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9609, '2011-10-28', 'joe', 'trzcinski', '940 LEIDICH ST', 'LAKE ORION', 'MI', '48362', NULL, '2484109579', NULL, 'askjoet@yahoo.com', 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/535.2 (KHTML, like Gecko) Chrome/15.0.874.106 Safari/535.2', '68.73.56.39', true, 9, NULL, NULL, '2011-12-30', '2012-01-02', 'Would like same unit from last year (next to Shepplers). Please email as to cost and availability.', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9610, '2011-10-30', 'Nancy', 'Faught', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Nfaught@hrc-engr.com', 'Mozilla/5.0 (iPad; U; CPU OS 4_2_1 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8C148 Safari/6533.18.5', '71.238.25.13', true, 8, 1, NULL, '2011-12-29', '2012-01-02', 'Been there before', ':12:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9611, '2011-11-02', 'Mary', 'Marble', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'mmarblelaf@gmail.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB7.1; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; .NET CLR 1.1.4322)', '24.236.148.34', false, 6, NULL, NULL, NULL, NULL, 'I was wondering how many people attend your scrapbook weekends and if you have vendors there during the weekend.', ':20:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9612, '2011-11-03', 'Mike', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'mkmcalister@gmail.com', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC LM 8; MS-RTC S; InfoPath.2)', '199.43.32.81', true, NULL, NULL, NULL, NULL, NULL, NULL, ':11:2:4:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9613, '2011-11-07', 'Sandra', 'Johnson', '3872 Village Circle Dr', 'Traverse City', 'MI', '49686', NULL, '231-938-1220', NULL, 'ksnjohn@chartermi.net', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; WOW64; Trident/5.0; FunWebProducts)', '97.83.127.138', true, 6, NULL, NULL, NULL, NULL, 'I rented #144 from your online from 12-27-11to 12-30/11. The map says building #22 and I do not see a Bldg#22.  Can I also get pictures since they were not yet posted.  Thank you!  Hopefully, we get plenty of snow "that week".', ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9614, '2011-11-08', 'Amanda', 'Therrien', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'amtherrien85@gmail.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; .NET4.0C; .NET4.0E)', '12.18.245.220', false, 7, NULL, NULL, '2011-12-30', '2012-01-01', 'I would like a rate for a 1 bedroom. \r
+\r
+Thanks!', ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9615, '2011-11-08', 'Karl', 'Gugel', '6001 NW 47th Place', 'Gainesville', 'FL', '32653', NULL, '(352) 281-7907', NULL, 'kgb@digitalcontrollab.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_2) AppleWebKit/534.51.22 (KHTML, like Gecko) Version/5.1.1 Safari/534.51.22', '70.171.44.241', false, 8, 4, 'I am looking for a two bedroom rental unit in Harbor Springs (see list below) for the nights of December 22nd through December 30th (8 nights).  i.e. check-in: 12/23 and check-out: 12/31.    I am originally from Michigan and plan to take my family on a holiday in this area.  \r
+- best regards, Karl', '2011-12-23', '2011-12-30', 'Google search', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10093, '2013-10-18', 'Chad', 'Gascho', '58164 Steiner Dr.', 'Goshen', 'IN', '46528', NULL, '574-971-6681', NULL, 'chad@conradgrebel.com', 'Mozilla/5.0 (iPad; CPU OS 7_0_2 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A501 Safari/9537.53', '54.242.19.240', true, 6, 3, NULL, '2013-10-25', '2013-10-27', 'Looking to come up next weekend for a quick family getaway.  We have three kids, 14, 12, 6.  What might you recommend for accommodations and what are your rates?', ':12:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9617, '2011-11-13', 'kimberly', 'louis', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'kimberlylouis@mac.com', 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; en-US; rv:1.9.2.4) Gecko/20100611 Firefox/3.6.4', '99.120.121.62', true, 4, 6, NULL, '2011-12-30', '2012-01-03', 'I need a 5 bedroom or a three bedroom!  Do you have anything available?  I need multiple units as well', ':12:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9619, '2011-11-16', 'Robert', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'bob.stew@yahoo.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; MAAU; .NET4.0C)', '71.238.130.223', false, 4, 6, NULL, '2011-12-30', '2012-01-01', NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9620, '2011-11-21', 'Emily', 'Moceri', NULL, NULL, NULL, NULL, NULL, '248-752-5308', NULL, 'elmoceri@gmail.com', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; InfoPath.2; MS-RTC LM 8; managedpc)', '167.242.5.237', false, 9, NULL, 'Hello,\r
+\r
+I''ve stayed at Trout Creek in the past, and was wondering if you had any rental availability for December 29, 2011 through January 1, 2012? Please let me know which size units and pricing if you have availability.\r
+\r
+Thanks!', NULL, NULL, NULL, ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (2172, '2004-10-22', 'Rhonda', 'McIntosh', '9828 N. SR 101', 'Decatur', 'IN', '46733', NULL, '260-223-3427', NULL, 'rmcintosh@co.adams.in.us', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0)', '67.236.55.195', true, 9, NULL, NULL, NULL, NULL, 'We reserved a condo for this time and we will need to cancel.  Something came up with some of the couples and we are unable to go to MI this year:(  We will definitely miss it.  Thank you   Rhonda', ':23:2:', NULL, '1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9623, '2011-11-29', 'Jennifer', 'Vanderklok', '2818 east shore', 'Portage', 'MI', '49002', NULL, '269-760-8722', NULL, 'Jentennrn@gmail.com', 'Mozilla/5.0 (iPad; CPU OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A405 Safari/7534.48.3', '24.247.145.101', true, NULL, NULL, NULL, NULL, NULL, NULL, ':2:4:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9624, '2011-11-29', 'Joe', 'Custer', '5425 Parkgrove Rd', 'Ann Arbor', 'MI', '48103', NULL, '734 6632014', NULL, 'joecusumich@gmail.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.51.22 (KHTML, like Gecko) Version/5.1.1 Safari/534.51.22', '98.250.105.133', true, 4, 1, NULL, NULL, NULL, 'Hi guys  planning annual trip with my son    when are holiday days and rates??? for christmas new year season', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3824, '2005-10-26', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'cvklok@hotmail.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E; 89970654803; system:4.02220)', '75.133.66.210', true, NULL, NULL, NULL, '2005-10-26', '2005-10-26', '', '', false, '2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9626, '2011-11-30', 'Homer', 'Castaneda ', 'East Congress Street', 'Tucson', 'AZ', '85701', NULL, NULL, NULL, 'homercastanedaa13@gmail.com', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.24) Gecko/20111103 Firefox/3.6.24 GTB7.1', '182.68.202.178', true, 1, 6, 'It’s an old truth:  people won’t beat a path to your door if they don’t know where your door is.  If you’re high on the Google list, the door to your business is right there to see and to use.  We can improve your rankings so the door stays open.  Email us now and we’ll tell you how our expert Search Engine Optimization staff can provide you with the key.', '2012-01-01', '2011-01-02', 'It’s an old truth:  people won’t beat a path to your door if they don’t know where your door is.  If you’re high on the Google list, the door to your business is right there to see and to use.  We can improve your rankings so the door stays open.  Email us now and we’ll tell you how our expert Search Engine Optimization staff can provide you with the key.', ':15:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9627, '2011-11-30', 'Maggie', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'mwilkinson6@yahoo.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)', '12.219.49.66', true, 9, NULL, NULL, '2012-06-15', '2012-06-17', 'I''m looking for your prices on the units during the soccer tournamnet 6/15-6/17 in 2012.  Did I miss them on your website?  could you either send those prices to me or tell me where I could find them.\r
+\r
+thank you very much', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9628, '2011-11-30', 'Tracy', 'Nowicki', NULL, NULL, 'MI', NULL, NULL, NULL, NULL, 'nowicki@centurytel.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MAAU; .NET4.0C)', '174.124.252.218', true, 6, NULL, 'I am interested in the scrapbooking retreat weekend in March of 2012 and wondered if you could give me a quote for a one bedroom unit for two people for the weekend, including Thursday (which is no additional charge from what I understand).  Also wondering how soon in advance reservations need to be made.  Thank you for your time.', NULL, NULL, NULL, ':20:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9629, '2011-12-02', 'Heidi', 'Wakley', '1745 East Hickory Rd', 'Battle Creek', 'MI', '49017', NULL, NULL, NULL, 'wakley5@yahoo.com', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.51.22 (KHTML, like Gecko) Version/5.1.1 Safari/534.51.22', '208.31.142.32', true, NULL, NULL, NULL, NULL, NULL, NULL, ':12:14:18:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9630, '2011-12-03', 'George', 'Renaud', '170 Hampshire', 'Troy', 'MI', '48085', NULL, '2482245240', NULL, 'grenaud11@yahoo.com', 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/535.2 (KHTML, like Gecko) Chrome/15.0.874.121 Safari/535.2', '99.113.52.123', true, 4, NULL, NULL, '2011-12-27', '2011-12-29', 'We are looking for either a 2 bedroom unit, or 2 1 bedroom units - 2 families - 4 adults, 3 kids under 9.\r
+Please give me a call to discuss - thanks!', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9633, '2011-12-09', 'John', 'Jackson', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'jjackson@mcka.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MDDR; .NET4.0C; XF_mmhpset)', '75.147.242.53', true, 4, 1, NULL, '2011-12-28', '2011-12-30', NULL, ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9636, '2011-12-13', 'Diane', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'dlawniczak@sbcglobal.net', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '69.14.201.4', false, 6, NULL, NULL, '2011-12-29', '2012-01-01', 'We have 10 people..a mix of adults and kids', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9638, '2011-12-14', 'Aaron', 'Krieger', '1109 E Cambourne', 'Ferndale', 'MI', '48220', NULL, '2484954330', NULL, 'aaron.s.krieger@gmail.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.63 Safari/535.7', '67.152.244.178', true, 9, 5, NULL, '2011-12-24', '2011-12-26', NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9631, '2011-12-06', 'Emma', 'Tuskey', '380 Westchester', 'Saginaw', 'MI', '48638', NULL, '989 284-3814', NULL, 'emmatuskey@yahoo.com', 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_7; en-us) AppleWebKit/533.20.25 (KHTML, like Gecko) Version/5.0.4 Safari/533.20.27', '35.11.191.240', true, 8, 4, 'Hi, I have a couple of questions and hope this is the right way to ask them. I''m trying to plan a ski trip for me and a few friends. We found your website online and this looks like a great place for us. We would have about 4-6 of us. We are all sophomores in college, between the ages of 19-20, would you still rent to us? We are all very responsible. Currently a lot of places will not give us a room because we are not 21. I hope you will still allow us to. Also what are you rate for the New Years Eve weekend? Thats the weekend we would really want to come, but we''re also looking at the Jan. 6-8 weekend special as well.  I will probably be calling tomorrow. Thanks!', '2011-12-28', '2012-01-01', NULL, ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9632, '2011-12-07', 'Chris', 'Yee', '22230 Violet', 'St. Clair Shores', 'MI', '48082', NULL, '586-879-6341', NULL, 'chris@interlakesbases.com', 'Mozilla/5.0 (Windows NT 5.1; rv:8.0) Gecko/20100101 Firefox/8.0', '99.17.69.231', true, 9, 1, NULL, '2012-02-03', '2012-02-05', NULL, ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9917, '2013-03-04', 'Debbie', 'Crane', NULL, NULL, NULL, NULL, NULL, '705-966-3589', NULL, 'phillip.crane021@sympatico.ca', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0)', '70.49.43.165', true, NULL, NULL, 'we would like to golf the boyne mountain in the am to possibly golf the two courses.  we would like to golf at the highlands...the heather, the a. hills', '2013-09-01', '2013-09-06', NULL, NULL, NULL, ':3:', '4', NULL, '2', NULL, '4', 'morning', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9635, '2011-12-13', 'MELISSA', 'WEBB', '53218 BUTTERNUT ST', 'CHESTERFIELD', 'MI', '48051', NULL, '313-598-4760', NULL, 'SPYDERWEBB4771@YAHOO.COM', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)', '69.215.26.194', true, 9, 4, NULL, '2012-02-16', '2012-02-19', 'I''VE BEEN COMING TO TROUT CREEK FOR THE LAST 2 YEARS WITH THE "MAC 10" SKI GOUP AND ABOLUTELY LOVE IT!!!  THINKING ABOUT BRINGING MY 10 YR OLD SON UP DURING THE WINTER FOR WINTER BREAK.  COULD YOU PLEASE GIVE ME THE PRICE FOR A 1 BEDROOM AS WELL.  THANKS!\r
\r
+MELISSA WEBB', ':23:25:2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9637, '2011-12-13', 'Rose', 'Heys', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'rose.heys@att.net', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0; yie8)', '99.121.118.134', false, 4, NULL, 'I just made reservations and would like something in writing showing which condo we reserved.  Please e-mail me this information.  My confirmation number is 87590 and guest number is 40306.  Thank you', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9639, '2011-12-15', 'Jeannette', 'McCoy', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'jmccoy@dcsbiz.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SearchToolbar 1.2; GTB7.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MDDR)', '207.148.206.154', false, 6, NULL, 'I am interested in booking a corporate trip for the weekend of February 10-12th.  We would like to be able to ski at Boyne Highlands and stay, closely arranged condos on your property if possible.  Can you please let me know first, what the transportation would be like from your site to the Highlands as well as if you could accomidate a group of about 40ppl for lodging?\r
+\r
+Thank you!  \r
+Jeannette', NULL, NULL, NULL, ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9640, '2011-12-15', 'jennifer', 'shea', '4645 wind ridge ct', 'rochester', 'MI', '48306', NULL, '2486500169', NULL, 'jenkshea@aol.com', 'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.6; AOLBuild 4340.5004; Windows NT 6.1; WOW64; Trident/4.0; GTB7.2; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; BRI/1; BRI/2)', '76.112.19.8', true, 9, 4, NULL, '2011-12-27', '2011-12-30', 'Hello, was wondering if you have availability for a family of 5- 2 adults and 3 children for 3 nights?', ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9887, '2013-02-07', 'Hilda', 'Wittingen', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'hwittingen@acecomgroup.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)', '72.35.32.9', false, 4, NULL, NULL, NULL, NULL, 'This is Hilda, Tracie''s friend, please ask Tracie to call me on my cell when she gets home: 616-826-8003.  My cell phone went crazy lost a bunch of my contacts including her\r
+:-(   Thanks!', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9641, '2011-12-18', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'rwelper@comcast.net', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '68.41.88.23', true, NULL, NULL, NULL, NULL, NULL, NULL, ':17:12:11:2:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9642, '2011-12-19', 'Crystal', 'Popour', '8495 E. Chippewa Trail', 'Mt Pleasant', 'MI', '48858', NULL, '9897739002', NULL, 'capopour@gmail.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E; .NET CLR 1.1.4322; InfoPath.3)', '50.42.139.70', true, 6, 3, NULL, '2011-12-28', '2012-01-02', 'We are looking for two bedrooms one with twin beds.', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9643, '2011-12-23', 'jenny', 'crowe', '1512 Tanglewood', 'LAFAYETTE', 'IN', '47905', NULL, NULL, NULL, 'jennym31@yahoo.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; GTB7.2; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; .NET CLR 3.5.30729; MDDC; .NET CLR 3.0.30729; .NET4.0C; BRI/2)', '98.223.39.41', true, 6, 5, NULL, '2012-02-04', '2012-02-07', NULL, ':25:2:4:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9644, '2011-12-27', 'Ramon', 'Elliot', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'ramonelliot003@gmail.com', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.25) Gecko/20111212 Firefox/3.6.25 GTB7.1 (.NET CLR 3.5.30729)', '182.68.91.45', true, 1, NULL, 'You know how important it is to be visible.  You know you need to use the internet better.  But you also need to take care of your business.  You can’t do both.  Well, you take care of your business… we’ll take care of the internet for you.  Our expert staff understands how to make search engines your friend.  Email us and we’ll get started.', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9645, '2011-12-28', 'Karen', 'Sladewski', '43374 Hillsboro Dr', 'Clinton Township', 'MI', '48038', NULL, '586-419-5444', NULL, 'ksladewski@bcbsm.com', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1; MS-RTC LM 8; .NET4.0C)', '12.176.249.231', true, 9, 1, 'Please let me know how much each condo will cost. Then I can call to reserve', '2012-02-03', '2012-02-05', 'I would like to reserve Condo # 111 for my brother Chris Yee and #113 for myself. Chris has spoken with NIkki Johnson', ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9646, '2011-12-28', 'Cheryl', 'Rincon', '3130 Macon st.', 'Portage', 'IN', '46368', NULL, '219-762-7464', NULL, 'spydrwomyn2@msn.com', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; MSN 9.0;MSN 9.1;MSN 9.6;MSN 10.0;MSN 10.2; MSNbMSNI; MSNmen-us; MSNcOTH)', '98.213.168.162', true, 6, 5, 'looking at condo #45. Do you still have available and what would it cost for two for a three night stay?', '2012-01-19', '2012-01-22', NULL, ':25:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9647, '2011-12-28', 'Teresa', 'Cross', '4128 Lafayette blvd.', 'Lincoln Park', 'MI', '48146', NULL, NULL, NULL, 'mtacross@yahoo.com', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; GTB7.2; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; eSobiSubscriber 2.0.4.16; .NET4.0C; BRI/1; BRI/2)', '67.149.24.94', true, NULL, NULL, NULL, NULL, NULL, NULL, ':12:2:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9961, '2013-04-24', 'Paul', 'Reasoner', NULL, NULL, NULL, NULL, NULL, '574-264-7304', NULL, 'reasoner@compasswa.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '64.255.120.152', true, NULL, NULL, NULL, '2013-09-10', '2013-09-15', NULL, NULL, NULL, ':3:', '2', NULL, '1', NULL, '2', 'twilight', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9648, '2011-12-29', 'Laura', 'Hayes', NULL, NULL, NULL, NULL, NULL, '3129613476', NULL, 'laurajhayes@gmail.com', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:8.0.1) Gecko/20100101 Firefox/8.0.1', '99.177.130.79', true, 4, 5, 'I''m getting married in Good Hart on June 23 and would like to refer my guests to Trout Creek to reserve condos during their stay. Can you set up a wedding block or offer special rates or promo codes for the group? Please let me know what options are available. Thank you!', '2012-06-22', '2012-06-24', 'My parents are local residents.', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9649, '2011-12-29', 'Tracey', 'Herrig', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'therrig@comcast.net', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '75.73.245.38', true, 6, 4, 'What are your summer weekly rental rates?', NULL, NULL, NULL, ':12:22:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9650, '2011-12-29', 'Michele', 'Quigley', '9364 Robb Road', 'Fowlerville', 'MI', '48836', NULL, '517-294-3475', NULL, 'mjq@fnwusers.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; GTB7.2; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.1; .NET4.0C)', '76.247.146.195', true, 9, NULL, 'My daughter played with a travel softball team that stayed there a few years ago and we are looking to return with our local tournament team; wasn''t sure if there are group rates available. We have 12 on our team; thinking we would need at least 8 or 9 condo''s...', '2012-08-04', '2012-08-07', NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9714, '2012-04-22', 'Kevin', 'Surdu', '13608 Irvington Ct.', 'Warren', 'MI', '48088', NULL, '5866900013', NULL, 'oneoftwo@live.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '68.43.158.194', true, 9, 4, NULL, '2012-05-13', '2012-05-15', NULL, ':12:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9652, '2011-12-31', 'sharon', 'claye', '6963 Sandalwood Drive', 'Bloomfield Hills', 'MI', '48301', NULL, '586 770 0038', NULL, 'sclaye@ameritech.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '71.205.81.78', true, 6, 5, NULL, '2012-01-27', '2012-01-29', NULL, ':2:4:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9653, '2012-01-05', 'Anna', 'Reynolds', '9008 Alden Nash SE', 'Alto', 'MI', '49302', NULL, '616-868-7442', NULL, 'annareynolds@cfaith.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; WOW64; Trident/5.0; FunWebProducts)', '166.249.96.209', true, NULL, NULL, NULL, NULL, NULL, NULL, ':15:10:17:12:23:4:18:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9654, '2012-01-09', 'jay', 'shugarsw', NULL, NULL, 'MI', '49067', NULL, '2695870355', NULL, 'jayshugars@netzero.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '68.60.127.85', true, 6, NULL, 'Do the condos have linens and cooking pans', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9655, '2012-01-10', 'Jason', 'Ribits', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'jeribits@yahoo.com', 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.4; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13', '68.42.190.26', true, NULL, NULL, NULL, NULL, NULL, NULL, ':29:10:17:12:11:23:2:4:18:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9656, '2012-01-10', 'Lisa', 'Clark', NULL, NULL, 'ON', NULL, NULL, NULL, NULL, 'gregandlisaclark@yahoo.ca', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '67.68.12.121', true, NULL, NULL, NULL, NULL, NULL, NULL, ':29:2:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9657, '2012-01-11', 'Melinda', 'Schultz', '2155 Butternut Drive', 'Okemos', 'MI', '48864', NULL, '517-525-1436', NULL, 'mrsjas305@sbcglobal.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; GTB7.2; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; .NET CLR 3.5.30729; MDDC; .NET CLR 3.0.30729; .NET4.0C)', '75.198.89.221', true, 9, 1, 'Are pets allowed?', '2012-02-17', '2012-02-20', NULL, ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9658, '2012-01-11', 'Christa', 'Schroer', '410 S. washington St', 'New Bremen', 'OH', '45869', NULL, '419-305-9698', NULL, 'sunny.warm123@yahoo.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SearchToolbar 1.2; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; BRI/1; .NET4.0C; BRI/2)', '98.28.46.246', true, NULL, NULL, NULL, NULL, NULL, NULL, ':15:23:25:2:4:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9659, '2012-01-15', 'anne', 'hillstrom', '33 cloudy lake rd', 'Echo  Bay', 'ON', 'p0s 1c0', NULL, '705-248-3245', NULL, 'anhillstrom@hotmail.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; BOIE9;ENCA)', '184.151.63.165', true, 9, 1, NULL, '2012-02-18', '2012-02-24', 'we would like to be close to indoor outdoor pool if it is open or near indoor pool if not\r
+we are 4 adults 3 children', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9660, '2012-01-15', 'Beth Anne', 'Gruizinga', '404 Elliott St.', 'Grand Haven', 'MI', '49417', NULL, '2315575834', NULL, 'bagruizinga@gmail.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '24.247.98.207', true, 9, 1, 'Are pets allowed?', '2012-01-21', '2012-01-23', NULL, ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9661, '2012-01-15', 'jacqueline', 'oshea', '2567  franklin park dr', 'sterling  hgts', 'MI', '48310', NULL, '586 826-8768', NULL, 'jackieaoshea@yahoo.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.4; OfficeLivePatch.1.3; BRI/2; AskTbX-SD/5.12.5.17640; Creative ZENcast v2.00.14; BO1IE8_v1;ENUS)', '69.14.73.56', true, NULL, NULL, NULL, NULL, NULL, NULL, ':15:10:17:12:18:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9662, '2012-01-17', 'STACY', 'KLEIN', '1885 HILTS RD', 'GLADWIN', 'MI', '48624', NULL, NULL, NULL, 'SLKLEIN@NETZERO.NET', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:8.0) Gecko/20100101 Firefox/8.0', '71.83.6.218', true, NULL, NULL, NULL, NULL, NULL, NULL, ':17:12:4:20:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9663, '2012-01-18', 'Rebecca', 'Cecconi', '1010 South Hemlock St.', 'Iron Mountain', 'MI', '49801', NULL, '906-779-9079', NULL, 'bcecconi@charter.net', 'Mozilla/5.0 (Windows NT 6.0; rv:9.0.1) Gecko/20100101 Firefox/9.0.1', '24.231.137.68', true, 9, 6, 'We usually won''t know if we are coming down for sure until 10 days prior...but I don''t want to wait that long and risk not getting the unit we prefer.  Can you accommodate us?', '2012-02-25', '2012-02-27', 'I would like to know if Condo 2 or 1 is available?  Also #32?  What kind of package can you provide?  What is the cancellation policy?', ':11:2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9664, '2012-01-23', 'Alfreda', 'Henley', '37848 Dale Dr Apt 102', 'Westland', 'MI', '48185', NULL, '313 585-7501', NULL, 'alfredahenley@aol.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; WOW64; Trident/5.0)', '69.245.123.73', true, NULL, NULL, NULL, NULL, NULL, NULL, ':15:29:17:3:12:6:23:25:2:4:18:22:16:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4073, '2006-04-19', 'rick', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'rfish1@yahoo.com', 'Mozilla/5.0 (Windows NT 6.0; rv:9.0.1) Gecko/20100101 Firefox/9.0.1', '68.43.232.89', false, 9, NULL, NULL, NULL, NULL, 'Just wondered if pets are welcome at any of your cndos. We have a dog (40lbs)', '', false, '1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9665, '2012-01-25', 'john', 'strudgeon', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'gruin1958@yahoo.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; IEMB3; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; BRI/2; yie8)', '24.31.176.229', true, 6, NULL, NULL, NULL, NULL, NULL, ':11:4:22:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9666, '2012-01-25', 'Richard', 'Anderson', '2536 Alveston Dr', 'Bloomfield Hls', 'MI', '48304', NULL, '(248) 229-4293', NULL, 'richard1161@sbcglobal.net', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Win64; x64; Trident/5.0)', '108.72.92.236', true, 4, NULL, 'Seeking lodging for family ski vacation for 6 adults and 4 kids.  4 adult skiers & 3 kids need school.  Dates are flexible by one day.', '2012-02-19', '2012-02-26', NULL, ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9667, '2012-01-26', 'Michelle', 'Pawloski', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'michelle_pawloski@yahoo.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '67.149.57.226', false, 9, NULL, NULL, NULL, NULL, 'We are looking to rent in July.  I was wondering do owners give any discounts for AARP members or state employees.  Thanks!', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9668, '2012-01-30', 'Melissa', 'Miller', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'melnsteve4847@gmail.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:9.0.1) Gecko/20100101 Firefox/9.0.1', '207.72.48.100', false, 9, NULL, 'I am wondering your rates for the soccer tournament in June (I am team manager for two teams). We have stayed in previous years. We are from the SWM Select Soccer Club', NULL, NULL, NULL, ':14:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9669, '2012-01-30', 'Kevin', 'Wofford', '21536 hillside Dr', 'Clinton Township', 'MI', '48035', NULL, '586-260-0741', NULL, 'kevin@ptwoody.com', 'Mozilla/5.0 (Windows NT 6.0; rv:8.0.1) Gecko/20100101 Firefox/8.0.1', '69.14.114.176', true, 4, NULL, NULL, '2012-03-10', '2012-12-01', 'This year we plan on supporting the following 2 charities:Blue Star Mothers,Blue Star Mothers work with Operation Wounded Warrior; Send needed supplies to Germany, Iraq and Afghanistan*;  Supply Hospital Reps/Deputies; Their mothers volunteer thousands of hours at the Dingell VA Hospital in Detroit; Support Operation Cupid Operation PEEPS Quilt-A-Thons – where 100''s of quilts have been sent to wounded warriors around the world;  and most importantly, for families who''s loved-one have made the ultimate sacrifice - Blue to Gold a Flag Presentation.\r
+Team Selfridge Military Family Assistance, Helping military families in need at SelfridgeThis program assists families of men and women serving at Selfridge Air National Guard Base.Selfridge Family Assist who may be experiencing financial hardships.We are hoping to sell the place out(350 to 400 people)', ':15:17:12:6:11:23:2:4:18:22:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6836, '2008-05-03', 'Linda', 'Bedell Kucway', '7523 Roloff Rd', 'Ottawa Lake', 'MI', '49267', NULL, '734-856-8403', NULL, 'lbedell15@yahoo.com', 'Mozilla/5.0 (Windows NT 6.1; rv:9.0.1) Gecko/20100101 Firefox/9.0.1', '50.33.221.48', false, 9, NULL, NULL, '2012-02-17', '2012-02-19', 'Pls call me at home 734-856-8403 to discuss which particular unit to reserve based upon previous years at this time.  Thx', ':2:', NULL, '1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9670, '2012-01-31', 'Mandy', 'Moulin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'mmoulin@adayana.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)', '12.2.36.2', false, 9, 4, NULL, '2012-03-08', '2012-03-11', NULL, ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9671, '2012-01-31', 'Steven', 'Benefield', NULL, NULL, 'MI', NULL, NULL, NULL, NULL, 'sbenefield@allstate.com', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 3.5.30729; AskTB5.2)', '68.60.128.205', true, 1, 1, NULL, '2012-02-10', '2012-02-12', NULL, ':12:2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9672, '2012-01-31', 'Harold', 'Waronker', '5 Cutler Lane', 'Lima', 'OH', '45805', NULL, '419-236-0722', NULL, 'waronkers@gmail.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0)', '96.45.240.186', true, 9, NULL, 'Looking for rates in mid to late August', NULL, NULL, NULL, ':11:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9673, '2012-01-31', 'denis', 'hitchmough', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'hitchmough03@aol.com', 'Mozilla/4.0 (compatible; MSIE 8.0; AOL 9.7; AOLBuild 4343.19; Windows NT 5.1; Trident/4.0; Comcast Install 1.0; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; BRI/1)', '67.169.37.18', false, 4, 5, NULL, '2012-09-04', '2012-10-03', NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9674, '2012-02-01', 'Josette', 'Koets', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'koetsjo@gmail.com', 'Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10.4; en-US; rv:1.9.2.20) Gecko/20110803 Firefox/3.6.20', '174.20.58.82', true, 6, NULL, 'A group of approx. 12-14 women are planning a get-together in your area this Aug. for 3-4 nights.  Several would like their own accomodations, the rest interested in groups of 4-5 in a condo.  Do you have many openings that could accomodate us, are there any price specials?  Is it even possible to have units next to each other? Rates?  What is needed for deposits?  Looking forward to your reply via email & lodging brochure.  thanks, Josette', NULL, NULL, NULL, ':22:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9675, '2012-02-02', 'beverly', 'wilkie-teno', '16800 24 mile rd', 'macomb', 'MI', '48047', NULL, '586-612-1473', NULL, 'bteno@comcast.net', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.52.7 (KHTML, like Gecko) Version/5.1.2 Safari/534.52.7', '98.224.179.60', true, NULL, NULL, NULL, NULL, NULL, NULL, ':17:3:2:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9676, '2012-02-02', 'LAURENCE', 'BERGER', '33647 HERITAGE HILLS DR.', 'FARMINGTON HILLS', NULL, '48331', NULL, '248 661-0005', NULL, 'lberger@twmi.rr.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.52.7 (KHTML, like Gecko) Version/5.1.2 Safari/534.52.7', '24.208.226.14', true, NULL, NULL, NULL, NULL, NULL, NULL, ':15:17:23:2:4:18:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9677, '2012-02-06', 'Frank', 'Schultz', '4242  N. Ridge', 'Arlington Heights', 'IL', '60004', NULL, '847-394-9425', NULL, 'sfrankers@att.net', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; FBViewer-5.0.1.32; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '12.188.154.130', true, 6, 3, 'Hi, Was looking for a week in Michigan, wife and I, have a daughter and son in law down in Plymouth, Mi , would come up.\r
+Have a pet, didn''t see anything about pets, on lease , never with out.\r
+open, June, July', NULL, NULL, NULL, ':11:23:22:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9678, '2012-02-06', 'Danielle', 'Stark', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'dmmstark@aol.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618)', '50.33.188.135', true, NULL, NULL, NULL, NULL, NULL, NULL, ':12:23:25:2:4:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9679, '2012-02-08', 'craig', 'esler', NULL, NULL, 'MI', '48170', NULL, NULL, NULL, 'craigesler@yahoo.com', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.52.7 (KHTML, like Gecko) Version/5.1.2 Safari/534.52.7', '96.27.10.69', true, NULL, NULL, NULL, NULL, NULL, NULL, ':12:23:2:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9680, '2012-02-10', 'DeAndrea', 'Beecham', '13681 Capitol', 'Detroit', 'MI', '48227', NULL, '313-646-6509', NULL, 'deandreabeecham@yahoo.com', 'Mozilla/5.0 (Windows NT 6.0) AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.77 Safari/535.7', '76.112.147.136', true, 4, 6, NULL, '2012-03-09', '2012-05-09', NULL, ':12:25:2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8119, '2009-06-03', 'Barbara', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'brbrbacon@aol.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '67.149.120.115', true, 9, NULL, NULL, NULL, NULL, 'Please delete me from you e-mail list.', '', NULL, '1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9682, '2012-02-11', 'Jon', 'Bushen', NULL, NULL, 'MI', NULL, NULL, NULL, NULL, 'jonbushen@hotmail.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.5; rv:9.0.1) Gecko/20100101 Firefox/9.0.1', '98.209.77.172', false, 9, NULL, 'My wife and I are looking to come up to the Petoskey area, April 3-5th or 6th for a getaway.  We have noticed on your website you have deals for the winter months, but wanted to know if you have any deals for the first week of April, as we are looking to book in the next few weeks.  We are looking for a one bedroom place where we can just enjoy the property, and the Petoskey area.  If you could get back to me that would be great.  Thanks.', NULL, NULL, 'Been there before :)', ':15:23:4:18:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9683, '2012-02-12', 'Debby', 'Turner', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'turners@manitoulin.net', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.5; rv:9.0.1) Gecko/20100101 Firefox/9.0.1', '70.52.231.226', true, 7, 3, NULL, '2012-02-17', '2012-02-20', NULL, ':15:29:6:2:16:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9684, '2012-02-17', 'Myla', 'Lindstrom', '2054 Providence Drive', 'Bartlett', 'IL', '60103', NULL, '3128044259', NULL, 'myla.lindstrom@yahoo.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; GTB7.2; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; MDDC; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; BRI/2)', '71.194.122.150', true, NULL, NULL, NULL, NULL, NULL, NULL, ':15:29:12:6:11:25:2:18:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10031, '2013-07-20', 'gene', NULL, NULL, 'valparaiso', 'IN', NULL, NULL, NULL, NULL, 'fergusor50@hotmail.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0)', '24.12.48.23', true, 2, 5, NULL, '2013-08-31', '2013-09-02', NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9685, '2012-02-19', 'lisa', NULL, NULL, NULL, 'MI', NULL, NULL, NULL, NULL, 'ltoenjes@comcast.net', 'Mozilla/5.0 (Linux; U; Android 2.2; en-us; SAMSUNG-SGH-I897 Build/FROYO) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1', '166.216.194.56', true, 4, NULL, NULL, NULL, NULL, 'Are any of the condos.available for sale?', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9686, '2012-02-22', 'Kelly', 'Ziccarello', '2829 Old Dutch Rd', 'Middleville', 'MI', '49333', NULL, '269 795-9457', NULL, 'kzicc2829@hotmail.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; NP06)', '75.107.247.152', false, 9, NULL, 'Dates are very tentative, looking for Oct-Nov. I am currently in charge of finding a retreat location for my Quilting guild for fall 2012. I found the scrapbook retreat package you are currently offering in March and would like to see if something similar could be done for quilters. I have to accomodate about 30-35 ladies. Similar needs, Thur-Sun stay, need lodging and meals. Main change would be ideal to have a table per quilter, as each brings her own sewing machine.', '2012-10-10', '2012-11-18', 'Stayed at Trout Creek couple years ago to ski. Also found you online while searching for retreat locations for my quilt guild.', ':20:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9687, '2012-02-25', 'Dan', 'Reid', '82 Killarney Road', 'Sault Ste. Marie', 'ON', 'P6b 4N8', NULL, '7052579409', NULL, 'danreidculligan@shaw.ca', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '24.109.46.36', true, 9, NULL, NULL, '2012-03-14', '2012-03-16', 'We need to sleep ten, so please send prices on three bedroom and five bedroom.  Thank you', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9688, '2012-02-27', 'Lisa', 'Chapin', '310 Stadium Dr', 'Middleville', 'MI', '49333', NULL, '616-893-6958', NULL, 'chapinfamily03@yahoo.com', 'Mozilla/5.0 (Windows NT 5.1; rv:10.0.2) Gecko/20100101 Firefox/10.0.2', '69.214.0.235', true, NULL, NULL, NULL, NULL, NULL, NULL, ':14:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9689, '2012-03-01', 'Brandi', 'JUDD', '2055 Horton Rd.', 'Muskegon', 'MI', '49445', NULL, '231-744-8766', NULL, 'bransptcruiser@netzero.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '204.38.148.67', true, 4, 5, NULL, '2012-06-15', '2012-06-17', 'I looked over your website & am interested in Condo #9.  Can you tell me if it is available on June 15 thru June 17, 2012.  Thanks!  Brandi Judd', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9690, '2012-03-04', 'Stan', 'Jensen', '5274 S Meridian Road', 'Mount Pleasant', 'MI', '48858', NULL, NULL, NULL, 'stanjensen@speednetllc.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:10.0.2) Gecko/20100101 Firefox/10.0.2', '204.12.175.117', true, 9, 1, 'We would like to confirm that #139 in building #20 might be available 3 nights in June. We are a part of the Mount Pleasant Soccer Club, MP United 94 team. Checking in Friday, 6/15 and leaving Monday morning, 6/18.', '2012-06-15', '2012-06-18', NULL, ':14:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9691, '2012-03-05', 'Ann', 'Schonhard', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'ann_eric@att.net', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)', '99.147.163.24', true, 4, 3, NULL, '2012-06-15', '2012-06-17', 'I am trying to get some prices on your website, however, it is not going through.', ':14:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7102, '2008-06-17', 'sheila', 'mcnab', '8054 barnsury', 'commerce township', 'MI', '48382', NULL, NULL, NULL, 'smcnab@comcast.net', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:8.0.1) Gecko/20100101 Firefox/8.0.1', '71.227.10.238', true, 9, NULL, NULL, '2013-01-04', '2013-02-24', 'We have 4 snowmobiles and ski equipment.  Would like a quote. Thank you for your time in this matter.', '', NULL, '1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9747, '2012-06-23', 'Lynn', 'Wolf', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'lwolf@easternoil.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)', '68.42.109.17', true, 4, 3, 'we can stay in a 2 bedroom= 1 or 2 bath- prefer to be close to pool and or pond', '2012-09-07', NULL, NULL, ':14:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9693, '2012-03-13', 'Mihaela', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'mgiubega@yahoo.com', 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.79 Safari/535.11', '79.117.152.26', false, 6, NULL, 'Hello,\r
+\r
+\r
+I have found your website in google and write you this e-mail in order to propose a cooperation. \r
+I have developed in the last period my own travel websites and I want to make you an offer about the following services I can provide:\r
+\r
+ - SEO consultancy\r
+ - Article writing \r
+ - Links from travel websites with related content\r
+ - Advertising in my own websites (banner or article hosting with links to your website)\r
+\r
+I am waiting your answer at mgiubega@yahoo.com if you are interested in my proposal.\r
+\r
+\r
+Kind Regards,\r
+Mihaela', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9694, '2012-03-13', 'Tammy', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'weissbt@comcast.net', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.79 Safari/535.11', '68.40.11.34', true, 4, NULL, NULL, '2012-06-15', '2012-06-17', NULL, ':14:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9695, '2012-03-13', 'Catmela', 'Ross', NULL, NULL, 'MI', NULL, NULL, NULL, NULL, 'carmross@bigtube.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB7.3; SLCC1; .NET CLR 2.0.50727; MDDS; .NET CLR 3.5.30729; InfoPath.2; .NET CLR 3.0.30729; .NET4.0C; BRI/1; BRI/2)', '71.89.151.138', false, 6, NULL, 'Good evening,\r
+\r
+We are two small families interested in a rental property for the week of July 21st. We need sleeping arrangements for 8 with space for an additional pack-n-play. We’d prefer a home/condo with a pool and within the Harbor Springs/Petoskey area. If you have any properties that meet our needs, please forward links with information.\r
+\r
+Thanks in advance,\r
+Carm Ross', NULL, NULL, 'Good evening,\r
+\r
+We are two small families interested in a rental property for the week of July 21st. We need sleeping arrangements for 8 with space for an additional pack-n-play. We’d prefer a home/condo with a pool and within the Harbor Springs/Petoskey area. If you have any properties that meet our needs, please forward links with information.\r
+\r
+Thanks in advance,\r
+Carm Ross', ':12:22:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9696, '2012-03-18', 'Jon', 'Nelson', NULL, 'McComb', 'OH', NULL, NULL, NULL, NULL, 'Jagrinch1@gmail.com', 'Mozilla/5.0 (iPad; CPU OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A405 Safari/7534.48.3', '166.249.100.54', true, 6, 3, 'We would like to go fishing, both lake and trout fishing during the week.', '2012-06-03', '2012-06-09', NULL, ':29:6:23:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9697, '2012-03-19', 'Greg', 'Schwepe', '1457 Aniko Ave', 'Lewis Center', 'OH', '43035', NULL, '740-549-1140', NULL, 'greg.schwepe@huntington.com', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E; .NET CLR 1.1.4322)', '170.128.175.135', true, NULL, NULL, NULL, NULL, NULL, NULL, ':12:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9698, '2012-03-19', 'Carol', 'Hunter', '60417 Strobel Road', 'Centreville', 'MI', '49032', NULL, '269-467-6241', NULL, 'carolhunter2@frontier.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; BRI/1; .NET CLR 3.5.30729)', '50.105.86.108', true, 6, NULL, NULL, NULL, NULL, 'Do you allow pets?', ':3:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9700, '2012-03-21', 'Dan', 'Bender', '55 Skyline Dr', 'Howell', 'MI', '48843', NULL, '3135740895', NULL, 'danbender71@gmail.com', 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.79 Safari/535.11', '173.241.221.20', false, 8, 5, 'What is the rate for that night?', '2012-05-18', '2012-05-19', 'Zoo-de-Mac website.', ':15:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9701, '2012-03-21', 'Kathleen', 'Hopper', '2814 S Christian Hills Dr', 'Rochester Hills', 'MI', '48309', NULL, '2483216546', NULL, 'hopperk@michigan.gov', 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; chromeframe/17.0.963.79; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E; InfoPath.3)', '136.181.195.65', true, NULL, NULL, NULL, NULL, NULL, NULL, ':15:29:17:12:23:18:22:16:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9702, '2012-03-21', 'Louanne', 'Neiderquill', '7425 State Road', 'Saginaw', 'MI', '48609', NULL, NULL, NULL, 'lneiderq@gmail.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.3; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; CMDTDF; AskTbORJ/5.14.1.20007)', '204.38.47.132', true, NULL, NULL, NULL, NULL, NULL, NULL, ':15:17:6:11:23:25:2:18:22:24:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9703, '2012-03-21', 'Kirk', 'Maxon', '12420 holly ln.', 'greenvill', 'MI', '48838', NULL, '6167545514', NULL, 'kmaxf85@yahoo.com', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.19) Gecko/2010031422 Firefox/3.0.19', '24.247.107.116', true, 8, 2, NULL, '2012-05-18', '2012-05-19', 'I already made reservations through the online., However itd only go if I made for two nits.\r
+I am in zoodemac and only need one nite.', ':15:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9704, '2012-03-21', 'Connie', NULL, NULL, NULL, NULL, NULL, NULL, '248-830-0476', NULL, 'connie@ecoprgroup.com', 'Mozilla/5.0 (Windows NT 6.1; rv:10.0.2) Gecko/20100101 Firefox/10.0.2', '76.112.251.127', true, 9, 5, 'Can we stay for one night? We''re doing the Zoo De Mack...thanks, Connie', '2012-05-18', '2012-05-19', NULL, ':15:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9705, '2012-03-22', 'Diana', 'Mazurski', '2701 West 95th Street', 'Evergreen Park', 'IL', '60805', NULL, '773-816-9580', NULL, 'mystery_912@hotmail.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C)', '75.149.78.50', true, NULL, NULL, NULL, NULL, NULL, NULL, ':29:10:17:23:18:16:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9947, '2013-04-07', 'John', 'Secco', '1040 Devonshire', 'Grosse Pointe', 'MI', '48230', NULL, '313-407-4300', NULL, 'Jpsecco@gmail.com', 'Mozilla/5.0 (iPad; CPU OS 7_0_3 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11B511 Safari/9537.53', '68.42.171.118', true, 7, 1, NULL, '2013-12-27', '2014-01-05', NULL, ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5949, '2007-08-14', 'Karen', 'Goeringer', '5060 Ridge Trail South', 'Clarkston', 'MI', '48348', NULL, '248-701-0040', NULL, 'klg48348@aol.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '98.209.123.60', true, 9, 2, 'I just booked #105 for August 16 -21st and want to move it up one week if possible. We just found out our daughter is being featured in a make-a-wish trip so we really want that condo and I noticed it is still available for that week. so if you could please call me tomorrow I would appreciate it.Thank you', '2012-08-09', '2012-08-14', NULL, '', NULL, '1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9707, '2012-03-28', 'angie', 'hallberg', '2168 forest hills', 'muskegon', 'MI', '49441', NULL, NULL, NULL, 'angiehallberg@comcast.net', 'Mozilla/5.0 (Windows NT 6.1; rv:11.0) Gecko/20100101 Firefox/11.0', '69.51.159.186', true, 9, NULL, NULL, NULL, NULL, 'Could you please send me confirmation of our reservation the weekend of June 15-17?\r
+\r
+Thanks!\r
+Angie', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9708, '2012-03-29', 'Gina', 'Lapp', '2280 Lilongwe Place', 'Dulles', 'VA', '20189', NULL, NULL, NULL, 'gina.lapp@yahoo.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.3)', '169.252.4.21', true, 8, 1, NULL, '2012-07-23', '2012-07-30', 'Michigan Travel book', ':29:12:6:22:16:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9651, '2011-12-30', 'Mike', 'Jurewitch', '3120 West 38 Place', 'Chicago', 'IL', '60632', NULL, '773-508-2417', NULL, 'MJUREWI@GMAIL.COM', 'Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko/20100101 Firefox/11.0', '147.126.46.147', true, 8, 3, 'Is there special rates for the Jurewitch/Hayes wedding?', '2012-06-21', '2012-06-25', 'The Jurewitch/Hayes wedding.\r
+\r
+Will need unit with at least one ADA bathroom\r
+Possible to reserve unit with kingsize bed and double beds?', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9709, '2012-04-01', 'jenny', 'mccreary', '10039 oaktree rd', 'Brookville', 'IN', '47012', NULL, '765-647-0988', NULL, 'jenny.mccreary1@gmail.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; eSobiSubscriber 2.0.4.16; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; 79780884703; compat/4.1.02124)', '208.38.245.177', true, 8, 1, NULL, NULL, NULL, 'My family and I stayed in condo 90 2 years ago.  I was wondering if this condo is open any time during month of July.', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9710, '2012-04-03', 'Stacy', 'Klein', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'slklein@netzero.net', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:11.0) Gecko/20100101 Firefox/11.0', '71.83.6.218', true, 6, NULL, 'My daughter in law, Kim Klein, paid our deposit for condo #49 for the scrapbook retreat in Oct.  If we add 2 or 3 more people how much is the condo per person?', NULL, NULL, NULL, ':17:4:20:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9745, '2012-06-21', 'Frank', 'Provenzano', '5667 Firwood Drive', 'Troy', 'MI', '48098', NULL, '248-895-5382', NULL, 'ftaproven@comcast.net', 'Mozilla/5.0 (iPad; CPU OS 5_1_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9B206 Safari/7534.48.3', '68.42.190.144', true, 8, 5, NULL, '2012-08-07', '2012-08-09', NULL, ':15:29:12:11:22:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9712, '2012-04-10', 'Jenny', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'echan1@yahoo.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; MS-RTC LM 8)', '130.36.62.225', true, 8, NULL, 'Dear Sir/Madam:\r
+We will be in unit 93 this summer. Since it is not a rental unit, I can''t see any description. Would you please kindly tell what unit 93 similar to? Is it same as Condo #75? We are very much looking forward to this vacation in your resort.\r
+Many thanks in advance.', NULL, NULL, 'TAN vacation network', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9713, '2012-04-15', 'Ed & Marcie', 'Kay', '327 Hickory', 'Milford', 'MI', '48381', NULL, '248-494-3974', NULL, 'mkuciemba1@gmail.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1; BRI/2; FunWebProducts; BO1IE8_v1;ENUS)', '68.32.91.215', true, NULL, NULL, 'We are attending a wedding in mid August and are interested in a condo for 4 nights. I am interested\r
+in what the cost would be for accomdations for 6 with two full baths. We have a small dog. \r
+\r
+ We would also appreciate your recommendation of\r
+catering services in the area.\r
+\r
+  Thank You -- Ed & Marcie Kay', NULL, NULL, NULL, NULL, NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9715, '2012-04-23', 'Virginia', 'Sheridan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'riggsvir@msu.edu', 'Mozilla/5.0 (Windows NT 6.1; rv:11.0) Gecko/20100101 Firefox/11.0', '173.241.208.66', false, 8, NULL, 'We have a reservation from 5/19-5/26 in unit #96. Do you have any pictures of this unit? I saw where there were videos of other units on the website, but I didn''t see unit 96. Thanks', NULL, NULL, 'Global Discovery Vacations', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9716, '2012-04-24', 'Kathy', 'Golemba', '894 Greenview', 'Des Plaines', 'IL', '60016', NULL, NULL, NULL, 'djmachdp@aol.com', 'Mozilla/5.0 (compatible; MSIE 9.0; AOL 9.6; AOLBuild 4340.168; Windows NT 6.1; WOW64; Trident/5.0)', '69.47.221.87', true, 8, NULL, 'WE WILL BE STAYING AT YOUR PLACE JUNE 9TH THRU THE 16TH. CAN YOU GIVE ME THE AMOUNT FOR 2 ADULTS, A 6 YEAR AND 10 YEAR OLD TO TAKE THE BOAT TO MACINAW ISLAND?? OR HOW MUCH TO TAKE THE BRIDGE OVER TO MACINAW.', NULL, NULL, 'GLOBAL DISCOVERY VACATIONS.', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9719, '2012-05-09', 'Wendy', 'VanZegeren', '1826 Whirlaway Ct SE', 'Grand Rapids', 'MI', '49546', NULL, '616-940-0601', NULL, 'wvanzege@gmail.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '99.109.254.161', true, NULL, NULL, NULL, NULL, NULL, NULL, ':15:10:17:11:23:4:18:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9692, '2012-03-11', 'SHERNAZ', 'minwalla', '460 saddle lane', 'macomb twp', 'MI', '48080', NULL, '313 719 8364', NULL, 'bghandhi@comcast.net', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; BOIE9;ENUSSEM)', '68.41.220.134', true, 4, 6, NULL, '2012-07-02', '2012-07-05', NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9717, '2012-04-28', 'peggy', 'vaughn-payne', '310 West St.', 'Lansing', 'MI', '48915', NULL, '517-230-7878', NULL, 'PLVaughn@aol.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)', '75.100.240.170', true, 6, NULL, NULL, '2012-05-25', '2012-05-28', 'We currently have a reservation for unit # 141 (I believe) for the long Memorial Day holiday.  A member of our party has not been able to get the vacation time off yet, and we would like to know if it is possible to switch to a 2BR/2BA unit (#82) at the lower special price? We should hopefully know within the next week if she can make it, but were getting a little anxious about our ability to downsize to a smaller unit and if there would be any penalities?  Thank you.  Peggy', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9718, '2012-05-05', 'Diane', 'Herman', NULL, 'Bryan', 'OH', NULL, NULL, NULL, NULL, 'diane43506@gmail.com', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:12.0) Gecko/20100101 Firefox/12.0', '50.51.39.217', false, 9, NULL, 'are any of your units pet friendly for a small dog?', NULL, NULL, 'Attended a scrapbook weekend!!!', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9970, '2013-05-13', 'Sita', 'Compton', '1752 W. German rd', 'Bay City', 'MI', '48708', NULL, NULL, NULL, 'sitacompton@att.net', 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/6.0)', '75.21.166.158', true, NULL, NULL, 'add to list,  Cross Country skiing', NULL, NULL, NULL, ':15:29:10:17:23:25:18:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9720, '2012-05-12', 'Douglas', 'Eader', '764 Back Nine Drive', 'Venice', 'FL', '34285', NULL, NULL, NULL, 'deader4029@comcast.net', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '71.203.24.113', true, 8, NULL, NULL, NULL, NULL, 'I am interested in renting a place for the entire month of August or September. Do you have units available for either of these months. What is the cost and I have a small dog (10 lbs).', ':6:11:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9721, '2012-05-13', 'Teresa', 'Silvestro', '115 Pearl Street North', 'Hamilton', 'ON', 'L8R 2Z5', NULL, '905-526-1936', NULL, 'tsilvestro@cogeco.ca', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; GTB7.3; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; eSobiSubscriber 2.0.4.16; MAEM; .NET4.0C; AskTbORJ/5.14.1.20007)', '24.141.75.217', true, 6, NULL, NULL, '2012-08-11', '2012-08-18', 'Hello,\r
+\r
+I called earlier this week to check availability of 3 condos for the above week.  The very nice lady I spoke with pencilled my name in #111,#113 &#114 in bldg. 16 and I called 2 days later and left a message so that we can secure these with a deposit and I''ve not heard back yet. We would like these 3 units and I would like to put a deposit on them. I called again today but the office is closed.  I will try again tomorrow and/or hopefully I will get a response from this message.  Thanks so much !\r
+\r
+Teresa Silvestro', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9722, '2012-05-13', 'Betty', 'Palm', '3256 Blackbird Rd', 'Petoskey', 'MI', '49770', NULL, '2313472827', NULL, 'bjpalm@charter.net', 'Mozilla/5.0 (Windows NT 6.0) AppleWebKit/535.19 (KHTML, like Gecko) Chrome/18.0.1025.168 Safari/535.19', '75.135.137.202', true, 8, 5, 'I would like information on a monthly rate for a 1 bedroom 1 bath condo for one or two months starting shortly after Labor Day.  My sister will be visiting from San Diego.  I am gathering information for her.  She is 76 years old and would like a unit that has no stairs.  Do you have a senior package that would work for her?', NULL, NULL, 'I live in Petoskey.', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9761, '2012-07-14', 'Alice', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'calnal@sbcglobal.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; GTB7.3; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.5; OfficeLivePatch.1.3; .NET4.0C)', '99.102.227.137', true, 8, 6, NULL, '2013-08-04', '2013-08-10', NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9724, '2012-05-16', 'Deanna', 'Sowlles', '652C Pewaukee Road', 'Pewaukee', 'WI', '53072', NULL, '262-408-2006', NULL, 'grandma.dee@netzero.net', 'Mozilla/5.0 (Windows NT 5.1; rv:12.0) Gecko/20100101 Firefox/12.0', '24.209.137.133', true, NULL, NULL, NULL, NULL, NULL, NULL, ':15:29:10:11:18:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9725, '2012-05-17', 'LYNN', 'BUPTE', '49982 LEXINGTON EAST', 'SHELBY TWP.', 'MI', '48317', NULL, '248-941-2289', NULL, 'labupte@comcast.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; AskTbORJ/5.15.1.22229; NET_mmhpset)', '68.84.167.226', true, 9, 3, NULL, '2012-07-03', '2012-07-08', 'i LIKE UNIT 119 IN BLDG 17. I also like 82 in bldg 12. Is 82 available my dates and is the trundle twin bed have the style that trundles has mattress and pulls out under the twin bed? Are these two units free of cats from previous renters? bad allergies would have to vacate if cat friendly.', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4249, '2006-09-18', 'Karen', 'Kaloydis', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'kgkaloydis@comcast.net', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB7.3; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET4.0C)', '24.11.71.203', false, 9, NULL, 'We are staying at Trout Creek in July and my niece and her husband will be flying in from Seattle to stay with us.  My "nephew-in-law" to go golfing while he is here, but he doesn''t want to bring his own clubs.  Is there someplace where he can rent them?  Thnaks!', NULL, NULL, NULL, ':12:22:', NULL, '1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9525, '2011-05-11', 'Natalie', 'Spaniolo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'nspaniolo@aol.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E; InfoPath.3)', '136.181.195.25', true, 9, 3, NULL, '2012-07-13', '2012-07-15', 'We are looking for just a two night stay in July.  Do you allow two nights if you have availability?  Thank you.', ':23:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9726, '2012-05-22', 'Lyndsay', 'Mercier', NULL, NULL, 'PA', NULL, NULL, '906-251-1256', NULL, 'limercier@mail.widener.edu', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0; BOIE9;ENUSSEM; chromeframe/19.0.1084.46)', '96.25.45.171', true, 6, 5, 'Hello, we are from the Upper Peninsula and will be getting married July 21st, 2012 and are thinking about staying at Trout Creek for our honeymoon. We were just wondering what the rates would be in July, for three nights, and if you have any special "honeymoon" packages? Thank you!', '2012-07-22', '2012-07-25', NULL, ':15:29:6:23:4:20:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9729, '2012-05-26', 'Marlene', 'Morgan', '3007 Holben Dr.', 'Lake Orion', 'MI', '43085', NULL, '2483932539', NULL, 'hsunshineroar@gmail.com', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:12.0) Gecko/20100101 Firefox/12.0', '76.181.46.147', false, 6, 4, 'We are looking for a reservation to condo 49.  Your website said that it was available for the dates we are interested in.', '2012-07-25', '2012-07-28', NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9727, '2012-05-24', 'Diane', 'Odoerfer', '17847 Rocco Drive', 'Macomb', 'MI', '48044-1650', NULL, '586 4126625', NULL, 'dianeodoerfer@yahoo.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_4) AppleWebKit/534.56.5 (KHTML, like Gecko) Version/5.1.6 Safari/534.56.5', '76.219.121.105', true, 9, NULL, NULL, NULL, NULL, 'What number is the condo shown in the first photo on your home page?', ':22:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9730, '2012-05-27', 'mark', 'gerber', NULL, NULL, 'ON', NULL, NULL, '5195700336', NULL, 'mgerber@rogers.com', 'Mozilla/5.0 (iPad; CPU OS 5_1_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9B206 Safari/7534.48.3', '99.254.170.237', true, 1, 4, NULL, '2012-01-07', '2012-06-07', 'June 30th start would work as well. please ler me know. thanks. mark', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9750, '2012-06-24', 'Roger', 'Nyman', '1705 awixa', 'Grand Rapids', 'MI', '49534', NULL, '616-453-9723', NULL, 'nymjoy@gmail.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Win64; x64; Trident/5.0)', '107.5.152.121', true, 9, 6, NULL, '2012-10-12', '2014-10-14', NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9731, '2012-05-29', 'John', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'jknoester@hollandchristian.org', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:5.0) Gecko/20100101 Firefox/5.0', '207.74.22.46', true, 6, NULL, 'Hello, Every two years our family organizes a family reunion to be held in late July of that year. Our next family reunion will be held in July, 2013. The size of our group is approximately 70 - 80 people and so we generally rent out several condos at the selected site. The most important priority we have for the site that we choose is that there needs to be a large outdoor common area where the entire group can socialize and share a meal. I was wondering whether or not your condo rentals would provide such a setting for our group.', NULL, NULL, NULL, ':3:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9732, '2012-06-06', 'Shelley', 'Boehnlein', '5727 Bearcreek', 'Lansing', 'MI', '48917', NULL, '5173237795', NULL, 'msboehnlein@sbcglobal.net', 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/536.5 (KHTML, like Gecko) Chrome/19.0.1084.52 Safari/536.5', '76.242.159.72', true, 6, 3, NULL, '2012-06-21', '2012-06-23', 'We would like to reserve unit #79 in building 11.  Please call me at above # or, preferably, my cell at 517-648-5240 to secure this unit.  Thank you.', ':23:', NULL, ':2:1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9733, '2012-06-07', 'matthew', 'bogdan', '501noth cold wather rd', 'weidman', 'MI', '48893', NULL, '9896443627', NULL, 'mattbogdan27@yahoo.com', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET4.0C; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322)', '216.120.167.146', true, 6, 5, NULL, '2013-01-03', '2012-09-09', NULL, ':6:22:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9734, '2012-06-07', 'June', 'Taggart', '28674 Middle Crossing Rd', 'Dowagiac', 'MI', '49047', NULL, NULL, NULL, 'kandjtaggart@gmail.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; FunWebProducts; GTB7.3; BTRS129082; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; FunWebProducts; AskTbGAM2/5.9.1.14019)', '50.36.175.182', true, NULL, NULL, NULL, NULL, NULL, NULL, ':17:23:18:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9736, '2012-06-08', 'Susan', 'Elek', '11243 Fairway Dr.', 'Sterling Heights', 'MI', '48312', NULL, '586-939-0650', NULL, 'elek70@comcast.net', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '68.61.180.237', true, NULL, NULL, NULL, NULL, NULL, NULL, ':10:17:11:18:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9737, '2012-06-09', 'Linda', 'Rice', '495 WANSTEAD WAY', 'Lexington', 'KY', '40505', NULL, '8599489292', NULL, 'lsrice0@uky.edu', 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/536.5 (KHTML, like Gecko) Chrome/19.0.1084.52 Safari/536.5', '96.29.139.19', true, 6, 2, 'I noticed condo #147 has an enclosed porch..do any other condos with 2 BR/2B have this feature? It doesn''t seem to be open for our dates.  We were hoping to be near the Office/Conf center do any of the condos have screened porches--trying to avoid mosquitoes?    Thanks!', '2012-07-08', '2012-07-12', NULL, ':15:10:11:23:22:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9738, '2012-06-09', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'djriley77@hotmail.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_4) AppleWebKit/534.57.2 (KHTML, like Gecko) Version/5.1.7 Safari/534.57.2', '24.236.247.191', true, NULL, NULL, NULL, NULL, NULL, NULL, ':10:17:3:12:23:4:20:18:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9681, '2012-02-11', 'WILLIAM', 'WOLF', NULL, NULL, 'MI', NULL, NULL, NULL, NULL, 'wolfclan4@juno.com', 'Mozilla/5.0 (Windows NT 5.1; rv:14.0) Gecko/20100101 Firefox/14.0.1', '69.129.211.202', true, 8, NULL, 'Interested in an October 4-day weekend.', NULL, NULL, 'brochure', ':10:17:12:', NULL, ':1:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9739, '2012-06-13', 'Colene', 'VanVugt', '4944 lakeshore rd', 'Lexington', 'MI', '48450', NULL, '810-359-8827', NULL, 'vanslab@sbcglobal.net', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; WOW64; Trident/5.0)', '68.79.93.73', true, NULL, NULL, NULL, NULL, NULL, NULL, ':12:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9740, '2012-06-14', 'cindy', 'lucio', '11744 Kristoffer Ct', 'Orland park', 'IL', '60467', NULL, '708-349-7006', NULL, 'clucio@athome.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB7.3; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.30729; .NET CLR 3.5.30729; .NET4.0C)', '173.9.237.161', true, 8, 4, NULL, '2012-08-25', '2012-09-01', 'I would like to know the rate for this week.\r
+\r
+thanks', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4409, '2006-09-25', 'Richard', 'DeVergilio', 'P.O. Box 127', 'Hartland', 'MI', '48353', NULL, '313-402-0434', NULL, 'devo1765@comcast.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; FunWebProducts; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C)', '71.238.203.222', true, 8, NULL, 'I some things that I would like to discuss with Debbie', NULL, NULL, 'I would like Debbie''s e-mail address. I use to own #79 and sold it in 2004', '', NULL, '1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9741, '2012-06-18', 'Linda', 'Buczynski', '1038 WILLIAMSBURG CIR', 'GRAYSLAKE', 'IL', '60030', NULL, '8477211974', NULL, 'linda_buczynski@yahoo.com', 'Mozilla/5.0 (Windows NT 6.0; WOW64) AppleWebKit/536.5 (KHTML, like Gecko) Chrome/19.0.1084.56 Safari/536.5', '24.15.225.129', true, 6, 6, NULL, '2012-07-08', '2012-07-13', NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9742, '2012-06-18', 'RAYMOND', 'PARTAKA', '4812 SHORELINE CT', 'WATERFORD', 'MI', '48329', NULL, NULL, NULL, 'rpartaka@comcast.net', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '69.244.156.212', true, NULL, NULL, NULL, NULL, NULL, NULL, ':23:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9950, '2013-04-10', 'Jill', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'jillbatka@gmail.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '173.14.44.29', false, 8, 5, NULL, '2013-06-14', '2013-06-16', 'Looking for accomodations and pricing for 2 adults and one 13 year old', ':14:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9746, '2012-06-22', 'Firas', 'Putris', '4625 boulder dr.', 'Sterling heights', 'MI', '48310', NULL, NULL, NULL, 'Firaskesto@hotmail.com', 'Mozilla/5.0 (iPad; CPU OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A405 Safari/7534.48.3', '96.27.40.139', true, 6, 3, NULL, '2012-07-20', '2012-07-23', 'Please contact me ASAP I''m looking for condo near the lake or pool for my kids in a nice area.', ':12:22:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9748, '2012-06-23', 'JJ', 'Barton', NULL, 'Hovland', 'MN', '55606', NULL, NULL, NULL, 'jjbarton@centurytel.net', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Win64; x64; Trident/5.0)', '75.121.147.243', true, NULL, NULL, 'Interested in renting 1 BR 1 bath unit in mid to late Sept. Wondering about rates', NULL, NULL, NULL, ':10:17:23:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7109, '2008-06-17', 'Patty', 'Becker', '28962 Walnut Grove', 'Southfield', 'MI', '48034', NULL, '248-355-2428', NULL, 'pbecker@umich.edu', 'Mozilla/5.0 (Windows NT 6.1; rv:8.0.1) Gecko/20100101 Firefox/8.0.1', '99.38.169.242', true, 8, NULL, 'Hi there - could you please let me know what a two bedroom, one floor unit would have cost for the same dates as we''re coming (7/14-21)? I just need to know in order to figure out how much of our stay my daughter has agreed to pay.\r
+\r
+By the way - she''s pregnant with twins!  Do you provide cribs when we will need them in the future?\r
+\r
+Thanks.', NULL, NULL, 'Don''t remember --been coming a long time.', ':23:22:', NULL, '1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9751, '2012-06-25', 'Jeanne', 'Doll', '1441 Bennett Ave.', 'Warson Woods', 'MO', '63122', NULL, '314 822-3412', NULL, 'go4it@at.net', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.57.2 (KHTML, like Gecko) Version/5.1.7 Safari/534.57.2', '75.54.26.198', false, 6, NULL, 'Do you allow pets?  Thanks.  Have a great day.\r
+Jeanne', NULL, NULL, NULL, ':10:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9735, '2012-06-08', 'dale', 'polak', NULL, 'alsip', 'IL', NULL, NULL, NULL, NULL, 'airplane40@comcast.net', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0)', '67.167.43.215', true, NULL, NULL, NULL, NULL, NULL, NULL, ':15:29:10:17:23:25:18:22:24:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10013, '2013-07-06', 'Paul', 'Eckert', NULL, NULL, NULL, NULL, NULL, '616-723-7809', NULL, 'rapidsgrand@yahoo.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.59.8 (KHTML, like Gecko) Version/5.1.9 Safari/534.59.8', '108.197.169.125', true, NULL, NULL, NULL, '2013-08-06', '2013-08-09', NULL, NULL, NULL, ':3:', '2', NULL, '1', NULL, '2', 'twilight', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9753, '2012-06-25', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'kenyoung2000@hotmail.com', 'Mozilla/5.0 (Windows NT 6.1; rv:13.0) Gecko/20100101 Firefox/13.0.1', '35.10.74.199', true, NULL, NULL, NULL, NULL, NULL, NULL, ':29:12:11:23:2:4:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9754, '2012-06-26', 'ron and margie', 'wilson', '1730 benton rd', 'charlotte', 'MI', '48813', NULL, '5175437264', NULL, 'margiewilso@gmail.com', 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/536.5 (KHTML, like Gecko) Chrome/19.0.1084.56 Safari/536.5', '75.7.194.146', true, 6, 6, 'looking for a family 3-5 day retreat.\r
+end of december or january\r
+adult children and families\r
+like ball park cost and available dates\r
+thanks', NULL, NULL, 'looking for a family 3-5 day retreat.\r
+end of december or january\r
+adult children with their families\r
+like ball park cost and available dates\r
+thanks', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9559, '2011-07-12', 'Paula', 'Ashman', 'W6202 County Road O', 'Appleton', 'WI', '54913', NULL, NULL, NULL, 'spashman7@yahoo.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0)', '96.126.1.246', true, 6, NULL, 'I know it''s early, but we are planning a family reunion for early June 2015. Between 8 - 12 families are coming from at least 7 different states. We stayed here last year...beautiful resort...and it''s the first place I thought of for a reunion because it would be perfect. Is a year in advance enough time to book?', '2011-08-06', '2011-08-12', 'Hello, I see there are several online rates. What is the best rate we could get...we also have AAA. Do you have grills available for use? How many outdoor pools are open? Also, are there kayak/paddleboat rentals nearby (on a small body of water as we are not great swimmers :) \r
+\r
+thank you....hoping to find the perfect vacation that we can afford...have never been to MI before :)', ':3:', NULL, ':1:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9755, '2012-07-01', 'Mario', 'Labardini', '14618 Mansfield Dam Ct. #12', 'Austin', 'TX', '78734', NULL, '(512) 266-2768', NULL, 'mlabardini@gmail.com', 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/536.11 (KHTML, like Gecko) Chrome/20.0.1132.47 Safari/536.11', '70.114.160.186', true, 6, 3, NULL, '2012-09-16', '2012-09-20', NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9757, '2012-07-06', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'parkchic@live.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '96.42.98.68', true, NULL, NULL, NULL, NULL, NULL, NULL, ':15:29:12:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9759, '2012-07-10', 'Mary', 'McElyea', 'GM Shanghai PO Box 9022', 'Warren', 'MI', '48090', NULL, NULL, NULL, 'marymcelyea@gmail.com', 'Mozilla/5.0 (iPad; CPU OS 5_1_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9B206 Safari/7534.48.3', '58.32.191.199', true, 4, 1, NULL, '2012-08-13', '2012-08-19', 'More interested in nice location near a pond...Can go with 2 or 3 bedrooms, but at least 2 bathrooms a must!  My little sis and her family are with you in July (Matt Smith family) and we''re  coming in from China and need a dose of clean air and greenery!!!  Thanks for your help!  (I have older boys ages 20 and 22 who may need entertainment...Canoing and such....)', ':29:12:23:22:16:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9758, '2012-07-08', 'Donald', 'Therasse', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Dgtherasse@gmail.com', 'Mozilla/5.0 (iPad; CPU OS 5_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9B176 Safari/7534.48.3', '69.11.148.169', false, 9, NULL, 'We are coming in August, arriving on Thursday, August 16th.   We are friends of Grant Brown and will be staying in his rental unit.  We will probably be arriving around 7 pm and wanted to make sure the office will be open to allow us to check in.  What are your usual weekday office hours?   Thanks.', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9760, '2012-07-14', 'Heather', 'price', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'heather_price33@yahoo.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MS-RTC LM 8; .NET4.0C; Zune 4.7)', '64.112.200.198', true, 6, NULL, NULL, '2012-08-02', '2012-08-05', 'I need enough units to house 12 adults & 11 children.  Could you please advise if you have ANY condos for this size on these dates?', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9763, '2012-07-15', 'Kamila', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'kamila.bendyk@yahoo.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_4) AppleWebKit/534.57.2 (KHTML, like Gecko) Version/5.1.7 Safari/534.57.2', '67.202.19.66', true, 6, NULL, 'Hello,\r
+\r
+Please let me know your availability 8/24 - 8/27 for six adults and one small dog.\r
+\r
+Thank you,\r
+Kamila', '2012-08-24', '2012-08-27', NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9762, '2012-07-15', 'Randy', 'Pearce', '4620 w Jefferson', 'Ecorse', 'MI', '48229', NULL, NULL, NULL, 'Randydpearce@yahoo.com', 'Mozilla/5.0 (iPad; CPU OS 5_1_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9B206 Safari/7534.48.3', '68.43.24.74', true, NULL, NULL, NULL, NULL, NULL, NULL, ':2:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9765, '2012-07-19', 'Gerry', 'Ziajor', '41950 Twining Drive', 'Sterling Heights', 'MI', '48313', NULL, '586 354-4247', NULL, 'zburger1211@gmail.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.1)', '24.180.251.50', true, NULL, NULL, NULL, NULL, NULL, NULL, ':10:17:23:22:16:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9764, '2012-07-18', 'Amanda', 'Whetstone', '7509 Paradise Drive', 'Grand Blanc', 'MI', '48439', NULL, '8106945797', NULL, 'spanglera10@comcast.net', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '98.209.249.139', true, 9, 6, NULL, '2013-06-29', '2013-07-06', 'What is the price of this unit?', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9766, '2012-07-19', 'ROCHELLE', 'RICH', '1477 W SANILAC RD', 'SANDUSKY', 'MI', '48471', NULL, NULL, NULL, 'RICHROPA@GMAIL.COM', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.3)', '66.112.53.18', true, NULL, NULL, NULL, NULL, NULL, NULL, ':29:17:12:23:20:18:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9767, '2012-07-20', 'Sharon', 'Amara', '57275 Copper Creek Dr. W.', 'Washington', 'MI', '48094', NULL, '586-292-9496', NULL, 'amarasharon@aol.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.57.2 (KHTML, like Gecko) Version/5.1.7 Safari/534.57.2', '68.61.181.19', true, NULL, NULL, NULL, NULL, NULL, NULL, ':10:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9768, '2012-07-21', 'Kimberly', 'Visser', '4201 WEATHERWOOD DR', 'TRAVERSE CITY', 'MI', '49685', NULL, '2314213453', NULL, 'kimvisser4@gmail.com', 'Mozilla/5.0 (Windows NT 6.0; WOW64) AppleWebKit/536.11 (KHTML, like Gecko) Chrome/20.0.1132.57 Safari/536.11', '66.227.210.89', false, 6, 5, 'Hi, I am planning a getaway to celebrate our wedding anniversary.  We live in Traverse City.  I see you have a 3 night minimum, but we only have childcare for 2 nights.  Is there anyway you would make an exception??  Our anniversary is August 9th, and it really doesn''t matter which weekdays we travel.  Thank you, Kim Visser', '2012-08-08', '2012-08-10', NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9769, '2012-07-23', 'Julie', 'Clement', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'rexandjulie@nctc.com', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/536.11 (KHTML, like Gecko) Chrome/20.0.1132.57 Safari/536.11', '173.240.132.109', true, NULL, NULL, 'Interested in any last minute deals for 1 BD condo rentals in August.', NULL, NULL, NULL, ':22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9770, '2012-07-24', 'kelly', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'kellyjean1969@hotmail.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '209.173.167.61', true, 6, NULL, 'interested in pricing on large sleep 12 condo #1', NULL, NULL, NULL, ':12:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9802, '2012-10-02', 'richard', 'sclabassi', '10144 balfour', 'allen park', 'MI', '48101', NULL, '3134104857', NULL, 'rgsclabassi@aol.com', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.79 Safari/537.4', '98.224.142.29', true, NULL, NULL, NULL, NULL, NULL, NULL, ':15:29:10:17:3:12:6:11:23:25:2:4:20:14:18:22:16:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9772, '2012-07-29', 'Kelley', 'Sullivan', '547 Brook Ave', 'River Vale', 'NJ', '10022', NULL, '917 868-2006', NULL, 'ksullivan2004@yahoo.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '75.135.137.220', true, NULL, NULL, 'Curious what a month rental in July would be for a 2 bedroom / 2 bath (we have 2 kids) \r
+\r
+The last 2 years we rented in Birchwood, but would like something closer to the Highlands.\r
+\r
+Thanks', NULL, NULL, NULL, ':12:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7072, '2008-06-17', 'George', 'Schoembs', '4131  Oakcrest Road', 'Toledo', 'OH', '43623', NULL, NULL, NULL, 'gschoembs@bex.net', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '72.241.199.7', true, 9, 5, NULL, '2012-08-05', '2012-08-11', NULL, '', NULL, '1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9773, '2012-07-30', 'Denise', 'Herwaldt', '2857 Hannan Road', 'Imlay City', 'MI', '48444-9721', NULL, '8107901500', NULL, 'fiddlersfarm@aol.com', 'Mozilla/5.0 (Windows NT 6.0; WOW64) AppleWebKit/536.11 (KHTML, like Gecko) Chrome/20.0.1132.57 Safari/536.11', '173.108.109.227', false, 8, 3, 'Is Unit 131 available for the dates specified above.', '2012-08-31', '2012-09-03', 'part owner', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9774, '2012-07-31', 'Mary Anne', 'Hoffman', '637 West 63rd Street', 'Indianapolis', 'IN', '46260', NULL, NULL, NULL, 'ndclubmanager@comcast.net', 'Mozilla/5.0 (iPad; CPU OS 5_1_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9B206 Safari/7534.48.3', '68.65.177.106', true, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9775, '2012-08-01', 'Linda', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'flinrae@aol.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '50.77.144.201', true, 6, NULL, 'I am in need of a room for just 2 of us. We are only in need of a room for Friday and saturday night 8/3 and 8/4. We are looking for the least expensive room you would have. Coming for family reunion and family cabin is full so just need a room for 2 of us.', NULL, NULL, NULL, ':3:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9776, '2012-08-02', 'Christine', 'Podowski', '29779 School Section Rd.', 'Richmond', 'MI', '48062', NULL, '586-784-9038', NULL, 'chrisray68@hotmail.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; atyinst(ihp))', '75.198.55.44', true, 8, 6, NULL, '2012-12-26', '2012-12-30', NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9777, '2012-08-07', 'Sean', 'Gormely', '32330 Briarcrest Ct', 'Farmington Hills', 'MI', '48334', NULL, '313-805-6889', NULL, 'sgormely61@aol.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET CLR 1.1.4322; InfoPath.3)', '136.2.1.102', true, 4, 6, 'Wanted to know what dates Condo 1 was available in the Month of Aug', '2012-08-27', '2012-08-31', 'Wanted to know what dates Condo 1 was available in the Month of Aug', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9778, '2012-08-07', 'Ron', 'Quinlan', '266 Auburn Dr', 'Waterloo', 'ON', 'N2K3J5', NULL, NULL, NULL, 'ronquinlan@yahoo.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E; yie8; 8997065903; Mod/4.00149)', '50.16.43.101', true, NULL, NULL, NULL, NULL, NULL, NULL, ':10:17:11:18:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9779, '2012-08-15', 'Nancy', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'nancy.lambert13@gmail.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:14.0) Gecko/20100101 Firefox/14.0.1', '71.205.170.203', false, 4, NULL, 'We would like to come at Christmas time 2012. There could be from 4 to 7 people. Our dates are somewhat flexible but we do want to be there on December 25.', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9780, '2012-08-16', 'Mary Ann', 'Page', '2225 E Riverwood Dr', 'Twin Lake', 'MI', '49457', NULL, '231 744 6456', NULL, 'snowmap@aol.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '75.198.62.47', true, 6, 3, 'We have 4 couples, guys want to golf, gals no golf.  Price for lodging and golf package.', '2012-09-23', '2012-09-26', NULL, ':10:11:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9781, '2012-08-18', 'Jennifer', 'Frighetto', '1501 Chartwell Road', 'Schaumburg', 'IL', '60195', NULL, NULL, NULL, 'mikejennfrighetto@yahoo.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8) AppleWebKit/536.25 (KHTML, like Gecko) Version/6.0 Safari/536.25', '24.13.176.152', true, NULL, NULL, NULL, NULL, NULL, NULL, ':15:29:12:6:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9803, '2012-10-07', 'Kathy', 'Swiderski', '7328 Setter Dr', 'Anchorage', 'AK', '99502', NULL, '9072486725', NULL, 'swiderski.kathy@gmail.com', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:15.0) Gecko/20100101 Firefox/15.0.1', '24.237.196.207', false, 6, NULL, 'We are looking for a location for a family reunion sometime in the 2nd half of July, 2013.  We have a total of 29 people, in 6 family groups.  We are somewhat flexible on the condo sizes, but generally the 3 or 5 BR units would seem best.  Can you give me more information on price and availability, and help me see what the reunion would be like at Trout Creek?  Is a week long stay required that time of year?  Thank you.', NULL, NULL, 'MidWest Living magazine', ':3:12:22:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9783, '2012-08-21', 'Diane', 'Fisher', '158 Nottingham Drive', 'Troy', 'MI', '48085', NULL, '2488287293', NULL, 'fisherdb@wowway.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; AskTbORJ/5.15.4.23821)', '204.16.249.11', true, NULL, NULL, NULL, NULL, NULL, NULL, ':15:17:12:23:2:18:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9784, '2012-08-21', 'Jane', 'Cassidy', NULL, NULL, 'IL', '60098', NULL, NULL, NULL, 'cassidyj@comcast.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0)', '98.206.48.120', true, NULL, NULL, NULL, NULL, NULL, NULL, ':12:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9866, '2013-01-27', 'cynthia', 'McClelland', '967 Troon', 'Highland', 'MI', '48357', NULL, '3133990270', NULL, 'cjrabette@yahoo.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0)', '76.122.179.168', true, 9, 5, NULL, '2013-02-08', '2013-02-10', 'One couple looking for a comfortable place to stay during a weekend ski trip to Nubs Nob', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9785, '2012-08-26', 'Gladys', 'Liao', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'glaliao@gmail.com', 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.83 Safari/537.1', '118.163.67.189', true, 4, NULL, NULL, NULL, NULL, 'We stayed in one of the two bedroom codos a few years ago. Loved it. Wondering if there is any property for sale... We are interested in owning one. Either one bedroom or two are fine.', ':22:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9752, '2012-06-25', 'Gay', 'Gorman', '13495 Cambridge Dr', 'Lemont', 'IL', '60439', NULL, '630-257-2402', NULL, 'gaygorman@ameritech.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.4; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; BRI/2; .NET4.0C)', '76.202.211.215', true, 8, NULL, 'Hi, my husband and I are booked into room 93, another couple is coming also.  I am unable to find that unit on the website.  I would like to see it.  Can you let me know if it has beds for 4, and 2 bathrooms? Thank you, Mrs. Gay Gorman', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9786, '2012-08-28', 'teryl', 'miller', '8593 s. 38th st', 'scotts', 'MI', '49088', NULL, '2696269791', NULL, 'mrockyacres@att.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.4; .NET CLR 1.1.4322)', '108.68.178.91', true, 8, NULL, 'i heard the pool was only open on fri and sat, is that true?', NULL, NULL, 'our vacation club', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9787, '2012-08-29', 'Lisa', 'Smith', '3722 Honors Way', 'Howell', 'MI', '48843', NULL, '734-730-8437', NULL, 'lsmith@rocksolidservices.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)', '24.11.157.113', true, 1, 5, NULL, '2012-09-01', '2012-09-03', 'Interested in Big Fore, playing golf on Saturday and Sunday.', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9789, '2012-08-30', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'lakebummama@yahoo.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0; FunWebProducts)', '50.36.96.195', true, NULL, NULL, NULL, NULL, NULL, NULL, ':10:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9790, '2012-09-05', 'Lisa', 'Brown', '3516 Ridgewood Rd.', 'Toledo', 'OH', '43606', NULL, '419-360-1664', NULL, 'Brownhouse45@aol.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_2) AppleWebKit/534.51.22 (KHTML, like Gecko) Version/5.1.1 Safari/534.51.22', '69.221.5.86', true, 7, 1, NULL, '2012-12-29', '2013-01-05', NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9534, '2011-05-29', 'ed', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'newryed@gmail.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0)', '209.239.31.233', true, 9, 2, NULL, '2013-03-11', '2013-03-15', NULL, ':2:', NULL, ':2:1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9791, '2012-09-10', 'Lisa', 'Clarke', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'fiddlin2cheyanne@aol.com', 'Mozilla/5.0 (Windows NT 6.0; WOW64) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1', '108.194.36.178', true, 8, NULL, 'My parents (Tom and Denise Herwaldt) are co-owners of Unit 108. My husband and I would like to stay in our unit for the weekend of October 19-21 if it is available. Thanks!', '2012-10-19', '2012-10-21', 'My parents are co-owners of Unit 108.', ':15:4:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9792, '2012-09-11', 'sharon', 'yuhasz', '1650 colorado st', 'marysville', 'MI', '48040', NULL, '8103647061', NULL, 'syuhasz@sbcglobal.net', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '76.226.201.57', true, 6, 5, NULL, '2012-09-25', '2012-09-27', NULL, ':10:17:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9793, '2012-09-11', 'Angela', 'Cole', '1319 Nottingham Rd', 'Grosse Pointe Park', 'MI', '48230', NULL, '3133786756', NULL, 'angelacole@hotmail.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_3) AppleWebKit/534.53.11 (KHTML, like Gecko) Version/5.1.3 Safari/534.53.10', '71.238.110.237', true, NULL, NULL, NULL, NULL, NULL, NULL, ':12:2:4:18:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9794, '2012-09-11', 'Kim', 'Gurtowsky', '17405 Valade', 'Riverview', 'MI', '48193', NULL, '734-775-2488', NULL, 'kimgurt@hotmail.com', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1', '68.43.43.161', true, 6, 5, NULL, '2012-09-14', '2012-09-16', 'looking for 1bd 1bath for this coming weekend...anything available?', ':29:23:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9795, '2012-09-13', 'Denise', 'Gray (Batko)', '1195 Letica Drive', 'Rocheter', 'MI', '48307', NULL, '248-601-6190', NULL, 'dgray@crittenton.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0; BOIE9;ENUS)', '199.178.222.251', true, 9, 2, NULL, '2013-07-12', '2013-07-15', 'We would like to come a long weekend in July.  There will be 4 of us and we would like to be close to the tennis courts and pool area.  I have been to Trout Creek several times with other people.  If you could let me know the rates of a 2 bedroom 2 bath condo.  We will need two queens.', ':4:22:16:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9796, '2012-09-16', 'Patrick', 'Foley', '111 Copperfield Drive', 'Dayton', 'OH', '45415', NULL, '(937) 371-3494', NULL, 'foleynd@yahoo.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.4; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.3; .NET4.0C; .NET4.0E; AskTbMTV/5.15.4.23821)', '65.31.45.77', true, NULL, NULL, NULL, NULL, NULL, NULL, ':10:17:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9771, '2012-07-28', 'Stuart', 'Forsyth', '2311 W. Morrison 28', 'Tampa', 'FL', '33629', NULL, '8109654858', NULL, 'stuart.forsyth@homebanc.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; WOW64; Trident/5.0)', '173.78.21.221', true, 4, 1, NULL, '2013-06-30', '2013-07-27', 'Looking to rent a condo essentially for entire month of July.  Can you please quote me the rate?', ':12:11:2:', NULL, ':2:1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9800, '2012-09-24', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'catherine@bayviewassociation.org', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:15.0) Gecko/20100101 Firefox/15.0.1', '71.13.77.110', true, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9797, '2012-09-19', 'Michele', 'Gross', '1535 S. Lallendorf', 'Oregon', 'OH', '43616', NULL, '4196981247', NULL, 'Dgross4@yahoo.com', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)', '159.116.1.11', false, 4, 1, NULL, '2013-01-18', '2013-01-21', 'We were wondering if Unit 76 was available during this time frame. This is the unit we have stayed in before and love it.', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9798, '2012-09-19', 'judy', 'hawkins', '1464 sugarwood', 'windsor', 'ON', 'n9h2h3', NULL, '5199723860', NULL, 'juicyj000@hotmail.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)', '24.57.43.130', true, 6, NULL, 'im  trying to get some golf quotes for my golf league for next year, golf, accomomidations food vouchers, trout creek looks pretty good and we are having our banquet next week and id like to get feedback from my league to book  we are very  flexable for the month of august 2013    thank u  judy', NULL, NULL, NULL, ':17:11:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9799, '2012-09-19', 'Mark', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'mkmeynjn@aol.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; MS-RTC EA 2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; NavionicsWebStore; .NET4.0C)', '50.133.20.68', true, 9, NULL, 'My wife Carol and I were guests this past weekend in condo #86 and she mentioned that you were unaware of a tear to a dining room chair cushion prior to our arrival. We are nearly 100% certain that we did not cause the tear but we did see it on the 1st night in. I honestly can''t think of a time when it would have happened since it seems that we would have heard it tear if we had done something accidently. We feel bad that it is not certain if the damage was or was not already present prior to our arrival. Does someone check everything upon a guest leaving or arriving? We do know that these are privately owned units and do our best to respect their property everytime we visit (we have been there 3 or 4 times now).  Please advise me if there are any other questions or concerns on this matter as we want to make sure that everything is worked out for the sake of the owners.  Thank you, Mark Meyer', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9782, '2012-08-19', 'Vicki', 'Bahls', '19035 AMSTUTZ RD', 'Auburn', 'IN', '46706', NULL, '2606276204', NULL, 'sandvb@frontier.com', 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1', '184.18.121.188', true, 6, NULL, 'You have responded to me before, but I forgot to ask what is the fee for 3 bedroom condos and also daily price for anyone in our party who decides to not stay the full week.  Thanks Vicki Bahls', '2013-07-13', '2013-07-20', NULL, ':15:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9801, '2012-09-28', 'Howie', 'Kerr', '46 OMara Drive', 'Iroquois Falls', 'ON', 'P0K 1E0', NULL, '705 232 2344', NULL, 'howie_kerr@hotmail.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '204.19.151.8', true, 9, 5, NULL, '2012-10-12', '2012-10-15', 'Seeking Unit 53 for these three days.\r
+With the unavailibility of pool, hot tub and sauna ..is there a price rduction of any kind ?', ':10:17:2:4:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9804, '2012-10-08', 'Robert', 'Eger', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'robert.eger1@gmail.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '173.15.249.229', true, 4, 4, NULL, '2012-12-22', '2013-03-24', 'We are looking for to rent a place for the upcoming ski season.  We are a family of 4.', ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10112, '2013-12-03', 'Brenda', 'Battle', '22277 220th ave.', 'Paris', 'MI', '49338', NULL, '231-282-4643', NULL, 'birish57@yahoo.com', 'Mozilla/5.0 (iPad; CPU OS 7_0_4 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11B554a Safari/9537.53', '70.194.1.80', true, NULL, NULL, NULL, NULL, NULL, NULL, ':10:17:11:2:20:18:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9475, '2011-01-19', 'Colleen', 'Rogers', NULL, NULL, 'MI', NULL, NULL, NULL, NULL, 'kprogers@att.net', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '76.192.63.23', true, 6, NULL, NULL, '2013-02-15', '2013-02-19', NULL, ':12:2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9805, '2012-10-12', 'Michael', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'klo_78@yahoo.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; MS-RTC LM 8; InfoPath.1)', '72.37.249.68', false, 8, NULL, NULL, NULL, NULL, 'My wife and I will be visiting you in early December.  We were curious as to if you offer child care services or would recommend some one who does.  Any info would be greatly appreciated, thank you!', ':23:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9806, '2012-10-12', 'Amanda', 'Niedzwiecki', '227 E Petoskey st', 'Gaylord', 'MI', '49735', NULL, '(989)7320024', NULL, 'christopherniedzwiecki@yahoo.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:15.0) Gecko/20100101 Firefox/15.0.1', '66.227.179.36', true, 6, NULL, 'Hello!\r
+\r
+My name is Amanda Niedzwiecki and I am currently looking for donations for St. Mary''s Cathedral School in Gaylord, Michigan''s silent auction.\r
+\r
+Established in 1998, the FUNdFest is St. Mary''s largest fundraiser.  The event includes a silent and live auction, a dinner, raffles and lots of community exposure.  100% of the net profits of the event go directly to the school.  Any donations will be acknowledged in the event catalog and you will also be recognized the evening of the event.\r
+\r
+Thank you very much for your consideration, if you should have any questions please reply to the email or give me a call at (989)619-1788\r
+\r
+Thanks,\r
+\r
+Amanda Niedzwiecki', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3735, '2005-10-26', 'Holly', 'Mustion', '4235 Covered Bridge Road', 'Bloomfield HIlls', 'MI', '48302', NULL, '2488218850', NULL, 'hemustion@earthlink.net', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4', '75.39.32.216', true, 9, 3, NULL, '2013-02-15', '2013-02-17', 'We are interested in reserving one of the condos that have a queen and a twin in the second bedroom.', ':2:', false, '1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9809, '2012-10-16', 'Edmee', 'Maronge', '202 Mandie Drive', 'Bourg', 'LA', '70343', NULL, '9858569446', NULL, 'edmeemaronge@yahoo.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '75.131.91.147', true, 7, 6, NULL, '2012-12-27', '2013-01-01', 'Please provide me with infomation large family group, 3 adults and 6 children\r
+\r
+are pets allowed?', ':12:2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9810, '2012-10-17', 'Donna', 'Uccardi', '115 Essington rd', 'Joliet', 'IL', '60435', NULL, '8152126313', NULL, 'donnauccardi@rocketmail.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; GTB7.4; .NET4.0C)', '108.233.108.55', true, NULL, NULL, NULL, NULL, NULL, NULL, ':29:17:3:12:6:23:4:18:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9820, '2012-11-11', 'Mary', 'Robinson', '6197 s sheridan ave', 'durand', 'MI', '48429', NULL, '8102177041', NULL, 'marrobin@umflint.edu', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:16.0) Gecko/20100101 Firefox/16.0', '64.85.159.60', true, 8, NULL, 'If possible, we would like to be in buildings near the picnic area, and also near any other u-14 Hang Tuf team members', '2013-07-31', '2013-08-04', 'team- we are with Hang Tuf U-14 team, coming to play in softball tournament', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9812, '2012-10-23', 'Karen', 'McMahan', NULL, NULL, 'MI', '48642', NULL, NULL, NULL, 'ksmcmahan@aol.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '75.134.171.156', true, 6, NULL, 'Will you have a scrapbooking weekend in the Winter/Spring of 2013?  If so, when would it be?  Thanks!', NULL, NULL, NULL, ':20:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9813, '2012-10-23', 'Soo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'ssookkiiee@gmail.com', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:15.0) Gecko/20100101 Firefox/15.0.1', '35.11.158.222', true, 7, NULL, 'What is a resort fee?\r
+is this a mandatory payment prior to reservation?', NULL, NULL, NULL, ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9814, '2012-10-24', 'theresa', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'theresa.yoder@yahoo.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.57.2 (KHTML, like Gecko) Version/5.1.7 Safari/534.57.2', '69.14.174.78', true, 6, 3, 'I would consider a 3 bedroom and my dates are semi flexible.\r
+\r
+Thanks~', '2012-12-26', '2012-12-30', NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9815, '2012-11-02', '', '', '', '', '', '', NULL, '', NULL, 'klykken@gmail.com', NULL, NULL, true, NULL, NULL, '', '2012-11-02', '2012-11-02', '', '', NULL, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9616, '2011-11-12', 'Lisa', 'Abbey', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'lisaabbey@charter.net', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; WOW64; Trident/5.0)', '96.35.120.96', true, 4, NULL, NULL, NULL, NULL, 'Good Morning. Last year just after New Years we took advantage of your Holiday Recovery special. We would like to do that again if possible. The dates would be Jan 1-4. Are your prices the same as last year? Thank you, Lisa', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9816, '2012-11-06', 'Stephanie', 'Bednarz', '16900 Dundalk Court', 'Northville', 'MI', '48168', NULL, '7348912642', NULL, 'stephaniebednarz@live.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)', '12.40.99.226', true, 6, 1, 'Hello! \r
+I am looking for a place to stay at or near Boyne Highlands to Ski  for Myself, my 8 year old son and my older parents next month Dec. 4th  we’ll drive up late and leave early Dec. 9th to ski. We will also be traveling with our very well behaved 35lbs dog. Can you please get back to me if your lovely place is available and the price. Thank you so much!', '2012-12-04', '2012-12-09', NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9817, '2012-11-07', 'Kathleen', 'Cole', '19417 Pollyanna Dr', 'Livonia', 'MI', '48152', NULL, '7344669760', NULL, 'kathleen@colefamilylaw.com', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4', '74.219.73.166', true, 6, 4, NULL, '2013-01-02', '2013-01-05', NULL, ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9818, '2012-11-09', 'Clinton', 'Schlee', NULL, NULL, 'MI', '49770', NULL, '(269)274-4058', NULL, 'clintonjschlee@gmail.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '75.135.139.42', true, 6, 5, 'Looking for unit with fire place', '2012-12-30', '2012-01-01', 'Please provide avaiabilty & rates', ':23:2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9811, '2012-10-19', 'jack', 'law', '4180 mallards landing', 'highland', 'MI', '48357', NULL, NULL, NULL, 'jack@renovationsroof.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '107.5.202.6', true, 6, 6, NULL, '2012-12-27', '2013-01-02', 'we could get by with 3 2 bedroom units if the are close to one another', ':11:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9819, '2012-11-10', 'james', 'courtley', '578 oakbrige', 'ROCHEster', 'MI', '48306', NULL, NULL, NULL, 'jkellyc@comcast.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; MS-RTC LM 8; .NET CLR 1.1.4322)', '68.32.83.183', true, 8, NULL, 'LOOKING TO STAY FOR NEW YEARS, CAN COME IN THE DAY BEFORE OR TWO DAYS BEFORE AND STAY UNTIL NEW YEARS DAY OR THE DAY AFTER. PLEASE RESPOND ON AVAILABLE SIZES OF CONDOS AVAILABLE AND DATES. THANK YOU.', '2012-12-30', '2013-01-02', 'HAVE STAYED BEFORE, SEVERAL WORK OUTINGS AND PERSONAL WEEKENDS. IT HAS BEEN GIVE YEARS SINCE STAYING WITH YOU.', ':12:25:2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10148, '2014-01-22', 'Sharon', 'Denham', NULL, NULL, NULL, NULL, NULL, '248-223-3309', NULL, 'sharon.denham@plantemoran.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '63.85.218.30', true, NULL, NULL, 'Golf Little Traverse Friday and Sunday\r
+Bay Harbor - Saturday', '2014-06-27', '2014-06-29', NULL, NULL, NULL, ':3:', '4', NULL, '2', NULL, '4', 'morning', '248-921-3795', 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9821, '2012-11-12', 'julie', 'bedford', '5140 myrtle lane', 'fenton', 'MI', '48430', NULL, '517 861 7715', NULL, 'smjbedford@aol.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_3) AppleWebKit/534.55.3 (KHTML, like Gecko) Version/5.1.5 Safari/534.55.3', '71.238.212.209', false, 7, 5, NULL, '2012-12-25', NULL, 'We are flexible on the dates - looking to do some skiing with the family over the holidays - family of 4 - 2 adults - 2 children ages 8 and 13', ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9822, '2012-11-13', 'Keisha', 'Beasley-Dorsey', '26573 Summerdale Dr', 'Southfield', 'MI', '48033', NULL, '3135068961', NULL, 'keis95i@me.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; CMDTDF; .NET CLR 1.1.4322; .NET4.0C; .NET4.0E)', '69.215.26.194', true, NULL, NULL, NULL, NULL, NULL, NULL, ':29:3:12:6:23:25:2:4:18:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6812, '2008-05-03', 'justin', 'scott', '116 Oak st.', 'Mt. Pleasant', 'MI', '48858', NULL, '7349222190', NULL, 'jscott418@gmail.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '166.87.181.40', true, 9, 4, NULL, NULL, NULL, 'please call me, I would like to stay after xmas sometime for about 4 days. wood fire place 2 bedroom, 1 adult and 3 small children.', '', NULL, '1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9823, '2012-11-18', 'Sue', 'Newman', '4305 E. Patterson Road', 'Beavercreek', 'OH', '45430', NULL, '9373075600', NULL, 'suednewman@hotmail.com', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.64 Safari/537.11', '76.250.132.122', true, NULL, NULL, NULL, NULL, NULL, NULL, ':29:10:17:25:2:4:18:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9824, '2012-11-20', 'David', 'Lillie', '331 Cathcart st', 'Sault Ste. Marie', 'ON', 'P6a1e8', NULL, '7052579160', NULL, 'dlillie@dundeewealth.com', 'Mozilla/5.0 (iPad; CPU OS 6_0_1 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A523 Safari/8536.25', '74.198.164.199', true, 9, NULL, NULL, '2012-12-27', '2012-12-30', NULL, ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9825, '2012-11-24', 'Rosalia', 'Cruciani', '8160 Stout Ave.', 'Grosse Ile', 'MI', '48138', NULL, '734 676-6433', NULL, 'liacruciani@yahoo.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.57.2 (KHTML, like Gecko) Version/5.1.7 Safari/534.57.2', '98.224.182.25', true, 7, NULL, NULL, '2012-12-26', '2012-12-29', NULL, ':12:2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9826, '2012-11-24', 'Brian', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'andersonbrian776@gmail.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/536.26.17 (KHTML, like Gecko) Version/6.0.2 Safari/536.26.17', '174.101.193.57', false, 6, NULL, 'What is your pet policy?  I''m considering a 2 bedroom 2 bath condo over Christmas time.', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9853, '2013-01-09', 'Renee', 'Thomas', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'rethomas618@gmail.com', 'Mozilla/5.0 (Windows NT 5.1; rv:17.0) Gecko/17.0 Firefox/17.0', '140.194.140.22', false, 7, 5, NULL, '2013-01-18', '2013-01-21', NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9827, '2012-11-25', 'Richard', 'Smith', '10 Torrey Pines Ln.', 'Pinehurst', 'NC', '28374', NULL, '910 295-0807', NULL, 'rjsharbor@nc.rr.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/536.26.17 (KHTML, like Gecko) Version/6.0.2 Safari/536.26.17', '65.191.70.213', true, NULL, NULL, 'Looking for a Summer rental to coincide with grandson attendance at Camp Daggett.  I''m checking to see when the Summer sessions occur.  Will need a condo that would accommodate up to 7-10 people.', NULL, NULL, NULL, ':12:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3248, '2005-08-29', 'Michele', 'Gross', '1535 S. Lallendorf Rd', 'Oregon', 'OH', '43616', NULL, '4196981247', NULL, 'dgross4@yahoo.com', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322; .NET4.0C; .NET4.0E)', '159.116.1.11', false, 8, NULL, NULL, NULL, NULL, 'We booked a condo for MLK weekend. For some reason I am afraid I booked the wrong weekend. The name is Dan and MIchele Gross and could you tell me what dates we have and also what unit we have. Thanks! Michele', ':12:23:22:', false, '1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9829, '2012-11-28', 'Brad', 'Foster', '804 University Pl.', 'Grosse Pointe', 'MI', '48230', NULL, '3139523354', NULL, 'brad@bradleyjfoster.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.91 Safari/537.11', '165.123.205.1', false, 4, NULL, NULL, '2012-12-21', '2012-12-24', 'Somewhere between 5-10 people. Can you give me prices for multiple options. What about the 26th through the 29th?', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3205, '2005-08-29', 'Cindy', 'Neff', '468 Park St.', 'Birmingham', 'MI', '48008', NULL, '248-644-7361', NULL, 'cindy4avon@hotmail.com', 'Mozilla/5.0 (iPhone; CPU iPhone OS 6_0_1 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Mobile/10A523', '174.252.245.103', true, 9, 4, 'Hi Debby. I''m not sure if you remember me or not. I''m the one you and I wrote back and forth a couple yrs ago on a special price to stay there since I''ve told several people about your resort. I continue to do so. It is awesome there. We''d like to come spend Christmas weekend there. Can you pls send me the cost for two adults for a 2 bedroom 1 bath condo?  We are excited to come back. Has been a few yrs. Will wait to hear back from you. \r
+\r
+Cindy', '2012-12-22', '2012-12-25', NULL, ':12:', false, '2:1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9830, '2012-12-01', 'Shelly', 'Petoskey', NULL, 'Highland', 'MI', '48357', NULL, '734-558-2488', NULL, 'slpetosk@svsu.edu', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.4; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '76.122.183.247', false, 4, 5, 'I have a softball team playing in Petoskey.  Would we be able to Block 15 to 20 rooms until Feb.?\r
+\r
+Would we be able to receive a group discount?\r
+\r
+Thanks- Shelly Petoskey', '2013-08-01', '2013-08-04', NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9832, '2012-12-04', 'Kerri', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'kmac76@shaw.ca', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC LM 8; InfoPath.3)', '69.42.179.130', true, 4, NULL, NULL, NULL, NULL, 'Would there be any availibility for Jan.1st and 2nd (2 nights) for either 4 or 10 ppl.\r
+could you let me know for each and what the cost would be?', ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9831, '2012-12-02', 'John', 'Whedon', '21935 wildwood', 'Dearborn', 'MI', '48128', NULL, '248-760-7749', NULL, 'Jw0003@aol.com', 'Mozilla/5.0 (iPad; CPU OS 5_1_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9B206 Safari/7534.48.3', '68.41.96.51', true, 9, 3, NULL, '2012-12-18', '2013-01-02', 'Prefer unit with wood burning fireplace even if it requires a 2 bedroom 1 bath unit.  It is a unit for staff to stay in while working at our bosses home up there.', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9833, '2012-12-05', 'Jessica', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'JessicaGLundberg@gmail.com', 'Mozilla/5.0 (iPad; CPU OS 5_1_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9B206 Safari/7534.48.3', '67.149.135.86', false, 7, 1, NULL, '2012-12-29', '2013-01-01', NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9834, '2012-12-08', 'kathy', 'miller', '1745 Sevenoaks Rd.', 'Jackson', 'MI', '49203', NULL, '517 784-3531', NULL, 'kathy.miller@jcisd.org', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; InfoPath.2)', '24.23.65.220', true, 4, NULL, NULL, '2013-08-22', '2013-08-24', NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8937, '2009-11-11', 'jeff', 'yarian', '2143 Horton', 'Muskegon', 'MI', '49445', NULL, '2317440713', NULL, 'ayarian@msn.com', 'Mozilla/5.0 (Windows NT 6.1; rv:18.0) Gecko/20100101 Firefox/18.0', '50.36.169.172', true, 9, NULL, 'We have said at Trout Creek several times.  Just checking to see if you still have the special that if you stay two nights you get the third free.', '2013-06-13', '2013-06-16', NULL, ':14:', NULL, '1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9835, '2012-12-11', 'Jennifer', 'Valentine', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'jvalentine73@yahoo.com', 'Mozilla/5.0 (iPad; U; CPU OS 4_3_3 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J3 Safari/6533.18.5', '174.101.30.153', false, 8, NULL, 'We have reserved units 59 & 66.  I was wondering if there are pictures available of those units?  Also, how far is it to the nearest beach?', NULL, NULL, 'We have reservations for July via Global Vacations.', ':29:12:6:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9836, '2012-12-11', 'Scott', 'Weatherford', '1335 Farwood Dr.', 'East Lansing', 'MI', '48823', NULL, '5173511864', NULL, 'weatherfordmedia@gmail.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '99.88.190.142', false, 4, NULL, NULL, NULL, NULL, 'I made a reservation on your website earlier today. I would like to cancel that reservation.\r
+It was for 12/30 to 1/02 for a 2 br. loft.\r
+Please let me know when you have received this message.', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9837, '2012-12-11', 'Kim', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'kjonesrep@comcast.net', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '71.238.140.142', true, 9, 5, NULL, '2012-12-12', '2012-12-14', NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9838, '2012-12-12', 'ben', 'laubender', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'benjamin.laubender@gmail.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0', '24.53.165.114', true, 7, 1, 'Inquiring about cost and availability for the weekend.', '2012-01-18', NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9839, '2012-12-13', 'gregory', 'jones', '25206 gettysburg rd', 'plainfield', NULL, '60544', NULL, '8479753948', NULL, 'gregdjones25206@gmail.com', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.97 Safari/537.11', '198.29.191.149', true, 6, 1, 'i''ve been to crystal mountain before that''s it, hoping for an experience as good or better', NULL, NULL, NULL, ':12:25:2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9840, '2012-12-13', 'Donna', 'Gabriel', NULL, 'Cleveland', 'OH', '44113', NULL, NULL, NULL, 'donnagabriel70@gmail.com', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.18) Gecko/20110614 Firefox/3.6.18 GTB7.1', '182.68.88.152', true, 8, NULL, 'We can increase rankings of your website in search engines. Please reply back for more details.', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9841, '2012-12-14', 'Cindy', 'Neal', '5290 W. State Road 28', 'Frankfort', 'IN', '46041', NULL, '765-659-2399', NULL, 'cmttneal@gmail.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '70.194.67.92', true, NULL, NULL, NULL, NULL, NULL, NULL, ':12:2:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9842, '2012-12-15', 'Eric', 'Ash', '4758 pine hollow rd', 'holland', 'MI', '49423', NULL, '6163354618', NULL, 'boat904@gmail.com', 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.97 Safari/537.11', '97.84.8.96', true, 8, 6, NULL, '2012-12-31', '2012-01-02', 'we have 3 families looking for accomodations for new years.  Do you have anything?', ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9843, '2012-12-20', 'gary', 'hill', '1330 georgia', 'marysville', 'MI', '48040', NULL, '8109563535', NULL, 'ghill002002@yahoo', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MDDR; .NET4.0C; .NET4.0E)', '70.39.176.12', true, 9, NULL, NULL, '2012-12-27', '2012-12-30', 'was i to recieve a confirmation number for my resvervation?', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9844, '2012-12-23', 'changsook', 'yu', NULL, 'novi', 'MI', NULL, NULL, '734-673-2549', NULL, 'sckim_home@hotmail.com', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET4.0C)', '97.71.117.210', true, 9, 5, NULL, '2012-12-25', '2012-12-27', 'from 12-25~12-27 3 night please', ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9845, '2012-12-28', 'Ivan', 'Ballard', NULL, 'Portland', NULL, '97205', NULL, NULL, NULL, 'ballardivan60@gmail.com', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.5) Gecko/20091102 Firefox/3.5.5 GTB7.1', '182.68.81.7', true, 8, NULL, 'We offer quality Search Engine Optimization / SEO Services and Internet Marketing Solutions. Our dedicated team of SEO Professionals ensures Top 10 search engine rankings. Our SEO Processes are designed in view of the SEO guidelines, and white hat SEO techniques are strictly followed to ensure that our clients from world over get the best SEO services. Please reply to this email so we can send you more details.', NULL, NULL, 'We offer quality Search Engine Optimization / SEO Services and Internet Marketing Solutions. Our dedicated team of SEO Professionals ensures Top 10 search engine rankings. Our SEO Processes are designed in view of the SEO guidelines, and white hat SEO techniques are strictly followed to ensure that our clients from world over get the best SEO services. Please reply to this email so we can send you more details.', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9846, '2012-12-28', 'Derrick', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'dconkle2@gmail.com', 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.97 Safari/537.11', '24.236.148.218', true, 7, 4, NULL, NULL, NULL, 'Would just like to know what your rates are?  I am not sure on a date yet but I would be interested in a rate for a check-in Friday and Check out Sunday just a weekend deal. I know rates will very from week to week but just a general idea would be great.  Thank you.', ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9847, '2013-01-02', 'David', 'Sparks', '3735 Bowen Rd.', 'Toledo', 'OH', '43613', NULL, '(419) 471-0815', NULL, 'djsparks@marathonpetroleum.com', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322; InfoPath.2)', '4.59.45.65', false, 8, NULL, 'I was unable to specifically look for the condo that I won the reservation for and would like  a list of available dates to make the reservation.', NULL, NULL, 'Purchased a week long reservation in Unit 31 from a United Way auction through Marathon in Detroit, MI. Just checking to see availability for this year to plan a trip. I would prefer to come in the late spring/summer.', ':29:12:6:23:22:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9848, '2013-01-02', 'George', 'Gannage', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'ggannage@yahoo.com', 'Mozilla/5.0 (Windows NT 6.0; rv:5.0) Gecko/20100101 Firefox/5.0', '66.216.202.29', true, 8, NULL, 'I far are you from Boyne Highlands?Can you walk there from your condos?If so, I want the closest unit to Boyne highlands,', NULL, NULL, 'I have heard about your condos from others.', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9849, '2013-01-02', 'Holly', 'Mustion', '4235 covered bridge road', 'Bloomfield hills', 'MI', '48302', NULL, '2488218850', NULL, 'Hemustion@earthlink.net', 'Mozilla/5.0 (iPad; CPU OS 6_0_1 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A8426 Safari/8536.25', '75.39.32.216', true, 9, 3, NULL, '2013-02-21', '2013-02-22', NULL, ':12:2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9850, '2013-01-04', 'Mike', 'Davis', '29 Lowell NE', 'Grand Rapids', 'MI', '49503', NULL, '616-292-6401', NULL, 'steven_davis1958@att.net', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20100101 Firefox/17.0', '75.12.94.141', true, 6, 6, 'My daughter is planing a wedding late August at Bay Harbor Village so we are looking for a place to stay for family cumming from Grand Rapids,Mi. I am not sure how many yet but looking for prices on a condo in the area we may need more than one. Could you let me know if you have any condos available on the days requested and how many nights are required and how much per night. Thanks! Mike', '2013-08-29', '2013-08-31', NULL, ':23:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9856, '2013-01-13', 'Michelle', 'Stookey', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'mes2626@aol.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/534.57.7 (KHTML, like Gecko) Version/5.1.7 Safari/534.57.7', '69.88.218.156', false, 4, NULL, 'My family has a reservation  toward the end of the month, and I didn''t see anything about pets. Do you allow pets? If yes, how much for a deposit on dogs?', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9828, '2012-11-28', 'Michael', 'Peterson', '38239 French Pond', 'Farmington Hills', 'MI', '48331', NULL, '248 210-9582', NULL, 'jmpeterson@twmi.rr.com', 'Mozilla/5.0 (Macintosh; PPC Mac OS X 10_5_8) AppleWebKit/534.50.2 (KHTML, like Gecko) Version/5.0.6 Safari/533.22.3', '174.84.255.115', true, 8, 4, NULL, NULL, NULL, 'Hi. We have reservations for unit 41 through Global Connections. Question: does this condo have high speed internet provided? \r
+\r
+Thanks. \r
+\r
+Michael', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9851, '2013-01-05', 'Donald', 'Offringa', '5709 16th Avenue', 'Hudsonville', 'MI', '49426', NULL, '616-667-1248', NULL, 'dco4653@att.net', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0)', '108.89.92.223', false, 8, NULL, 'We are currently booked through Global Connections to stay in Unit #41 from 7/27/13 to 8/3/13.   I noticed in reviewing your website that Trout Creek offers golfing packages including golf couses Black Lake, Boyne Highland and Little Traverse Bay.    As a guest of Trout Creek, but not signed up under one of your golf packages,do you offer special golf rates to play any of the above mentioned courses?', NULL, NULL, NULL, ':11:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9852, '2013-01-06', 'Joseph', 'Kuberski', NULL, NULL, NULL, NULL, NULL, '7344764887', NULL, 'Kubejos@chrobinson.com', 'Mozilla/5.0 (iPad; CPU OS 6_0 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A403 Safari/8536.25', '24.231.183.222', true, 8, 6, NULL, '2013-02-08', '2013-02-10', NULL, ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9854, '2013-01-09', 'Michelle', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'mpherren@yahoo.com', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20100101 Firefox/17.0', '67.172.88.254', true, 9, NULL, 'We would like to rent a condo that allows for pets.  We have a vizsla (40 lb dog)and although she has good manners & is not unruly, we understand not everyone welcomes a dog.', NULL, NULL, NULL, ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9855, '2013-01-11', 'STACY', 'KLEIN', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'SLKLEIN@HUGHES.NET', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20100101 Firefox/17.0', '71.83.6.218', true, 9, NULL, 'Have you set the date for the fall scrap booking retreat?', NULL, NULL, NULL, ':20:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (1200, '2004-01-27', 'Joan', 'Bickes', '3345 Erie Dr', 'Orchard Lake', 'MI', '48324', NULL, '248 762 0546', NULL, 'jbickes@wayne.edu', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SearchToolbar 1.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2)', '71.227.76.14', true, 9, NULL, NULL, '2013-07-28', '2013-08-03', 'I am planning a family reunion. There are 5 families with their children and grandchildren\r
+The largest family is 6 adults with 8 children \r
+Family of 6 adults and 4 grandchildren (2 are under 2 years)\r
+Family of 5 adults and 2 grandchilren (1 under 2)\r
+Family of 5 adults and 1 grandchild (under 2)\r
+Family of 4 adults', ':15:29:3:6:11:22:16:', NULL, '1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9857, '2013-01-13', 'Pat', 'Zawadzki', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'pzawadzki@orchardlakeschools.com', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko/20100101 Firefox/18.0', '68.42.157.97', false, 8, NULL, 'PLEASE CANCEL MY RESERVATION  Unit 45 for next weekend.  Please notify when done, and if possible please rent out.\r
+\r
+Thank You!', NULL, NULL, 'owner', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9858, '2013-01-14', 'Marlene', 'Bennett', '1541 Rebecca', 'Hudsonville', 'MI', '49426', NULL, '616-667-1199', NULL, 'mb3561@sbcglobal.net', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '75.5.233.82', true, NULL, NULL, NULL, NULL, NULL, NULL, ':29:10:3:12:6:11:23:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9859, '2013-01-15', 'phyllis', 'Vruggink', '5064 Tyler St.', 'Hudsonville', 'MI', '49426', NULL, '6166691346', NULL, 'phylv@att.net', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB7.4; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; eSobiSubscriber 2.0.4.16; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET4.0C)', '108.89.94.199', true, 4, NULL, NULL, NULL, NULL, 'Are there cross country ski trail near by.', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9860, '2013-01-17', 'Lisa', 'Hamidi', '9818 Nabozny Dr', 'Milan', 'MI', '48160', NULL, '2483026049', NULL, 'lisahamidi@me.com', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC LM 8; .NET4.0C; .NET4.0E; InfoPath.2)', '199.67.131.157', false, 4, 5, NULL, '2013-01-19', '2013-01-21', 'We need to know if you are dog friendly and have availabilty this weekend.', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9861, '2013-01-17', 'scott', 'moeller', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'scott@grandpremiervacations.com', 'Mozilla/5.0 (Windows NT 6.1; rv:18.0) Gecko/20100101 Firefox/18.0', '70.169.152.148', false, 6, 5, NULL, '2013-07-13', '2013-07-16', 'I have a client who is looking for a few nights in Harbor Springs. Do you have travel agent discounts?', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9862, '2013-01-20', 'Pamela', 'Morell', '2008 Scotch Drive', 'Holland', 'MI', '49423', NULL, '6165021261', NULL, 'Pamorell2@comcast.net', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.17 (KHTML, like Gecko) Chrome/24.0.1312.52 Safari/537.17', '24.247.183.230', true, 4, NULL, NULL, '2013-02-23', '2013-02-25', 'Got your information from Sally Hunt...  I used to help her clean the condos "back in the day".  :)  I have been wanting to call, but only seem to get to it after regular business hours, so thought perhaps I would try to e-mail instead.\r
+\r
+Looking, actually, for the saturday and sunday night in february starting the 23rd.  3 queens, plus 4 twins or 2 twins and pullout....would work.  \r
+\r
+Thank you so much! \r
+Pam (Uroda) Morell', ':3:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9863, '2013-01-22', 'Mark', 'Zickel', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'mjzickel@charter.net', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0)', '64.141.174.146', true, 9, NULL, 'I would like to rent unit 87, 2/28, 3/1/ 3/2 checkout 3/3.  (3 nights) I usually get Thursday night free when renting this unit.  Please send me your best rates with taxes, all fees included.   Thanks.  Mark  (231) 557-1025', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9711, '2012-04-04', 'Stacy', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'slklein@hughes.net', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko/20100101 Firefox/18.0', '71.83.6.218', true, 9, NULL, NULL, NULL, NULL, 'Chris-\r
+\r
+Sorry to report that Nikki & I won''t be able to make the fall retreat this yr (bow season).  We LOVED it last year & regret not being able to return.  With that said do you know of any other retreats in your area that may be in late Sept or late Oct.  Thanks  Stacy Klein', ':17:23:4:20:18:', NULL, ':2:1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9864, '2013-01-25', 'Erik', 'Hautamaki', NULL, NULL, NULL, NULL, NULL, '5864051045', NULL, 'eahautam@yahoo.com', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.17 (KHTML, like Gecko) Chrome/24.0.1312.56 Safari/537.17', '173.14.49.61', true, 9, 1, NULL, '2013-05-17', '2013-05-19', NULL, ':15:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9865, '2013-01-26', 'vito', 'raimondo', '22475 Lange', 'Saint Clair Shores', 'MI', '48080', NULL, '586-945-4940', NULL, 'vraimond@ford.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '71.227.90.174', true, 8, NULL, 'Cannot find any prices on your site. A map of Michigan would also help being I''m not familaiar with area. I live in lower east michigan.', NULL, NULL, 'Church Wild Game auction dinner', ':15:17:12:6:23:25:22:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9867, '2013-01-29', 'Joseph', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'coachjoe1721@yahoo.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '108.66.197.52', false, 8, NULL, 'I have booked Condo Unit 66 through Global Vacation Network. I have been looking on your site and have been unable to find any information regarding this unit. Do you have any info and photos you can send me of this unit.', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9881, '2013-02-04', 'Dave', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'dseger@aol.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '75.114.252.106', true, 9, 3, NULL, NULL, NULL, 'Trying to find out the price of 6-7 nights in late July.', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9868, '2013-01-31', 'Liz', 'Klinger', NULL, 'Grand Rapids', 'MI', NULL, NULL, '734-239-5365', NULL, 'eliza.leon@hotmail.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322)', '69.87.151.194', true, 6, NULL, 'Hi! I''m hoping to get some information about pricing and availability for your condos for the weekend of the 2013 Zoo de Mack bike ride. I see on your website you have some information about the ride, and it looks like your resort would be a great option for our group!\r
+However, we''re only looking to make arrangements for Friday night- do you permit people to make one night reservations for this event?\r
+Please call or email me with some more info! Thank you!', '2013-05-17', '2013-05-18', NULL, ':15:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9869, '2013-01-31', 'Dawn', 'Pryor', NULL, NULL, 'MI', NULL, NULL, NULL, NULL, 'dawnpryor22@yahoo.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET CLR 1.1.4322; InfoPath.3)', '67.202.19.66', true, 6, NULL, NULL, '2013-07-13', '2013-07-20', 'Looking to accommodate 10 families, each with their own condo for these dates.  How far are you from the beach?  Is there a community spot for grilling?\r
+\r
+Thanks.', ':15:29:12:6:11:22:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9870, '2013-01-31', 'Kurt', NULL, NULL, NULL, 'MI', NULL, NULL, NULL, NULL, 'kpm68@yahoo.com', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.17 (KHTML, like Gecko) Chrome/24.0.1312.56 Safari/537.17', '75.144.76.225', false, 4, NULL, 'Do you allow pets?  Id like to bring my dog if possible.', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9879, '2013-02-04', 'Chad', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'arv3580@yahoo.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.5; rv:16.0) Gecko/20100101 Firefox/16.0', '99.119.128.202', false, NULL, NULL, NULL, '2013-07-19', '2013-07-22', NULL, NULL, NULL, ':3:', '12', NULL, NULL, '12', '12', 'morning', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8132, '2009-06-04', 'Marcel', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'cello1269@hotmail.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB7.4; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET4.0C; .NET4.0E; InfoPath.1; McAfee)', '99.158.224.133', true, 9, NULL, NULL, NULL, NULL, 'I reserved a condo for Friday, May 17th.  Could you please send me an email reciept/confirmation.\r
\r
+Thank you,\r
\r
+Marcel Borja\r
+(586)764-8624', ':15:', NULL, '1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (443, '2003-08-20', 'deb', NULL, '', '', '', '', NULL, NULL, NULL, 'debby@troutcreek.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)', '71.13.68.235', false, 1, NULL, NULL, '2013-06-05', '2013-06-07', '', '', NULL, '3:', '2', NULL, NULL, NULL, '2', NULL, NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8483, '2009-06-07', 'Tammy', 'Lewandowski', '81 Montmorency', 'Rochester Hills', 'MI', '48307', NULL, NULL, NULL, 'tslewandowski@wowway.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '74.199.0.158', true, 9, 6, 'Actually I need alot more cabins.  We have about 30 of us that would like to have a family reunion.  We normally stay in cabins close to each other but are looking for a different place to stay this year.  We like to golf, bbq, have fires at night, be able to do outdoor activities in a yard area.  Could you recommend something for us', '2013-07-20', '2013-07-27', NULL, ':29:3:12:6:23:22:', NULL, '1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9872, '2013-01-31', 'Anne', 'Fleming', '607 Wildwood Avenue', 'Jackson', NULL, '49201', NULL, '5177459501', NULL, 'anne@fleminglaw.com', 'Mozilla/5.0 (iPad; CPU OS 6_0_1 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A523 Safari/8536.25', '70.101.149.170', true, 9, NULL, 'We are interested in 2 bed 2 bath condo for this weekend.  Please advise availability and rate.  Thanks.', '2013-03-08', '2013-03-10', NULL, ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9873, '2013-01-31', 'Brian', 'Bell', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Bell@ameritech.net', 'Mozilla/5.0 (iPad; U; CPU OS 4_2_1 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8C148 Safari/6533.18.5', '69.47.56.82', false, 7, NULL, NULL, '2013-02-22', '2013-02-25', '4 adults and 2 kids looking to ski for weekend. Looking for specials or good deal. Thank you', ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9871, '2013-01-31', 'Test', 'User', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test@gaslightmedia.com', 'Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:18.0) Gecko/20100101 Firefox/18.0', '127.0.0.1', true, NULL, NULL, 'just \r
+test', '2013-01-02', '2013-01-02', NULL, NULL, NULL, ':3:', NULL, NULL, NULL, NULL, NULL, NULL, '(231) 487-0642', 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9880, '2013-02-04', 'Hillery', 'Ross', '1939 Summerset Dr', 'Muskegon', 'MI', '49442', NULL, '5132939562', NULL, 'josephine44@yahoo.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:18.0) Gecko/20100101 Firefox/18.0', '50.33.65.212', true, NULL, NULL, NULL, NULL, NULL, NULL, ':12:23:14:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9874, '2013-02-01', 'Kevin', 'Wolfram', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Kevin.wolfram@ameritox.com', 'Mozilla/5.0 (iPad; CPU OS 6_0_1 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A523 Safari/8536.25', '174.232.0.170', true, NULL, NULL, 'We play 2 rounds per day, preferrably around 8:30 and 2:30', '2013-06-01', '2013-06-04', NULL, NULL, NULL, ':3:', '12', NULL, NULL, NULL, '12', 'morning', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9875, '2013-02-01', 'Chris', 'Guy', NULL, NULL, NULL, NULL, NULL, '586-630-0814', NULL, 'cguy0910@yahoo.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/536.26.17 (KHTML, like Gecko) Version/6.0.2 Safari/536.26.17', '68.43.99.216', true, NULL, NULL, 'Have a golf outing of 24 need tee times for
+fri PM
+Sat AM and PM
+Sun Mid morning 11AM
+i look forward to hearing from you', '2013-06-21', '2013-06-23', NULL, NULL, NULL, ':3:', '16', '8', NULL, '24', '16', 'morning', '586 6300814', 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9876, '2013-02-01', 'ART', 'DUERR', NULL, NULL, NULL, NULL, NULL, '734-748-9533', NULL, 'duerr3350@aol.com', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB7.4; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET4.0C)', '68.43.247.46', true, NULL, NULL, NULL, '2013-08-12', '2013-08-14', NULL, NULL, NULL, ':3:', '4', NULL, '24 golfers', '24', NULL, 'morning', '734-536-7538', 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9877, '2013-02-01', 'jeff', 'mcintosh', NULL, NULL, NULL, NULL, NULL, '5863830057', NULL, 'jeffmacattack@wowway.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '74.199.68.75', true, NULL, NULL, NULL, '2013-05-17', '2013-05-19', NULL, NULL, NULL, ':3:', '8', NULL, NULL, NULL, NULL, 'morning', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9902, '2013-02-23', 'Rachel', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Schoahs@shaw.ca', 'Mozilla/5.0 (iPad; CPU OS 5_1_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9B206 Safari/7534.48.3', '24.109.46.249', true, 8, 4, NULL, '2013-03-12', '2013-03-15', 'We have stayed with you before', ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7733, '2009-01-21', 'Chris', 'Brilinski', '', '', '', '', NULL, '231-526-2148', NULL, 'chris@troutcreek.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '71.13.68.235', true, NULL, NULL, NULL, '2013-06-23', '2013-06-26', '', '', NULL, '3:', '8', NULL, NULL, '8', '8', NULL, NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9309, '2010-01-20', 'Chris', 'Brilinski', '', '', '', '', NULL, '231-526-2148', NULL, 'chris@troutcreek.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '71.13.68.235', true, NULL, NULL, NULL, '2013-06-23', '2013-06-26', '', '', NULL, '3:', '8', NULL, NULL, '8', '8', NULL, NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8581, '2009-07-17', 'Carol', 'Schrotenboer', '', '', '', '', NULL, '616-836-3934', NULL, 'schrotie@charter.net', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '24.236.193.202', true, NULL, NULL, 'Hey Chris!  Looking forward to seeing you in March!!!! Get your dancing shoes on! LOL', '2013-05-17', '2013-05-19', '', ':11:', NULL, '3:', '4', NULL, '2', NULL, '4', 'morning', '616-392-8110', 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9895, '2013-02-19', 'jerilyn', 'robison', '4631 ottawa', 'okemos', 'MI', '48864', NULL, '5177756276', NULL, 'jerilynrobison@yahoo.com', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko/20100101 Firefox/18.0', '68.61.149.229', true, 4, 5, 'I would like unit 53 building 8\r
+I also want to reserve condo 65 building 0 and condo 112 building 16', '2013-03-01', '2013-03-03', NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9882, '2013-02-05', 'Mark', 'Karavite', '1561 Eason', 'Waterford', 'MI', '48328', NULL, '248-618-9000', NULL, 'mkaravite@comcast.net', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/536.26.17 (KHTML, like Gecko) Version/6.0.2 Safari/536.26.17', '76.226.137.152', true, 6, 1, 'We''re looking for a place near Nubs Knob / Boyne Highlands to sleep 2 adults & 4 kids for the week of winter break:  Feb. 17 - 22.\r
+We''d like the Mid Week Lodging Special & preferably a place with a real fireplace.\r
+We''re also interested in the discount lift tickets.\r
+Please contact me at 248-618-9000 to discuss options.', '2013-02-17', '2013-02-22', NULL, ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9883, '2013-02-05', 'Jennifer', 'Schultz', NULL, NULL, 'MI', NULL, NULL, NULL, NULL, 'jennschultz11@hotmail.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '68.41.21.121', true, 8, NULL, NULL, NULL, NULL, 'Soccer tournament', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9884, '2013-02-06', 'Mary rose', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Mfahlman@comcast.net', 'Mozilla/5.0 (iPad; CPU OS 6_0_1 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A8426 Safari/8536.25', '71.227.22.164', false, 9, NULL, NULL, NULL, NULL, 'Are either of the two five bedroom condos \r
+Available in the month of July 2013?\r
+\r
+How much are they for a week?', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9888, '2013-02-10', 'Yvonne', 'Frysh', '290 S Haas St', 'Frankenmuth', 'MI', '48735', NULL, '989-652-3071', NULL, 'yfrysh@gmail.com', 'Mozilla/5.0 (iPad; CPU OS 6_1 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10B141 Safari/8536.25', '75.134.176.168', true, 7, 1, NULL, '2013-02-21', '2013-02-24', '2nd request date. \r
+ Mar. 7 -  10, 2013\r
+\r
+ I''m interested in Condo''s 16 and 24.', ':2:24:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9890, '2013-02-12', 'Jeff', 'Simmonds', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'jsimmonds@macvalves.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; BTRS125671; GTB7.4; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)', '173.13.15.17', false, NULL, NULL, 'I am inquiring about a golf outing for one nights lodging and 18 holes of golf at Little Traverse Bay.  The night of lodging would be September 6th, with golf on the morning of September 7th.  We will have between 28 and 36 golfer and would like to tee off around 7:45 a.m.\r
+\r
+Thanks and let me know if you have any questions.  Thanks for your time and look forward to hearing from you.\r
+\r
+Jeff Simmonds', '2013-09-06', '2013-09-07', NULL, NULL, NULL, ':3:', NULL, NULL, NULL, NULL, NULL, 'morning', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9891, '2013-02-12', 'Corey', 'Mettler', '3560 Barker St.', 'Hudsonville', 'MI', '49426', NULL, NULL, NULL, 'cmettler@bethany.org', 'Mozilla/5.0 (Windows NT 5.1; rv:18.0) Gecko/20100101 Firefox/18.0', '75.144.95.5', true, 8, 3, 'We were specifically interested in knowing if unit #59 has a fireplace or jacuzzi tub.  The website made it seem as if all of your condos had these, but since it is a private unit and was not listed in our amenities list through Global, we weren''t sure if it was standard for all units or not.  Thanks for you help!', NULL, NULL, 'We are members of Global Discovery Vacation Club.  We are looking forward to experiencing this resort!', ':15:12:6:11:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9892, '2013-02-13', 'Michael', 'O''Neill', '311 Valerie Court', 'Essexville', 'MI', '48732', NULL, '989 598-4441', NULL, 'mpatrick51@yahoo.com', 'Mozilla/5.0 (Macintosh; PPC Mac OS X 10_5_8) AppleWebKit/534.50.2 (KHTML, like Gecko) Version/5.0.6 Safari/533.22.3', '68.188.176.104', true, NULL, NULL, 'I put together a golf outing for upwards of 40-50 golfers and would like to know your best price for housing such a group ... each man will need a separate bed...', NULL, NULL, NULL, ':10:17:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9894, '2013-02-19', 'Neville', 'Bugli', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'nbugli@sbcglobal.net', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0; BOIE9;ENUS)', '68.73.52.94', true, 4, NULL, 'Hi There,\r
+\r
+We heard about Trout Creek through our good friends who were there a year ago. We are planning a family re-union in July. Can you please send us availability and costs. Planning to be there 3 nights. We may need one or two condos depending on the number of family members. \r
+\r
+Thanks', '2013-07-02', '2013-07-05', NULL, ':15:3:12:22:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9896, '2013-02-20', 'Dit', 'Vannouvong', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'dvannouvong@gmail.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '67.202.19.66', false, NULL, NULL, 'Looking for two days unlimited golf and two night''s stay.', '2013-05-17', '2013-05-19', NULL, NULL, NULL, ':3:', '4', NULL, NULL, NULL, '4', 'morning', NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9897, '2013-02-20', 'Vanessa', 'Cruz', '2035 Commerce Blvd, Apt 216', 'Ann Arbor', 'MI', '48103', NULL, '8477698799', NULL, 'vanessacruz7@gmail.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/537.17 (KHTML, like Gecko) Chrome/24.0.1312.57 Safari/537.17', '68.42.214.32', true, 6, 5, 'My family and I are looking for 1 room. We wanted to know about the best package for these activities: dog sledding, snow tubes, skiis, snowboards, winter rafting and snowmobiles. Also, do you have any indoor pools or golf available? We are looking for a room for 4-6 adults or two rooms.  \r
+\r
+Dates: March 2013 visit 3/24-3/26\r
+\r
+Thanks, \r
+Vanessa', '2013-03-24', '2013-03-27', 'My family and I are looking for 1 room. We wanted to know about the best package for these activities: dog sledding, snow tubes, skiis, snowboards, horse drawn carriages. Also, do you have any indoor pools or golf available? We are looking for a room for 4-6 adults or two rooms.  \r
+\r
+Dates: March 2013 visit 3/24-3/26\r
+\r
+Thanks, \r
+Vanessa', ':12:6:11:23:25:2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9898, '2013-02-21', 'Sarah', 'hotchkiss', '4535 N. Hamilton Ave apt. 3w', 'Chicago', 'IL', '60625', NULL, '6163406766', NULL, 'shotchkiss05@gmail.com', 'Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.17 (KHTML, like Gecko) Chrome/24.0.1312.57 Safari/537.17', '199.102.83.226', false, 8, 6, 'I am looking for a place to have my wedding reception and I would like a place where we can party outside with a bonfire and then all the guests can stay onsite.  If this is something you can offer, please email me.', '2014-05-16', '2014-05-18', NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9899, '2013-02-23', 'Susan', 'Brueggemeier', '6335 Memorial Drive', 'Dublin', 'OH', '43017', NULL, '615-789-9416', NULL, 'Rbruegge@columbus.rr.com', 'Mozilla/5.0 (iPad; CPU OS 6_0 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A403 Safari/8536.25', '65.24.122.90', false, 9, 5, NULL, '2013-07-21', '2013-07-28', 'If a Sunday to Sunday booking doesn''t work, a Saturday to Satuday from \r
+                  7/20/13 to 7/27/13 also works for us or...\r
+                  7/27/13  to 8/3/13\r
+Thank you!', ':15:10:11:22:16:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9900, '2013-02-23', 'Beth', 'Daniels', '654 4th St', 'Wyandotte', 'MI', '48192', NULL, '7346584531', NULL, 'kidscanfightcancer@yahoo.com', 'Mozilla/5.0 (Windows NT 6.0; WOW64) AppleWebKit/537.17 (KHTML, like Gecko) Chrome/24.0.1312.57 Safari/537.17', '67.36.18.67', false, 8, NULL, 'I am the Co-Captain of a Relay For Life team called "Kids Can Fight Cancer."  My niece, Emily, created this team when she was 9 years old because she loves to volunteer!  2013 is our 3rd year of Relay For Life.  The team has grown to include our family & friends.  We will fight harder to find a cure this year because our Aunt Janet is currently battling a tough form of breast cancer.\r
+We are asking for donations to support us in our fight against cancer.  We are hoping to build a basket that will inspire Relay For Life visitors to spend their vacation time right here in Michigan!  All money raised is donated to the American Cancer Society.  We will be having raffles at a bowling fundraiser on March 23, 2013.  Our Relay For Life event takes place at Heritage Park in Taylor, Michigan on May 18, 2013 & will have a silent auction.  We are looking for donations of products, services or gift cards to be used as prizes/silent auction items. Cash or check donations would also be appreciated.', NULL, NULL, NULL, ':12:11:23:4:18:22:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9901, '2013-02-23', 'jim', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'jamesrose3024@hotmail.com', 'Mozilla/5.0 (Linux; U; Android 2.3.6; en-ca; MB860 Build/4.5.2A-51_OLL-17.8) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1', '204.101.237.139', false, NULL, NULL, 'Looking for your best rate for 4-6 golfers 2nights 3 days of unlimited golf at close be diff. Golf courses for a mens group bachelors outting golf trip from a group of Canadians', '2013-07-10', '2013-07-13', NULL, NULL, NULL, ':3:', '5', NULL, NULL, '5', '5', 'morning', NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9903, '2013-02-24', 'Jill', 'Bertich', '51470 Royal Links Court', 'Macomb', 'MI', '48042', NULL, '586-949-7319', NULL, 'jcrazy4@aol.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '71.205.146.226', true, NULL, NULL, NULL, NULL, NULL, NULL, ':11:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9904, '2013-02-25', 'Margo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'spartie06@yahoo.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '67.174.170.53', true, 4, 6, NULL, '2013-08-03', '2013-08-10', 'We are Bob and Nancy Cook''s children coming for a visit with the.  What would the rate be for the dates listed for Condo #2?\r
+Thank you.', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9905, '2013-02-26', 'Terry', 'Evans', NULL, NULL, NULL, NULL, NULL, '1519 507 2962', NULL, 'gsxrbro@hotmail.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '216.110.240.89', true, NULL, NULL, 'Hi I was looking for an unlimited golf package.I couldn t find any sI was wondering if you coulkd send me some more info', '2013-07-05', '2013-07-08', NULL, NULL, NULL, ':3:', '4', NULL, NULL, '4', NULL, 'morning', '1 519 379 0802', NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9906, '2013-02-26', 'Michael', NULL, NULL, NULL, 'MI', NULL, NULL, NULL, NULL, 'Mike@tourconnection.com', 'Mozilla/5.0 (iPad; CPU OS 5_1_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9B206 Safari/7534.48.3', '96.35.73.104', true, 7, 5, NULL, '2013-03-01', '2013-03-03', NULL, ':25:2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9907, '2013-02-27', 'John', 'Brust', NULL, NULL, NULL, NULL, NULL, '(248) 299-0803', NULL, 'jackbrust@att.net', 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; WOW64; Trident/6.0; MATBJS)', '99.31.203.51', true, NULL, NULL, 'Need a 4 bedroom condo.', '2013-07-25', '2013-07-29', NULL, NULL, NULL, ':3:', '4', NULL, NULL, '4', '4', 'morning', '(248) 860-8973', 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9908, '2013-02-27', 'Justin', 'McGuire', NULL, NULL, NULL, NULL, NULL, '519 520-2607', NULL, 'justin.mcguire012285@gmail.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.57.2 (KHTML, like Gecko) Version/5.1.7 Safari/534.57.2', '99.250.3.46', true, NULL, NULL, 'We would like to play bay harbour in twilight rates due to the amount of money it would cost. Little Traverse in the morning, and black lake it doesnt really matter. \r
+Also if you could give an option with Boyne Highlands involved to and replacing either traverse or black lake. we are fine for having double occupancy per room also. \r
+We are looking at two dates one in mid july and the other in mid september. so if you can give us a quote for that it would be great.\r
+\r
+We booked with you last June and had a blast and we would like to work with Big Fore again!', '2013-07-12', '2013-07-15', NULL, NULL, NULL, ':3:', '8', NULL, NULL, NULL, NULL, 'twilight', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9909, '2013-02-27', 'Susan', 'Brueggemeier', '6335 Memorial Drive', 'Dublin', NULL, '43017-8884', NULL, '614-789-9416', NULL, 'rbruegge@columbus.rr.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/536.26.17 (KHTML, like Gecko) Version/6.0.2 Safari/536.26.17', '65.24.122.90', false, 9, NULL, NULL, NULL, NULL, 'Hello,\r
+I made a phone reservation on Tuesday, 2/26, for July 21 to July 28 for condo #47.  Will you be sending and email confirmation?  \r
+Thank you very much,\r
+Sue', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9910, '2013-02-27', 'Kerry', 'Baker', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'skbaker62@chartermi.net', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.5; rv:16.0) Gecko/20100101 Firefox/16.0', '96.35.90.184', false, 9, NULL, 'Hi,\r
+Coming in again for Zoo-De-Mack bike ride.  Do you have any condos available for 1 night?\r
+Hope so, as we LOVE staying at Trout Creek.\r
+Thanks!\r
+Kerry', '2013-05-17', '2013-05-18', NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9911, '2013-02-28', 'Gianluca', 'Glazer', 'No Mail Please', 'Agoura Hills', 'CA', '91301', NULL, '8185385147', NULL, 'gglazer@reviewincus.com', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.22 (KHTML, like Gecko) Chrome/25.0.1364.97 Safari/537.22', '223.196.143.55', true, 6, NULL, 'I recently ran a search on your business, and noticed it currently has very few customer reviews on sites such as Google, Bing, Yahoo, Citysearch, etc. Here is a link that shows you how your business shows up when a potential customer searches for your reviews: http://google.com/search?q=Trout+Creek+Condominium+Resort+reviews \r
+\r
+Did you know 86% of consumers use online reviews as part of their buying process, and if you have NO RATINGS only 2% of consumers would be likely to do business with you. You could be losing customers to a competitor who has great reviews. \r
+\r
+At ReviewInc ( http://reviewincus.com ), our software makes it easy, affordable at only $129/month and effective to use reviews to grow your business. Give me a call at your convenience for a quick demo, and I’d be happy to show you how it works.\r
+\r
+Kind Regards,\r
+\r
+Gianluca Glazer\r
+Account Executive, ReviewInc\r
+Direct Line: (818) 538-5147', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9976, '2013-05-20', 'Ari', 'Berris', NULL, NULL, NULL, NULL, NULL, '2485355111', NULL, 'aberris@gmail.com', 'Mozilla/5.0 (iPad; CPU OS 6_1_3 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) CriOS/26.0.1410.53 Mobile/10B329 Safari/8536.25', '75.147.250.218', false, NULL, NULL, NULL, '2013-08-02', '2013-08-04', NULL, NULL, NULL, ':3:', '4', '4', '4', NULL, '4', 'morning', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9553, '2011-07-02', 'terry', 'watt', '48715 tilch', 'macomb twp', 'MI', '48044', NULL, '5865669294', NULL, 'twatt1@att.net', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0; yie8)', '108.200.0.31', true, 8, 1, 'if I request the 21st to the 28th does that mean we check out the morning of the 29th?', '2013-07-21', '2013-07-28', 'stayed here a few times.', ':12:6:23:22:', NULL, ':2:1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9913, '2013-03-02', 'Jim', 'Koczaa', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'jmkoczara@aol.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; GTB7.4; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; OfficeLiveConnector.1.5; OfficeLivePatch.1.3; .NET4.0C; MS-RTC LM 8)', '68.41.180.227', false, 8, NULL, 'Can you do a 1 night rental?  I am thinking about a day trip next week Saturday for one night, 3/9?    If so, are all condo units available, even the 5 BR if I get my brother and family to come with us?', NULL, NULL, 'stayed at Trout Creek several times.', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9634, '2011-12-12', 'Karen', 'Thompson', NULL, NULL, NULL, NULL, NULL, '705-356-2325', NULL, 'ktthompson@persona.ca', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.4; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C)', '24.231.66.69', true, NULL, NULL, 'Lots of beds - all middle aged ladies that do not want to sleep with each other', '2013-05-09', '2013-05-12', NULL, ':10:12:23:2:16:', NULL, ':2:3:', '6', '2', NULL, '8', NULL, NULL, NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9915, '2013-03-03', 'Rick', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'rickyd@cogeco.ca', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; GTB7.4; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.5; OfficeLivePatch.1.3; .NET4.0C)', '24.55.221.165', true, NULL, NULL, NULL, '2013-08-07', '2013-08-10', NULL, NULL, NULL, ':3:', '4', NULL, '2', NULL, '4', 'morning', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9916, '2013-03-03', 'nicole', 'kelly', '2194 austin', 'schererville', 'IN', '46375', NULL, '2197764907', NULL, 'nicolekelly1@sbcglobal.net', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.22 (KHTML, like Gecko) Chrome/25.0.1364.97 Safari/537.22', '99.127.94.244', true, NULL, NULL, NULL, NULL, NULL, NULL, ':2:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9978, '2013-05-24', 'KERRY', 'GREENHUT', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'KLG6675@SBCGLOBAL.NET', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:20.0) Gecko/20100101 Firefox/20.0', '76.227.190.247', true, 4, NULL, 'Are fishing licenses required to fish on your property??\r
+\r
+Thank you.', NULL, NULL, NULL, ':12:6:22:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9918, '2013-03-04', 'Jamie', 'Lininger', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'bucks9395@bright.net', 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; WOW64; Trident/6.0; MALNJS)', '216.255.39.185', true, NULL, NULL, 'We would like to play Hidden River or Little Traverse Bay on Monday afternoon (7/8) and Bay Harbor on Tuesday', '2013-07-08', '2013-07-10', NULL, NULL, NULL, ':3:', '8', NULL, NULL, '8', '8', 'morning', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9919, '2013-03-04', 'Cheryl', 'Cooper', '1570 Oak Grove', 'Walled Lake', 'MI', '48390', NULL, '2487615903', NULL, 'cheryllcooper@comcast.net', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.22 (KHTML, like Gecko) Chrome/25.0.1364.97 Safari/537.22', '76.122.151.176', true, 6, 5, 'Do you have any discounts off the rack rate?  We are looking to pay about $125.00 per night. Do you have anything in that range?\r
+\r
+Thank you.', '2013-07-04', '2013-07-04', NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9920, '2013-03-05', 'paula', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'paulaben_2000@yahoo.ca', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '24.57.149.136', false, 6, 6, NULL, '2013-09-06', '2013-09-08', 'Hello, we are coming to the harbour srpings area for a family wedding on SEpt 07, 2013.  As we are coming from the Windsor, Ontario area, we would like to find accomodations that will allow most of the family to be in close proximity of each other.\r
+There will be 16 adults and 8 children (ages 10 years to under 1 year of age). We would need a minimum of 10 beds.  Can you suggest any ideas on accomodations for all of us?\r
+Im not sure if you rent by the weekend or only by the week.  I did see the 5 bedroom condo you listed, but one wouldn''t be enough and not sure if you can rent out two for a weekend.\r
+I appreciate your help, we are looking forward to visiting Harbour Springs.  With thanks, Paula', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9921, '2013-03-06', 'Tom', 'Stoll', '3431 Hillside Dr', 'Ypsilanti', 'MI', '48197', NULL, '734-434-8823', NULL, 'tcstoll@sbcglobal.net', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)', '68.61.255.89', false, 9, NULL, 'I''m looking for lodging the night before the Zoo-de-Mac bike ride. Not sure how big a group I''ll have. Can you please let me know what options and at what prices you have for that one night?', '2013-05-17', '2013-05-18', NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9922, '2013-03-07', 'Vicki', 'Frantz', '1116 Viewpoint Drive', 'Lake in the Hills', 'IL', '60156', NULL, '847-854-4081', NULL, 'Bwwmarketing@sbcglobal.net', 'Mozilla/5.0 (iPad; CPU OS 6_1_2 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10B147 Safari/8536.25', '99.121.216.45', true, NULL, NULL, NULL, NULL, NULL, NULL, ':29:10:11:23:4:20:18:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9923, '2013-03-08', 'Gloria', 'Berridge', '8263 St. Mark Dr.', 'Brooksville', 'FL', '34601', NULL, '3523973127', NULL, 'gloann1951@aol.com', 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.22 (KHTML, like Gecko) Chrome/25.0.1364.152 Safari/537.22', '70.125.45.100', true, 8, 6, 'Our family gets together every year for a reunion so we are looking for a big unit.  We are just starting to begin planning our 2014 vacation.', '2014-07-12', '2014-07-19', 'Global Travel', ':29:3:12:22:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9924, '2013-03-08', 'Kevin', 'Weaver', NULL, NULL, NULL, NULL, NULL, '9897144013', NULL, 'kevinfweaver@gmail.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/536.26.17 (KHTML, like Gecko) Version/6.0.2 Safari/536.26.17', '97.76.205.55', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, ':3:', '8', NULL, NULL, '8', '8', NULL, NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9925, '2013-03-08', 'James', 'Hart', '1400 St. Andrews Drive', 'Clovis,', 'NM', '88101', NULL, '575-763-6311', NULL, 'jhart33@suddenlink.net', 'Mozilla/5.0 (iPad; CPU OS 6_1_2 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10B146 Safari/8536.25', '74.195.31.104', true, 6, NULL, 'Attempting to get siblings together for vacation.  Enjoy simple fishing, pontoon boating, perhaps bike riding, pool activity and pretty accommodations .  Can you please respond with availability and price. Thank you!', '2013-05-30', '2013-06-04', NULL, ':29:6:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9926, '2013-03-11', 'Brent', 'Baker', '101 North Milner Street', 'Ottumwa', 'IA', '52501', NULL, '641-777-7210', NULL, 'wendy_baker36@yahoo.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '50.82.14.153', true, 6, 6, NULL, '2013-06-22', '2013-06-29', NULL, ':12:6:20:22:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9927, '2013-03-11', 'Dawn', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'dawnkzoo@hotmail.com', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.22 (KHTML, like Gecko) Chrome/25.0.1364.97 Safari/537.22', '69.246.62.49', false, 9, NULL, NULL, '2013-05-17', '2013-05-18', 'I am interested in accommodations for 5 adults for one night, Friday, May 17th.\r
+\r
+Please let me know if you have anything that will accommodate.', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9928, '2013-03-12', 'Ann', 'Brooks', '13609 California St', 'Omaha', 'NE', '68130', NULL, '402-891-6962', NULL, 'abrooks@aurhomes.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; MS-RTC LM 8; .NET4.0C; .NET4.0E)', '70.165.111.157', false, 8, NULL, 'I have a medical professional coming to work at the Petosky hospital for 3 months and I am looking for housing for them.  What options would you have available?', '2013-03-20', '2013-06-24', 'online', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9932, '2013-03-15', 'Richard', 'Pincombe', '1024 Griffith Street', 'London', 'ON', 'N6K3Y7', NULL, '5196570306', NULL, 'pincombe_r@hotmail.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0; MALC; SiteKiosk 7.8 Build 332)', '107.16.7.3', false, 6, 6, NULL, '2013-07-11', '2013-07-14', NULL, ':11:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9929, '2013-03-13', 'Terri', 'Nelson', '8888elonglakedrive', 'Scotts', 'MI', '49088', NULL, '2693239507', NULL, 'Tnelson@dataconstructs.com', 'Mozilla/5.0 (iPad; U; CPU OS 4_3_3 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J2 Safari/6533.18.5', '68.61.63.156', true, NULL, NULL, NULL, NULL, NULL, NULL, ':11:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9930, '2013-03-14', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'baneill295@yahoo.com', 'Mozilla/5.0 (Windows NT 6.0; rv:19.0) Gecko/20100101 Firefox/19.0', '67.149.157.104', true, NULL, NULL, NULL, NULL, NULL, NULL, ':10:17:23:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9931, '2013-03-14', 'Rick', 'Cojocari', NULL, NULL, NULL, NULL, NULL, '519 969-5849', NULL, 'rcojocari@cogeco.ca', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/534.57.7 (KHTML, like Gecko) Version/5.1.7 Safari/534.57.7', '24.57.65.109', true, NULL, NULL, NULL, '2013-09-13', '2013-09-15', NULL, NULL, NULL, ':3:', '16', NULL, '8', NULL, '16', 'morning', '519 969-5849', 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9933, '2013-03-16', 'Frank', NULL, NULL, NULL, NULL, NULL, NULL, '248-627-5617', NULL, 'feb52@comcast.net', 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.22 (KHTML, like Gecko) Chrome/25.0.1364.172 Safari/537.22', '70.199.97.179', false, NULL, NULL, NULL, '2013-09-20', '2013-09-22', NULL, NULL, NULL, ':3:', '12', NULL, NULL, '12', '12', 'morning', '2483698384', 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9935, '2013-03-18', 'Steve', 'Haack', NULL, NULL, NULL, NULL, NULL, '734-620-0208', NULL, 'haacker@outlook.com', 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; WOW64; Trident/6.0)', '173.161.53.241', true, NULL, NULL, 'Please contact by email first. We are interested in 1 rd on Thurs, 2 on Friday, 2 on Saturday and 1 on Sunday. Interested in your accomdations, would prefer a house/condo for all but will consider others.', '2013-08-08', '2013-08-11', NULL, NULL, NULL, ':3:', '12', NULL, NULL, '12', '12', 'morning', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9934, '2013-03-17', 'kevin', 'Cox', '35163 pembroke', 'livonia', 'MI', '48152', NULL, '248 860 1140', NULL, 'bethkevcox@aol.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.57.2 (KHTML, like Gecko) Version/5.1.7 Safari/534.57.2', '174.84.222.113', true, 9, 2, NULL, '2013-07-01', '2013-07-05', NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9936, '2013-03-21', 'Katie', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'kkloosterman6355@charter.net', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '75.135.154.160', false, 9, NULL, NULL, NULL, NULL, 'Will you have the outdoor pool open for the Easter week end?', ':23:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9937, '2013-03-21', 'Tracy', 'Christopher', '880 St. Clair Parkway', 'Mooretown', 'ON', 'N0N 1M0', NULL, '5198622057', NULL, 'christophers_4@sympatico.ca', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '70.53.90.242', true, 9, 1, NULL, '2013-12-27', '2014-01-01', 'Once again we had a great stay in February.  Can''t wait to come again, always planning our next vacation.  We are wanting to come just after Christmas (27th) and stay in Unit #85 if possible.  It looks like it is too early to book but wondering if you will let us know when we can book this.  Thanks so much. Tracy P.S. We would like to compliment your staff for your friendliness and helpfulness each and every stay we have had.  Kudos to you all for a great job.  Looking forward to hearing from you.', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9938, '2013-03-23', 'Leslie', 'Robinson', NULL, NULL, NULL, NULL, NULL, '586-899-0362', NULL, 'leslierobinsons@comcast.net', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/4.0; GTB7.4; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MAAU; InfoPath.2; .NET4.0C; AskTbAD4/5.15.15.35882)', '68.41.242.194', true, NULL, NULL, NULL, '2013-08-23', '2013-08-25', NULL, NULL, NULL, ':3:', '8', NULL, NULL, '8', '8', 'morning', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9939, '2013-03-24', 'Andrea', 'Pulos', '2445 N. Roberts Rd.', 'Muskegon', 'MI', '49445', NULL, '231-343-2443', NULL, 'drapulos@gmail.com', 'Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.22 (KHTML, like Gecko) Chrome/25.0.1364.172 Safari/537.22', '50.36.182.191', true, 9, NULL, 'I am my son''s soccer team manager and we are looking to go to the tournament June 15th-17. I am wondering if you have any lodging specials? We stayed there last year and we were offered specials for us. \r
+Please let me know so we can start reserving our lodging.', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9940, '2013-03-25', 'Monica', 'Edie', '900 S Douglas', 'Mt. Pleasant', 'MI', '48858', NULL, '2485152821', NULL, 'edie1mt@cmich.edu', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.57.2 (KHTML, like Gecko) Version/5.1.7 Safari/534.57.2', '141.209.228.56', true, 1, 5, NULL, '2013-05-12', '2013-08-16', NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9941, '2013-03-26', 'john', 'anderson', NULL, NULL, NULL, NULL, NULL, '8103292617', NULL, 'aggie0053@yahoo.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; NP08; MAAU; NP08)', '76.226.141.216', true, NULL, NULL, 'bathroom with bedroom firepit or bring our own, grills', '2013-08-24', '2013-08-27', NULL, NULL, NULL, ':3:', '14', '4', '8', '2', NULL, 'morning', '8106505009', 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9942, '2013-03-28', 'Robert', 'Herrgott', '1903 Sandy Shores', 'Oxford', 'MI', '48371', NULL, '2488909829', NULL, 'robert@rherrgott.com', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.22 (KHTML, like Gecko) Chrome/25.0.1364.172 Safari/537.22', '108.88.8.176', false, 9, 3, 'Looking for a condo for a couple of days.  Are you busy over easeter?  Arriving Saturday night and leaving tuesday night.', '2013-03-30', '2013-04-02', NULL, ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9944, '2013-04-04', 'Jan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'newdr99@yahoo.com', 'Mozilla/5.0 (iPad; CPU OS 5_1_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9B206 Safari/7534.48.3', '72.188.37.32', true, NULL, NULL, NULL, '2013-07-13', '2013-07-17', NULL, NULL, NULL, ':3:', '2', NULL, '1', NULL, '2', 'morning', NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9943, '2013-04-02', 'scott', 'jensen', NULL, NULL, NULL, NULL, NULL, '2623373789', NULL, 'scottjensen427@gmail.com', 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; Win64; x64; Trident/6.0; ASU2JS)', '24.209.121.119', true, NULL, NULL, NULL, '2013-08-08', '2013-08-12', NULL, NULL, NULL, ':3:', '6', NULL, NULL, NULL, NULL, 'morning', '2628937198', 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6618, '2008-02-28', 'Jerry', 'Foster', '2322 Norton Rd', 'Rochester hills', 'Michigan', '48307', NULL, '248-854-3960', NULL, 'fosterjw50@comcast.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '24.180.251.50', true, 9, NULL, 'I need a 3 bedroom plus loft condo', '2013-06-28', '2013-07-01', '', ':Big 4 Golf Package:Golf Trip:', NULL, '3:', '4', NULL, NULL, NULL, '4', 'morning', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9946, '2013-04-07', 'Rick', 'Venner', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Rickvenner@gmail.com', 'Mozilla/5.0 (iPad; CPU OS 6_1_3 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10B329 Safari/8536.25', '75.134.221.224', true, NULL, NULL, NULL, NULL, NULL, NULL, ':15:10:2:20:24:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10113, '2013-12-04', 'Jenna', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'mischjen@yahoo.com', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36', '68.40.31.235', true, 9, NULL, 'What is the largest rental you have available for Jan. 31- Feb. 3 you have available?', NULL, NULL, NULL, ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9743, '2012-06-19', 'Dorreen', 'Clements', '2509 sunny meadow', 'Mckinney', 'TX', '75070', NULL, '9728149777', NULL, 'dorreenclements@gmail.com', 'Mozilla/5.0 (iPad; CPU OS 6_1_2 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10B146 Safari/8536.25', '74.203.169.82', true, 9, 3, NULL, '2013-08-01', '2013-08-31', 'Need wi fi', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9948, '2013-04-09', 'Karen', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Kblucid@comcast.net', 'Mozilla/5.0 (iPad; CPU OS 6_1_3 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10B329 Safari/8536.25', '72.188.222.56', false, NULL, NULL, NULL, '2013-07-07', NULL, NULL, NULL, NULL, ':3:', '2', NULL, '1', NULL, '2', 'morning', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9949, '2013-04-10', 'Brian', 'Krus', NULL, NULL, NULL, NULL, NULL, '248-766-3613', NULL, 'krusfamily@comcast.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB7.4; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Tablet PC 2.0; InfoPath.3; MS-RTC LM 8)', '67.36.236.194', false, NULL, NULL, 'From a group perspective looking for individual accomodations for couples.\r
+\r
+For golf we are looking as a group for 18-36 holes on Friday and Saturday and 18 holes on Sunday.  \r
+\r
+Some may be interested in golfing the day of arrival as well on Thursday.\r
+\r
+Please let me know what you might have available to fullfil these requests.', '2013-08-15', '2013-08-18', NULL, NULL, NULL, ':3:', '16', NULL, '8', NULL, '16', 'morning', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9951, '2013-04-10', 'Dennis E.', 'Kubit', NULL, NULL, NULL, NULL, NULL, '586-929-9764', NULL, 'qman46@att.net', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0)', '108.88.173.51', true, NULL, NULL, 'Prefer 2 units with seperate bd rms for each person. 18 holes arrival date. 36 holes nxt two days. Please keep vicinity of each course in consideration for least amt of travel between ea.', '2013-09-29', NULL, NULL, NULL, NULL, ':3:', '6', NULL, NULL, NULL, '6', 'morning', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9952, '2013-04-10', 'adam', 'teschke', NULL, NULL, NULL, NULL, NULL, '5193848375', NULL, 'teschke87@hotmail.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.3; .NET4.0C; .NET4.0E)', '209.216.133.100', true, NULL, NULL, 'looking for an unlimited golf package stay and play. arriving the 6th night and leaving the 9th afternoon', '2013-06-06', '2013-06-09', NULL, NULL, NULL, ':3:', '8', NULL, NULL, NULL, '8', 'twilight', NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9953, '2013-04-11', 'Julie', 'Hultgren', NULL, NULL, NULL, NULL, NULL, '313-580-2951', NULL, 'Jkmwines@yahoo.com', 'Mozilla/5.0 (iPad; CPU OS 6_1_3 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10B329 Safari/8536.25', '68.40.154.234', true, NULL, NULL, NULL, '2013-07-13', '2013-07-20', NULL, NULL, NULL, ':3:', '4', NULL, NULL, NULL, '4', 'morning', '313-4065063', 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9957, '2013-04-21', 'Gary', 'England', NULL, NULL, NULL, NULL, NULL, '519-280-2828', NULL, 'andreaandgary@rogers.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '99.248.228.196', true, NULL, NULL, 'I have put in 2 separate requests for similar package quote at Big Fore website and have not received any response to date.\r
+\r
+Your assistance is appreciated.\r
+\r
+Gary', '2013-07-05', '2013-07-07', NULL, NULL, NULL, ':3:', '12', NULL, NULL, '12', '12', NULL, '519-667-9081', 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9954, '2013-04-12', 'Bridget', 'Smith', '1606 W. Troy', 'Ferndale', 'MI', '48220', NULL, '248-808-7439', NULL, 'bridgetsmithma@gmail.com', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.64 Safari/537.31', '67.149.132.59', true, 2, 6, NULL, '2013-08-16', '2013-08-18', 'We are looking for 1, possibly 2 condo''s for that weekend.  We are a nonprofit out of Royal Oak.  We hope to have around 20 guests.  We would probably start with 2 and cut one if need be.  Unless perhaps have a large Lodge?  Since we are a nonprofit we are on a limited budget.', ':29:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9955, '2013-04-18', 'tom', 'katofiasc', NULL, NULL, NULL, NULL, NULL, '248-798-1522', NULL, 'tomkato@charter.net', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0)', '24.247.160.28', true, NULL, NULL, 'little traverse sat morning and chestnut valley in afternoon then Hidden River on Sunday. Looking for 2 br condo', '2013-08-16', '2013-08-18', NULL, NULL, NULL, ':3:', '4', NULL, NULL, '4', '4', 'morning', 'same', 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9956, '2013-04-20', 'Christine', 'Kafka', '214 ezra avenue', 'santa rosa', 'CA', '95401', NULL, '707-570-2429', NULL, 'chstagnaro@sbcglobal.net', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.58.2 (KHTML, like Gecko) Version/5.1.8 Safari/534.58.2', '75.48.74.94', true, 6, NULL, NULL, '2014-07-21', '2014-08-08', 'Hello, We are planning a family reunion and your resort looks like we might fit there.  \r
+Can you please send me information about rentals for July/August of 2014.  \r
+We would stay anywhere from 4 nights to 7 nights.  There are about 50 of us and I''m thinking we would need anywhere from 8-12 condo''s.  I am also interested in what the daily charge would be for you community room for that time as well.  Thank you for any information you can send me.  How far are you from the lake? \r
+Chris', ':15:29:3:12:6:22:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9958, '2013-04-22', 'Candice', 'Onodi', NULL, NULL, 'MI', NULL, NULL, NULL, NULL, 'candiceonodi@yahoo.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.43 Safari/537.31', '173.14.46.190', false, 4, 5, 'Hello - I recently used your online reservations to set up a stay for Memorial Weekend. Although I received a conformation pop-up after I clicked reserve, I didn''t get a conformation email with details. I booked the holiday weekend (Friday through Monday) in condo #61. I just wanted to make sure everything is good to go and that we for sure have a place to stay when we get there!\r
+\r
+Thank you!\r
+Candice', '2013-05-24', '2013-05-27', NULL, ':23:4:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9959, '2013-04-23', 'Lisa', 'Yamin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Lisa.yamin@gm.com', 'Mozilla/5.0 (iPad; CPU OS 6_1 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10B141 Safari/8536.25', '198.208.251.70', true, NULL, NULL, 'Would like ground floor condo in the wooded area', '2013-06-27', '2013-07-06', NULL, NULL, NULL, ':3:', NULL, '3', '1', '1', NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9960, '2013-04-23', 'Adelina', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'adelinairvine@cogeco.ca', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0; ety8v_cfg)', '24.57.83.100', false, 8, NULL, NULL, NULL, NULL, 'Could i please have the contact name and number of the person responsible for your advertising', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9893, '2013-02-19', 'Matt', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'mjmalone@umich.edu', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0; MALC)', '63.76.80.35', true, NULL, NULL, 'Group of 8 guys looking for a golf package. Want to stay Thursday, Friday, Saturday night with two rounds of 18 holes on Friday and Saturday, and one round of 18 on Sunday.', '2013-07-25', '2013-07-28', NULL, NULL, NULL, ':3:', '8', NULL, NULL, NULL, '8', 'morning', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9962, '2013-04-24', 'Joshua', 'Teno', NULL, NULL, NULL, NULL, NULL, '5862129351', NULL, 'jteno2155@yahoo.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.59.8 (KHTML, like Gecko) Version/5.1.9 Safari/534.59.8', '98.224.157.8', true, NULL, NULL, 'two rounds a day is wanted to play', '2013-07-25', '2013-07-28', NULL, NULL, NULL, ':3:', '12', NULL, NULL, '12', '12', 'morning', '5866121473', 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6135, '2007-08-31', 'Lori', 'Page', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'loripage1@hotmail.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)', '174.103.129.50', true, 9, 5, 'Hello from Ohio,\r
+\r
+Hope spring is comimg your way soon. We had a little snow yesterday ...ugh !! I have a question, as a family we will be staying at the ex-Sharon Case home on July 6th. Dave and I are thinking about coming up several days prior to the 6th. just wondering if there is any kind of special for that time of year, looks like most of your specials end at the end of June. Dates are only for July 3rd and departing on the 6th, I know, your busiest time of summer. I guess it never hurts to ask. Looking forward to your response. Thanks, and have a nice day.', '2013-07-03', '2013-07-06', NULL, '', NULL, '1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9965, '2013-04-28', 'Jennifer', 'Bailey', '4421 West Giles Road', 'Muskegon', 'MI', '49445', NULL, '231-744-2362', NULL, 'jlboo02@yahoo.com', 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; WOW64; Trident/6.0; Touch; MDDCJS)', '50.36.86.118', true, 4, 1, 'We heard there is an offer buy two nights and get the third free for this weekend.  We are available on the home line after 5:00 pm and on cell 269-209-1585 anytime.', '2013-06-14', '2013-06-17', 'Recommended by soccer team for Petoskey Tournament.', ':12:14:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9967, '2013-05-01', 'David', 'Scott', NULL, NULL, 'IN', NULL, NULL, NULL, NULL, 'dscott304@comcast.net', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/6.0)', '68.57.240.32', true, NULL, NULL, NULL, NULL, NULL, NULL, ':29:11:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9968, '2013-05-03', 'Lisa', 'Regis', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'lisaetjohn@me.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/536.26.17 (KHTML, like Gecko) Version/6.0.2 Safari/536.26.17', '69.244.130.38', true, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9593, '2011-09-12', 'Donna', 'Van Dam', '2464 Kimberly fair Street', 'Rochester Hills,', 'MI', '48309', NULL, '248-375-2486', NULL, 'dvd31906@yahoo.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.57.2 (KHTML, like Gecko) Version/5.1.7 Safari/534.57.2', '76.112.21.9', true, NULL, NULL, NULL, NULL, NULL, NULL, ':17:12:11:23:18:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9969, '2013-05-07', 'Hank', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'hank_runyan@carletonpolice.us', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0)', '66.188.34.98', true, NULL, NULL, NULL, '2014-07-13', '2014-07-17', NULL, NULL, NULL, ':3:', '12', NULL, NULL, '12', '12', 'morning', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5234, '2007-01-20', 'David', 'Blain', 'P.O. Box 510741', 'Livonia', 'MI', '48151', NULL, '519-967-1094', NULL, 'djblain@cogeco.ca', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; InfoPath.2; MS-RTC LM 8)', '12.176.249.231', true, 9, NULL, NULL, '2013-07-31', '2013-08-04', 'When we check availability for 3 bedroom + Loft, we are not finding anything.  Can you let us know what the availability is for near to this time frame, 7 adults, 2 teens, 2 children.  We really want to book for the weekend of 8/3 for the antique fair at the fairgrounds.  please contact me asap.  i have other family members who want to rent separte condos as well during the same time frame.', '', NULL, '1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9972, '2013-05-17', 'Peter', 'Ecklund', NULL, NULL, NULL, NULL, NULL, '313-885-4769', NULL, 'ecklundp@comcast.net', 'Mozilla/5.0 (Windows NT 6.2; WOW64; rv:20.0) Gecko/20100101 Firefox/20.0', '68.42.149.18', true, NULL, NULL, 'Chris,\r
+We were at TC last year and enjoyed our stay.\r
+Would like a condo with three bedrooms and at least 2 baths  (3 is better.  Golf on Mon, Tues and Wed.', '2013-07-07', '2013-07-09', NULL, NULL, NULL, ':3:', '3', NULL, NULL, '3', '4', 'twilight', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9974, '2013-05-19', 'nancy', 'cohrs', NULL, NULL, NULL, NULL, NULL, '517-930-7068', NULL, 'nancycohrs@wowway.com', 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)', '23.28.28.144', true, NULL, NULL, NULL, '2013-07-27', '2013-07-30', NULL, NULL, NULL, ':3:', '4', NULL, NULL, '4', '4', NULL, '517-543-0575', 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9912, '2013-02-28', 'Cheryl', 'Schell', '106 Pickett Drive', 'Wilmore', 'KY', '40390', NULL, '8595366207', NULL, 'c.schell@roadrunner.com', 'Mozilla/5.0 (Windows NT 6.1; rv:20.0) Gecko/20100101 Firefox/20.0', '173.190.87.177', false, 6, NULL, 'We have reservations July 24-28.  Can you tell me which unit we are in?  Thanks.', NULL, NULL, NULL, ':12:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9973, '2013-05-19', 'Jade', 'Edwards', NULL, NULL, NULL, NULL, NULL, '(810) 275-8330', NULL, 'attorneyjadeedwards@gmail.com', 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; WOW64; Trident/6.0; MASMJS)', '71.238.177.231', true, NULL, NULL, 'Looking to rent one of the 5 bedroom condos for that weekend. Right now we have 6 people but are guessing we will get a couple more.', '2013-09-20', '2013-09-22', NULL, NULL, NULL, ':3:', '4', '4', '3', '2', '4', 'morning', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9975, '2013-05-20', 'Lisa', 'Olsen', '4330 Sourwood Drive', 'Dayton', 'OH', '45424', NULL, '937-681-9086', NULL, 'cruisingmama2@yahoo.com', 'Mozilla/5.0 (iPad; CPU OS 6_1_3 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Mobile/10B329', '99.101.0.150', true, 6, NULL, 'Do you have price lists with any break downs or group rates and also printed material for rooms? Thanks again!', NULL, NULL, 'Would you please send/email any information pertaining to family reunions? Tere would be approximately 70-80people. Thank you!', ':29:3:12:6:22:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9977, '2013-05-22', 'Rudy', 'Hernandez', '4608 Tacoma Blvd.', 'Okemos', 'MI', '48864', NULL, '(517) 349-2583', NULL, 'hernandez.rudy.g@gmail.com', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0', '71.205.206.9', true, 9, NULL, 'Hello, My wife and I are very seriously considering purchasing a midsized unit, or perhaps even two smaller units.  We are currently have been in contact with a local realtor (Sue Schwaderer) with whom we plan to set up a showing in the near future.  Could you provide us with any info regarding the services that the assoc. fees cover? Thank you, Rudy & Maggie Hernandez', NULL, NULL, NULL, ':24:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9979, '2013-05-28', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'dg+troutcreek@davegreenhut.com', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.94 Safari/537.36', '69.174.58.116', true, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8514, '2009-06-16', 'Mary', 'Deegan', '33784 colony Park dr', 'Farmington hills', 'MI', '48331', NULL, '313-402-9009', NULL, 'mdeegan123@sbcglobal.net', 'Mozilla/5.0 (iPad; U; CPU OS 4_3_5 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8L1 Safari/6533.18.5', '76.226.61.72', true, 9, 1, NULL, '2013-06-28', '2013-07-08', NULL, '', NULL, '1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9980, '2013-06-05', 'David', 'Grant', NULL, NULL, NULL, NULL, NULL, '248-353-2860', NULL, 'dbgran@ameritech.net', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0; chromeframe/27.0.1453.94)', '108.239.107.165', true, NULL, NULL, NULL, '2013-06-29', '2013-07-06', NULL, NULL, NULL, ':3:', '2', '2', NULL, NULL, '4', NULL, NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9981, '2013-06-05', 'Dan', 'Pickens', NULL, NULL, NULL, NULL, NULL, '309-263-1048', NULL, 'dpjpkns4@yahoo.com', 'Mozilla/5.0 (Windows NT 6.0; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0', '98.253.80.101', true, NULL, NULL, NULL, '2013-07-09', '2013-07-15', NULL, NULL, NULL, ':3:', '2', NULL, NULL, '2', '2', 'morning', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9983, '2013-06-06', 'Jon', 'Nies', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'jnies@ecsteam.com', 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)', '50.134.238.218', true, 8, NULL, NULL, NULL, NULL, 'Hi Guys,\r
+\r
+Jon Nies here, I am Ray Nies'' son.  As usual, I will be arriving for the annual trip one day earlier than the group.  Please provide access to me one day earlier. I will be arriving on June 18th.  You have charged me $100 for the night and left a key in the lock box.  Please remind me of the lock box number.\r
+\r
+Thanks!\r
+\r
+Jon\r
+303-523-8199', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9984, '2013-06-07', 'Julie', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'rubberneckinlife@gmail.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.4; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E; InfoPath.3)', '136.181.195.25', true, 8, NULL, NULL, NULL, NULL, 'Pure Michigan', ':15:29:12:22:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9985, '2013-06-08', 'Valerie', 'Taccolini', '1631 Sheffield Dr', 'Ypsilanti', 'MI', '48198', NULL, '7344845047', NULL, 'valerietacc@gmail.com', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.110 Safari/537.36', '99.170.100.151', false, 8, NULL, 'We had a disappointing experience at Trout Creek this past week.  We booked a condo through Global Discovery Vacations for my family to celebrate my 50th birthday together.  We found the condo not thoroughly cleaned (cobwebs behind doors, food on a cheese grater, top of fridge and top of stove dirty).  We saw a notice indicating that the pool towels belonged to the condo, but found none.  The large pull-out couch in the living room was broken, and could not be fully opened, therefore unusable.  Upon speaking with the office, we were told that because we had booked through Global, they could not assist us.  So 2 family members had to sleep on the floor, and we were washing bath towels every day to have enough to use at the pool as well.  It wasn''t quite the week I had envisioned for a special celebration.', NULL, NULL, 'Global Discovery Vacations', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9986, '2013-06-08', 'Terry', 'Booth', '5884 Pinewood Court', 'Canton', 'MI', '48187', NULL, NULL, NULL, 'Terrybooth6@aol.com', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0', '71.228.245.108', true, 9, 6, NULL, '2013-08-30', '2013-09-02', 'We are interested in Unit #1', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9987, '2013-06-11', 'elio', 'canessa', NULL, NULL, NULL, NULL, NULL, '2898120714', NULL, 'ecanessa@cogeco.ca', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0)', '24.150.64.195', true, NULL, NULL, NULL, '2013-07-19', '2013-07-28', NULL, NULL, NULL, ':3:', '8', NULL, '4', NULL, NULL, 'morning', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9988, '2013-06-14', 'Demetrios', 'Anastasiow', NULL, NULL, NULL, NULL, NULL, '248-939-3540', NULL, 'demetriosanastasiow@gmail.com', 'Mozilla/5.0 (Windows NT 6.1; rv:21.0) Gecko/20100101 Firefox/21.0', '174.84.247.177', true, NULL, NULL, NULL, '2013-07-18', '2013-07-21', NULL, NULL, NULL, ':3:', '12', NULL, '6', NULL, NULL, 'morning', NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9989, '2013-06-14', 'Rose', 'Hepner', '3595 Hein Drive', 'Sterling Heights', 'MI', '48310', NULL, '(586)215-9438', NULL, 'tweethep@comcast.net', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)', '98.243.115.161', true, NULL, NULL, NULL, NULL, NULL, NULL, ':10:17:6:20:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9990, '2013-06-16', 'Bill', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'kmisch@columbus.rr.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; chromeframe/27.0.1453.110; .NET CLR 1.1.4322; Windows-Media-Player/10.00.00.3990; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; BRI/2; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)', '75.185.61.130', true, NULL, NULL, NULL, '2013-09-10', '2013-09-14', NULL, NULL, NULL, ':3:', '6', NULL, '3', NULL, '6', 'twilight', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4475, '2006-09-25', 'gordy', 'halmhuber', '3434 Tothill', 'Troy', 'MI', '48084', NULL, '2487702908', NULL, 'gphuber@comcast.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; MDDS; InfoPath.3; AskTbORJ/5.15.23.36191)', '97.78.183.210', true, 9, 6, NULL, '2013-09-05', '2013-08-08', NULL, ':11:', NULL, '1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9994, '2013-06-18', 'Amber', 'Plaster', NULL, NULL, NULL, NULL, NULL, '6167260354', NULL, 'lanningamber@yahoo.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C)', '108.94.57.114', true, NULL, NULL, 'Looking to do a trip for our 1yr anniversary and my hisband loves to golf.', '2013-07-12', '2013-07-14', NULL, NULL, NULL, ':3:', '1', '1', NULL, NULL, '1', NULL, NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (6370, '2007-11-20', 'elaine', 'mahrle', '', '', '', '', NULL, '248 219-9919', NULL, 'emahrle@hotmail.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322)', '69.14.56.50', true, NULL, NULL, NULL, '2013-08-08', '2013-08-12', '', '', NULL, '3:', '2', '2', NULL, NULL, NULL, 'twilight', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9992, '2013-06-17', 'Debbie', 'Hardcastle', NULL, NULL, NULL, NULL, NULL, '734-604-9531', NULL, 'hardcastle725@gmail.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; MDDRJS)', '12.231.107.66', true, NULL, NULL, NULL, '2013-07-12', '2013-07-20', NULL, NULL, NULL, ':3:', '2', NULL, NULL, NULL, '2', 'twilight', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9991, '2013-06-16', 'Irene', 'Noestheden', '343 Centennial Drive', 'Tecumseh', 'ON', 'N8N 2P1', NULL, '5197356130', NULL, 'icnoes@sympatico.ca', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.110 Safari/537.36', '70.51.90.171', false, 4, NULL, 'Just in case you did not receive my question in the previous box I shall quickly ask again ... I need the names of the golf courses we are playing on ... Thank-you for your quick response ... Irene', '2013-06-19', '2013-06-23', 'I already have reservations for the above dates ... I am with the " JUDY HAWKINS " group from Windsor Ontario Canada ... I would appreciate it if someone could send me the names our package has booked ... I have tried to contact Judy but so far I have not gotten a response ... I would appreciate it if someone could send me the names of the course we are golfing on ...  I look forward to your reply ... Thank-you, Irene.', ':11:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7543, '2008-10-27', 'Ann', 'Hekhuis', '', '', '', '', NULL, '630-527-0651', NULL, 'ahekhuis@wideopenwest.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB7.4; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 1.1.4322; .NET4.0C; .NET4.0E; BRI/1; ATT)', '144.160.130.16', true, NULL, NULL, 'only need 3 rounds of golf', '2013-08-02', '2013-08-10', '', ':11:', NULL, '3:', '4', '2', '2', NULL, '4', 'morning', '630-561-4396', 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9993, '2013-06-17', 'william', 'valevich', NULL, NULL, NULL, NULL, NULL, '5718819847', NULL, 'wjvmov@att.net', 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)', '108.86.33.93', true, NULL, NULL, NULL, '2013-06-21', '2013-06-23', NULL, NULL, NULL, ':3:', '2', NULL, NULL, NULL, '2', NULL, NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9995, '2013-06-20', 'Radha', 'Vemuri', NULL, NULL, NULL, NULL, NULL, '706-467-3783', NULL, 'vemuri48@yahoo.com', 'Mozilla/5.0 (iPad; CPU OS 6_1_2 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10B146 Safari/8536.25', '50.96.71.136', true, NULL, NULL, NULL, '2013-08-17', '2013-08-21', NULL, NULL, NULL, ':3:', '1', NULL, '1', NULL, '1', 'twilight', '706-347-4887', 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9996, '2013-06-20', 'Tari', 'Dygert', '44612 Larchwood Dr', 'Northville', 'MI', '48168', NULL, '2484497718', NULL, 'tldygert@att.net', 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)', '76.226.63.202', false, 9, NULL, NULL, '2013-09-06', '2013-09-08', 'I requested information to send our group (soccer team) this morning.  I was wondering if maybe you had the wrong email?  We are interested in the weekend of Sep 7 and 8 which is when our tournament is.', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9997, '2013-06-24', 'Rachelle', 'Houde Simard', NULL, NULL, NULL, NULL, NULL, '514-944-6363', NULL, 'rachelle.houde@gmail.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:21.0) Gecko/20100101 Firefox/21.0', '24.203.253.125', false, 4, NULL, 'Hi, \r
+My family will be arriving with the Robert & Laurie Ross group on June 29th with a 7 month old baby and we would like to know if the condos are equipped with high chairs and cribs or if they need to be requested? Since we will be traveling from Montreal, Canada on the 27th, I need to ensure we make proper arrangements if otherwise. \r
+\r
+Thank you very much, you may contact us by phone if preferred: \r
+514-944-6363', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9999, '2013-06-26', 'Prasath', 'Balakrishnan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'prasath.bkn@gmail.com', 'Mozilla/5.0 (Windows NT 5.1; rv:22.0) Gecko/20100101 Firefox/22.0', '205.144.100.200', false, 9, NULL, 'I booked a 3 night stay using the online reservation tool from July 4th through the 6th. However, due to some unexpected circumstances I needed to cancel the 3rd night stay. I called the 1-800# and was told that there was a 3 night stay minimum. The reservation page does not mention this. Apparently, this only shows up when I try to book anything less than a 3 night stay. Given that I originally booked a 3 night stay and want to cancel one night there is no way for me to know this policy. Even the confirmation email that was sent doesn''t mention anything about it. I have been a past guest with Trout creek on many occasions, and have always chosen it over a lot of other competing offers, but I am sad to say that this might be the last time I will be staying with you guys. Also, please remove me from your mailing lists.\r
+\r
+Prasath Balakrishnan\r
+(248) 890-2128', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9998, '2013-06-24', 'nadiya', 'sabat', '31642 hoover rd', 'warren', 'MI', '48093', NULL, '428-420-0225', NULL, 'nadiuha82@mail.ru', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '50.197.108.26', true, 4, 5, NULL, '2013-07-04', '2013-07-07', NULL, ':12:22:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10000, '2013-06-26', 'Linda', 'Haffey', NULL, NULL, 'MI', NULL, NULL, NULL, NULL, 'linda.haffey@gmail.com', 'Mozilla/5.0 (Windows NT 5.1; rv:21.0) Gecko/20100101 Firefox/21.0', '141.214.17.4', false, 6, NULL, 'Hi, we are scheduled to bring our family gathering to your resort Aug 15-18 and I was wondering if you can refer me to a local caterer or restaurant that will cater for our Saturday evening dinner in your meeting room.\r
+\r
+Thanks!\r
+Linda Haffey', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10001, '2013-06-26', 'Kirk', 'Olson', '643 Sorel Dr.', 'Canton', 'MI', '48188', NULL, '7343061052', NULL, 'kirklolson@msn.com', 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.52 Safari/537.36', '50.201.149.65', true, NULL, NULL, NULL, NULL, NULL, NULL, ':12:23:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10002, '2013-07-03', 'Darlene', 'Roper', '12055 Canterbury Ct.', 'Marne', 'MI', '49435', NULL, '616-677-0179', NULL, 'roperd@gvsu.edu', 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/6.0)', '148.61.108.33', true, 6, 6, NULL, '2014-07-12', '2014-07-15', 'Do you allow small dogs?', ':29:12:6:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10003, '2013-07-03', 'Margaret', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'smithpeg@me.com', 'Mozilla/5.0 (iPad; CPU OS 6_1_3 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10B329 Safari/8536.25', '67.162.219.49', true, 6, 3, NULL, '2013-10-15', '2013-10-18', NULL, ':10:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10004, '2013-07-03', 'linda', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'chuck@ameritech.net', 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0; FunWebProducts)', '96.35.78.68', true, NULL, NULL, NULL, '2013-08-05', '2013-08-09', NULL, NULL, NULL, ':3:', '8', NULL, '4', NULL, '8', 'morning', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10005, '2013-07-03', 'Lucy', 'Maillette', '2418 Indian Hills Drive', 'Okemos', 'MI', '48864', NULL, '517-381-0244', NULL, 'infolm@aol.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '35.9.194.41', true, NULL, NULL, NULL, NULL, NULL, NULL, ':15:10:17:3:11:23:22:24:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10006, '2013-07-03', 'Sally', 'Hauschild', '324 Osage Lane', 'Naperville', 'IL', '60540', NULL, '630-717-9551', NULL, 'Ghauschild@sbcglobal.net', 'Mozilla/5.0 (iPad; CPU OS 6_1_3 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10B329 Safari/8536.25', '99.141.234.171', true, NULL, NULL, NULL, NULL, NULL, NULL, ':17:3:12:23:4:18:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10007, '2013-07-03', 'Sally', 'Hauschild', '324 Osage Lane', 'Naperville', 'IL', '60540', NULL, '630-717-9551', NULL, 'ghauschild@sbcglobal.net', 'Mozilla/5.0 (iPad; CPU OS 6_1_3 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10B329 Safari/8536.25', '99.141.234.171', true, NULL, NULL, NULL, NULL, NULL, NULL, ':17:3:12:23:4:18:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10008, '2013-07-03', 'Mike', 'Rempala', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'mrrdtrip7@aol.com', 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)', '24.13.64.28', true, 8, NULL, NULL, NULL, NULL, 'where on your  web site  do  i  get to  learn  the  prices  of  accomidations???', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10009, '2013-07-04', 'william', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'ctruesr@indy.rr.com', 'Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.116 Safari/537.36', '50.90.14.74', true, NULL, NULL, NULL, '2013-07-22', '2013-07-24', NULL, NULL, NULL, ':3:', '2', NULL, '1', NULL, '2', 'morning', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10010, '2013-07-05', 'Amber', 'Lowe', '1351 Blue Pine Way', 'Howell', 'MI', '48843', NULL, '8105993393', NULL, 'krajicekamber@yahoo.com', 'Mozilla/5.0 (Linux; U; Android 4.1.2; en-us; DROID4 Build/9.8.2O-72_VZW-18-2) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30', '76.226.116.134', true, NULL, NULL, NULL, NULL, NULL, NULL, ':29:17:12:6:23:2:4:18:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9788, '2012-08-29', 'Annette', 'Myslinski', '19802 Holiday Rd.', 'Grosse Pointe Woods', 'MI', '48236', NULL, '313-549-3036', NULL, 'amyslin49@aol.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 5.1; Trident/4.0; GTB7.5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; BRI/2; .NET4.0C; AskTbORJ/5.15.23.36191; BOIE8;ENUS)', '68.42.169.169', true, 4, NULL, NULL, '2013-01-01', '2013-12-31', 'I am looking to purchase a condo in the area.  I have seen several listings in a local real estate book but was hoping you sent emails that you may handle yourself.', ':10:17:11:22:24:', NULL, ':1:2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3231, '2005-08-29', 'James', 'dawson', NULL, NULL, 'MI', NULL, NULL, NULL, NULL, 'dawsonjm@comcast.net', 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)', '98.209.64.179', true, 9, 5, NULL, '2013-08-30', '2013-09-02', NULL, ':11:', false, '1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10011, '2013-07-05', 'Eric', 'Nattress', NULL, NULL, NULL, NULL, NULL, '2896560374', NULL, 'ric@nat6enterprises.com', 'Mozilla/5.0 (iPad; CPU OS 6_1_3 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10B329 Safari/8536.25', '24.36.18.88', true, NULL, NULL, NULL, '2013-07-10', '2013-07-14', NULL, NULL, NULL, ':3:', '2', NULL, '1', NULL, '2', 'morning', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10012, '2013-07-06', 'Linda', 'Mose', '3160 Hidden Timber Dr', 'Lake Orion', 'MI', '48359', NULL, '248-977-4062', NULL, 'lindamoses36@yahoo.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Win64; x64; Trident/5.0)', '69.246.40.76', true, 8, NULL, 'Are you pet friendly?', NULL, NULL, 'Pure Michigan', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10014, '2013-07-06', 'Jj', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'jirenej4j@hotmail.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; FunWebProducts; BTRS100194; AskTbORJ/5.13.1.18107; .NET CLR 2.0.50727)', '24.209.16.229', true, 8, NULL, 'Do you allow small pets?  We have a 5 lb. Yorkie we travel with.', NULL, NULL, 'magazine', ':15:29:10:17:23:25:4:18:16:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10015, '2013-07-06', 'Keith', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'keith.michelle.redder@gmail.com', 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)', '99.119.129.238', true, 8, NULL, 'Hi, I was wondering if you have association for homeowners in the area, we are looking at one on Realtor.com-unit 167.  I was wondering about the by-laws and monthly dues are?  Tried finding info online, however ended up not finding anything.  Thank you.', NULL, NULL, 'Real estate for sale', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10016, '2013-07-06', 'Kyle', 'Sanderson', '543 S 430 E', 'Pleasant Grove', 'UT', '84062', NULL, '8014046916', NULL, 'squishysandee@gmail.com', 'Mozilla/5.0 (Windows NT 5.1; rv:22.0) Gecko/20100101 Firefox/22.0', '71.219.144.57', false, 8, 2, 'First I wanted to confirm our reservation with you for the dates above.  We booked our vacation with you through Global Discovery Vacations and it says we will be in unit #41 2bd/2ba.  I wanted to just check if it is at all possible (if you have available) to upgrade to a 3 Bd/2 ba unit?  If so, how much additional would that cost?  Would we get it cheaper if we checked for that when we arrive next Saturday?  Also, would it be ok to have something shipped to your location and held for me if it arrives before we do?  Do you possibly have any Fans you could leave for us in our room?  We would need 2. \r
+Thank you so much.\r
+-Trisha Sanderson', '2013-07-13', '2013-07-20', 'Global Discovery Vacations', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10017, '2013-07-07', 'James', 'Cole', '4505 Hersman S.E', 'Grand Rapids', 'MI', '49546', NULL, '616 957 4493', NULL, 'jmshuz@comcast.net', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; CPNTDF; .NET4.0C)', '68.84.176.127', true, NULL, NULL, NULL, NULL, NULL, NULL, ':10:12:23:18:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10018, '2013-07-07', 'Doreen', 'Webber', '1280 Beachland Blvd', 'Waterford', 'MI', '48328', NULL, '248-2273595', NULL, 'doreen.webber@gmail.com', 'Mozilla/5.0 (Windows NT 6.2; WOW64; rv:22.0) Gecko/20100101 Firefox/22.0', '99.189.29.78', true, 4, NULL, NULL, '2013-07-26', '2013-07-29', NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10019, '2013-07-08', 'Joseph', 'Wilberding', NULL, NULL, NULL, NULL, NULL, '248-250-4835', NULL, 'j.wilberding@yahoo.com', 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)', '23.22.172.187', false, NULL, NULL, NULL, '2013-08-09', '2013-08-11', NULL, NULL, NULL, ':3:', '8', NULL, NULL, NULL, '8', NULL, NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10020, '2013-07-10', 'christa', 'chapman', NULL, NULL, NULL, NULL, NULL, '2699626255', NULL, 'christa@ermischtravel.com', 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)', '69.51.143.161', true, NULL, NULL, 'looking for 2 rooms for 2 couples for 8/10 2 nights. we do want to include 18 holes of golf for 3 of the 4.\r
+we are very flexible with which course. we are looking for a good deal please.', '2013-08-10', '2013-08-12', NULL, NULL, NULL, ':3:', '3', '1', '2', NULL, '3', 'morning', '5175437661', NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10021, '2013-07-11', 'Cheryl', 'Bolling', NULL, NULL, 'OH', '45036', NULL, NULL, NULL, 'cherylb@newmangasket.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '70.61.20.126', true, 6, NULL, NULL, NULL, NULL, 'Hi. I was just verifying or confirming our reservations for July 21st and leaving July 26th for condo #08.   Thanks. Cheryl', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10022, '2013-07-12', 'Donna', 'Gabriel', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'donnagabriel591@gmail.com', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.18) Gecko/20110614 Firefox/3.6.18 GTB7.1 (.NET CLR 3.5.30729)', '182.68.87.148', false, 6, NULL, 'We can increase rankings of your website in search engines. Please reply back for more details.', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10023, '2013-07-12', 'Barry', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'bcwiz@chartermi.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; BTRS124494; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E)', '71.13.55.74', false, NULL, NULL, 'Are there paved biking trails near by?', '2013-09-19', '2013-09-22', NULL, NULL, NULL, ':3:', '8', NULL, '4', NULL, '8', 'morning', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10025, '2013-07-13', 'Daryl', 'Thomas', NULL, NULL, NULL, NULL, NULL, '2488426054', NULL, 'dt0671@gmail.com', 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)', '75.114.243.193', true, NULL, NULL, NULL, '2013-08-16', '2013-08-18', NULL, NULL, NULL, ':3:', '4', '4', '4', NULL, NULL, NULL, '2488489090', 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10024, '2013-07-12', 'Ross', 'Voelker', '1700 Mertz Rd', 'Caro', 'MI', '48723', NULL, '989-673-7919', NULL, 'fran1700@hotmail.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', '174.124.252.229', true, 6, 6, 'We also would like swimming pool.', '2013-08-09', '2013-08-11', 'We would also be able to do the 3 bedroom unit.  We have 8 adults,and one infant', ':3:16:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10029, '2013-07-17', 'Daniel', 'Kever', NULL, NULL, NULL, NULL, NULL, '517 765-2325', NULL, 'beefbetty@yahoo.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.57.2 (KHTML, like Gecko) Version/5.1.7 Safari/534.57.2', '204.106.255.64', true, NULL, NULL, 'We would like a condo close to the pool if possible. We would like to play the Little Traveres Bay course for sure but other than that our second choice doesn''t matter, we would like a course that is pretty and unique.  We would arrive late morning so our tee time for Friday would have to be mid afternoon or so.\r
+Thank you', '2013-08-15', '2013-08-18', NULL, NULL, NULL, ':3:', '4', NULL, '2', NULL, NULL, NULL, NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10030, '2013-07-18', 'Julie', 'Schrebe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'jschrebe@glcommunitydirectories.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.59.8 (KHTML, like Gecko) Version/5.1.9 Safari/534.59.8', '75.147.247.46', true, NULL, NULL, 'Interested in a great golf package for a group of 8.', '2013-08-24', '2013-08-25', NULL, NULL, NULL, ':3:', '8', NULL, '4', NULL, '8', NULL, NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10026, '2013-07-14', 'Monica', 'Boote', '5909 hayrake hollow', 'Chelsea', 'MI', '48118', NULL, '734 891 1202', NULL, 'Bootem@ewashtenaw.org', 'Mozilla/5.0 (iPad; CPU OS 6_1_3 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10B329 Safari/8536.25', '24.247.160.131', true, 9, 4, NULL, '2013-08-01', '2013-08-04', 'We are coming with the Adrenaline softball group and wondered if there is any availability.....I have entered the key dates but would be interested in adding the Wednesday prior depending on availability.  I entered the 2 bed...but would be interested in hearing about any option that may be available.\r
+\r
+Thank you in advance.', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10027, '2013-07-16', 'Eleni', 'Tsaprailis', '7166 Cathedral', 'Bloomfield Hills', 'MI', '48301', NULL, '248-406-5045', NULL, 'etsapraili@att.net', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/536.30.1 (KHTML, like Gecko) Version/6.0.5 Safari/536.30.1', '76.216.208.244', true, 8, 3, NULL, '2013-07-21', '2013-07-22', 'We have stayed here before, loved unit 79 if possible.', ':15:12:11:23:4:18:22:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10059, '2013-08-28', 'Lori', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Lori.tepastte@gmail.com', 'Mozilla/5.0 (iPad; CPU OS 6_1_3 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Mobile/10B329', '99.109.248.48', true, NULL, NULL, 'I am interested in a stay and play package.  Thank you.', '2013-08-30', '2013-09-02', NULL, NULL, NULL, ':3:', '2', NULL, '1', NULL, NULL, 'morning', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10032, '2013-07-20', 'steve', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'stephen.summers@shaw.ca', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/4.0; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)', '69.42.185.106', false, NULL, NULL, 'do u have a shuttle to golf courses', '2013-09-18', '2013-09-20', NULL, NULL, NULL, ':3:', '8', NULL, NULL, '8', '8', 'morning', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10033, '2013-07-20', 'Yvonne', 'Cherry', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Sonnycherry@mac.com', 'Mozilla/5.0 (iPad; CPU OS 6_1_3 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10B329 Safari/8536.25', '66.227.153.61', true, NULL, NULL, NULL, '2013-08-18', '2013-08-22', NULL, NULL, NULL, ':3:', '14', '1', NULL, '14', '14', 'morning', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10034, '2013-07-22', 'janet', 'koszycki', '823 carpenter rd', 'loveland', 'OH', '45140', NULL, '513-331-9545', NULL, 'fabfloorcloths@aol.com', 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)', '208.54.40.244', true, NULL, NULL, NULL, NULL, NULL, NULL, ':15:29:10:17:12:6:23:2:4:18:22:24:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10035, '2013-07-22', 'Suzanne', 'Eisenbeis', '11259 Tyrone Trail', 'Fenton', 'MI', '48430', NULL, '8108750107', NULL, 'seisenbeis@pglr.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/534.57.7 (KHTML, like Gecko) Version/5.1.7 Safari/534.57.7', '24.231.195.252', true, 8, NULL, 'I have a reservation for one of your condos from July 31st thru August 4th but I can''t find the confirmation information - could you please email it to me.\r
+\r
+Thanks much,\r
+Suzanne Eisenbeis\r
+seisenbeis@pglr.com', NULL, NULL, '.', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10037, '2013-07-24', 'Pam', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'pamela.rose@gm.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GM_UserLogonTimeUTC: 2013-07-24 15:41:49; GM_UserLogonTimeBias: 240; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; InfoPath.3; MS-RTC LM 8; GM_UserLogonTimeBias: 300; GM_UserLogonTimeUTC: 2010-12-13 15:06:21)', '198.208.251.22', true, 6, NULL, NULL, NULL, NULL, 'Want to know any prices on room specials for July 29 (3-4 nights)', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10038, '2013-07-24', 'James', 'Maycunich', NULL, NULL, NULL, NULL, NULL, '870-405-9675', NULL, 'jim@stl-tags.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.5; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '173.219.48.167', true, NULL, NULL, NULL, '2013-08-15', '2013-08-22', NULL, NULL, NULL, ':3:', '2', NULL, NULL, NULL, '2', 'twilight', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10039, '2013-07-24', 'Geoff', 'Gilbert', 'N7455 Hwy 44', 'Pardeeville', 'WI', '53954', NULL, '608-429-2984', NULL, 'gilbert14@frontier.com', 'Mozilla/5.0 (iPad; CPU OS 6_1_3 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Mobile/10B329', '50.124.124.227', true, 8, NULL, 'I have lost our conformation number for our stay on Aug 16 & 17 could you please email me a copy?\r
+\r
+Thanks,\r
+\r
+Geoffrey Gilbert', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10040, '2013-07-25', 'Thomas', 'Henderson', '2297 spring lake', 'brighton', 'MI', NULL, NULL, NULL, NULL, 'e03061@att.net', 'Mozilla/5.0 (Windows NT 6.1; rv:22.0) Gecko/20100101 Firefox/22.0', '108.221.192.147', true, 9, 4, NULL, NULL, NULL, 'I am interested in "packages" with golf/lodging.   Would be in August - check in on a Friday and out of Monday - what can you tell me - 4 people.', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10041, '2013-07-26', 'Jessica', 'Robinson', NULL, NULL, NULL, NULL, NULL, '586-436-3742', NULL, 'jessicar@oclrx.com', 'Mozilla/5.0 (Windows NT 6.1; rv:22.0) Gecko/20100101 Firefox/22.0', '50.192.114.177', false, 4, NULL, 'Would you be able to send me an email me confirming a reservation for Unit 65 (Mahoney/Risher), by owner. For dates 8/23-8/26/13. Thank you!!!', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10042, '2013-07-28', 'Tracy', 'Jezewski', '4197 S. Paul Circle', 'Bay City', 'MI', '48706', NULL, NULL, NULL, 'tjjezewski@att.net', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.59.8 (KHTML, like Gecko) Version/5.1.9 Safari/534.59.8', '108.89.107.139', true, NULL, NULL, NULL, NULL, NULL, NULL, ':17:2:4:18:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8924, '2009-11-11', 'Andrew', 'Harbison', '11665 Glen Mary Dr', 'Byron', 'PA', '48418', NULL, '7175996117', NULL, 'aharbison2004@yahoo.com', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.72 Safari/537.36', '70.210.64.17', true, 8, 5, NULL, '2014-08-29', '2014-08-31', 'Next year my wife and I will celebrating our five year anniversary.  We spent our honeymoon at trout creek and I would like to surprise her for our five year.  We really enjoyed our stay there even though there was a fan running all week as the place flooded before we got there.  It was still great though and we still cherish the picture that we have the morning after we married while eating breakfast is your breakfast nook.', ':29:23:4:', NULL, '1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10043, '2013-07-30', 'Elsa', 'Turk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Reedet1@yahoo.com', 'Mozilla/5.0 (iPad; CPU OS 5_1_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9B206 Safari/7534.48.3', '76.226.131.53', true, NULL, NULL, NULL, NULL, NULL, NULL, ':15:10:17:3:12:23:18:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (3452, '2005-08-30', 'Ed', 'Kristofik', '', '', '', '', NULL, NULL, NULL, 'kristofik@email.com', 'Mozilla/5.0 (Windows NT 6.0; WOW64; rv:22.0) Gecko/20100101 Firefox/22.0', '98.227.232.77', true, NULL, NULL, NULL, '2013-09-12', '2015-09-15', '', '', false, '3:', '2', '4', '3', NULL, '2', 'morning', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (7406, '2008-10-27', 'David', 'Daniels', '', '', '', '', NULL, '269-377-1301', NULL, 'ddaniels@dowagiacschools.org', 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36', '75.145.157.225', true, NULL, NULL, NULL, '2013-09-10', '2013-09-15', '', ':11:', NULL, '3:', '2', NULL, 'one', NULL, '2', 'morning', '269-782-4480', 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10044, '2013-08-02', 'Jim', 'Karolyi', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'jkarolyi241114mi@comcast.net', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:22.0) Gecko/20100101 Firefox/22.0', '68.60.66.8', true, 8, 6, 'Hello\r
+\r
+We are planning a vacation for our family to celebrate our 50th wedding anniversary next July or August.\r
+\r
+We would be in the area this August 11th or 12th.\r
+\r
+Would a staff associate be available to show us your property?\r
+\r
+Jim and Jill Karolyi\r
+\r
+734 641 0894', NULL, NULL, 'Friend', ':15:29:3:12:23:16:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10046, '2013-08-06', 'renia', 'carrier', NULL, NULL, NULL, NULL, NULL, '2312391473', NULL, 'rtpcarrier4@att.net', 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)', '75.5.225.252', true, NULL, NULL, NULL, '2013-08-07', '2013-08-10', NULL, NULL, NULL, ':3:', '2', '2', '1', NULL, '2', 'twilight', '2317573948', 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10047, '2013-08-08', 'Linda', 'Rainville', NULL, NULL, NULL, NULL, NULL, '705-849-9449', NULL, 'lindarainville@persona.ca', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; msn OptimizedIE8;ENCA)', '66.186.65.122', true, NULL, NULL, 'I am interested in speaking with a rep regarding our next years golf event.  It will be our 25th year coming to Gaylord area, and we are interested in speaking with you to see what kind of pricing we can get, and what courses you would recommend.  You may call me at the above phone number, however, I will not be home until Friday (so you can call anytime after that).  Thank you. Linda Rainville', '2014-07-20', '2014-07-23', NULL, NULL, NULL, ':3:', '16', NULL, '8', NULL, '16', NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10048, '2013-08-08', 'Jim', 'Bult', NULL, NULL, NULL, NULL, NULL, '269-760-7497', NULL, 'jbult@superior-colour.com', 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/6.0)', '50.58.16.4', true, NULL, NULL, 'Looking for package pricing for 6-8 guys for the last weekend in September. Arriving Friday evening, Sept 27 and depart Tuesday morning, Oct 1. Would like 36 holes on Sat, Sun & Mon.', '2013-09-27', '2013-10-01', NULL, NULL, NULL, ':3:', '6', NULL, NULL, '6', '6', 'morning', '269-375-7652', 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10049, '2013-08-10', 'Connie', 'Gates', '1550 Michelson Drive', 'Grayling', 'MI', '49738', NULL, '9893488249', NULL, 'akpgates@gmail.com', 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)', '74.126.11.61', true, NULL, NULL, NULL, NULL, NULL, NULL, ':11:24:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10050, '2013-08-12', 'Lawrence', 'Bresnahan', NULL, NULL, NULL, NULL, NULL, '7059235509', NULL, 'Bresnahan.roy@hotmail.com', 'Mozilla/5.0 (iPhone; CPU iPhone OS 6_1_3 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10B329 Safari/8536.25', '70.49.205.210', true, NULL, NULL, 'Looking for reasonably prices golf package. Dates are flexible within 2 days', '2013-08-26', '2013-08-29', NULL, NULL, NULL, ':3:', '3', NULL, NULL, '3', '3', 'morning', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10051, '2013-08-14', 'JUlie', 'Harris', NULL, NULL, 'MI', NULL, NULL, NULL, NULL, 'Jules65@wowway.com', 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0; EIE10;ENUSMCM)', '24.192.152.57', true, 4, 6, NULL, '2013-12-29', '2014-01-01', 'Also interested in pricing individual condos\r
+3 units. each with 2 bedroom/1 bath\r
+\r
+Thank you\r
+Julie', ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10145, '2014-01-17', 'Al', 'Larrabee', NULL, NULL, NULL, NULL, NULL, '3133206022', NULL, 'larrabee_23@yahoo.com', 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.76 Safari/537.36', '166.137.101.172', true, NULL, NULL, NULL, '2014-06-26', '2014-06-29', NULL, NULL, NULL, ':3:', '8', NULL, NULL, '8', NULL, 'morning', '3133206022', 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10053, '2013-08-22', 'Dan', 'Shaw', NULL, NULL, NULL, NULL, NULL, '248-685-3803', NULL, 'dashaw42@gmail.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; WOW64; Trident/5.0; BO1IE8_v1;ENUS)', '71.227.31.9', true, NULL, NULL, 'Also would like info on your other condo complex that starts with an H', '2013-09-08', '2013-09-13', NULL, NULL, NULL, ':3:', '2', NULL, NULL, NULL, NULL, 'morning', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (4547, '2006-09-25', 'Jody', 'Wesley', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'jjwesley@comcast.net', 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)', '98.250.2.180', true, 9, NULL, NULL, NULL, NULL, 'I made a reservation for 8-23 to 8-25, cant find my confirmation.  Can you send it to me again.  Thanks!!!', '', NULL, '1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10054, '2013-08-22', 'mike', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'mikebloom22@cogeco.ca', 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)', '24.57.4.112', true, NULL, NULL, 'We are looking at the two condos number 1 and 2 the five bedroom ones. As for course are they close or long drives? Also do you offer meals and unlimited golf. Thanks for any and all info.. Mike', '2014-06-05', '2014-06-08', NULL, NULL, NULL, ':3:', NULL, NULL, NULL, '20', NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10055, '2013-08-23', 'TRACEY', 'ANTONIADES', '7062 Ravens Run', 'Cincinnati', 'OH', '45244', NULL, '513 235-5063', NULL, 'traceyantoniades@gmail.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/536.30.1 (KHTML, like Gecko) Version/6.0.5 Safari/536.30.1', '184.57.246.202', true, 6, 6, NULL, '2013-12-27', '2013-12-31', 'Hi Debbie\r
+I will call you later to day to confirm our reservation for Unit 1\r
+Thanks,\r
+Tracey Antoiades', ':2:16:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10056, '2013-08-23', 'Brett', 'Filcek', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'brett.filcek@dana.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.5; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; BRI/2; InfoPath.3; BOIE8;ENUS)', '162.74.70.192', false, NULL, NULL, NULL, '2013-09-22', NULL, NULL, NULL, NULL, ':3:', '3', NULL, '1', '1', '3', 'morning', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10057, '2013-08-24', 'Melissa', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'm1496adams@gmail.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Win64; x64; Trident/5.0)', '54.242.19.240', true, 6, NULL, NULL, NULL, NULL, 'I have perused your website and see no information regarding rates.  I am looking to accommodate 90-100 people during the last week of July/first week of August of 2014.', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10028, '2013-07-16', 'Richard', 'Parker', NULL, NULL, NULL, NULL, NULL, '519-895-0030', NULL, 'cdparker@rogers.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB5; BTRS123374; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '173.33.150.109', true, NULL, NULL, 'would like to play Little Traverse Bay Sept.25th, and Black Lake September 26th unless it is more than 30 miles away. If it is replace it with Bay Harbor for 26th.', '2013-09-24', '2013-09-27', NULL, NULL, NULL, ':3:', '2', NULL, '1', NULL, '2', 'morning', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10058, '2013-08-27', 'Bob', 'FitzSimmons', NULL, NULL, 'IN', '46514', NULL, NULL, NULL, 'bfitzsimmons@gulfstreamcoach.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '97.64.156.242', true, 9, 5, NULL, NULL, NULL, 'I believe you have a 3 night min. stay during your summer season. When does your 2 night min. start?', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10060, '2013-08-28', 'Michele', 'Jeffery', '410 Depot St.', 'Monroe', 'MI', '48161', NULL, '7346783142', NULL, '925mmj@gmail.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; F-6.0SP2-20041109; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 1.1.4322; InfoPath.3; InfoPath.1)', '136.2.1.105', true, 8, NULL, 'My reservation code is 91663, I am registered for the following package:\r
+        2 Bedroom, 2 bath Loft Condo for 6 - $147.00 per person \r
+        (Based on 6 person occupancy if booked before 9/17)\r
+        Includes 2 nights in a fully furnished 2 bedroom/2bathroom LOFT condo with Jacuzzi tub and \r
+        fireplace.  Rate includes BOTH nights (9/20 & 9/21) and includes all taxes and fees at \r
+        Trout Creek PLUS Your Fall Frenzy Wristband to all events, Bike Registration, and Box Lunch.\r
+\r
+How do I register all my guests for the Wristbands and Bike Registration?\r
+\r
+Michele Jeffery', NULL, NULL, 'Zoo De Mac website.', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10061, '2013-08-29', 'Peggy', 'Kruczynski', '14439 E Grand Lake Rd', 'Presque Isle', 'MI', '49777', NULL, '989-595-6415', NULL, 'peggy_k@hotmail.com', 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)', '50.124.57.7', true, 4, 6, NULL, NULL, NULL, 'Just wanted to say our stay was the BEST we had a blast with our Girls Week-end away....the staff was so helpful...Deb,Tracie,Chris,Shari were so accommadating!!!!We will be back...Thank you we will be back!!!!!', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10062, '2013-08-29', 'Donald', 'Duchesne', NULL, NULL, NULL, NULL, NULL, '734-479-1236', NULL, 'DUCH07@aol.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322)', '71.227.39.48', true, NULL, NULL, 'We enjoyed our stay in 2010. Thought we come back to Trout Creek again. Can you set up a golf pkg. to play the 4 courses at Boyne Highlands + 9holes at Chestnut Valley? Total cost? June 12,13,14,15 2014. 3 nites, 16 golfers.', '2014-06-12', '2014-06-15', NULL, NULL, NULL, ':3:', '16', NULL, NULL, NULL, '16', 'morning', '734-515-5048', 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10063, '2013-09-02', 'Michael', 'O''Neill', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'm.oneill10@yahoo.com', 'Mozilla/5.0 (Windows NT 6.2; WOW64; rv:23.0) Gecko/20100101 Firefox/23.0', '204.197.227.61', false, 9, NULL, 'Dear Sir or Ma''am,\r
+\r
+First of all I would like to mention that I have stayed at your resort several times in the past and have thoroughly enjoyed every minute of it. Every aspect of your resort has been excellent. Due to this satisfaction, my fiance and I are considering booking a condo for our honeymoon.\r
+\r
+However, I just had two quick questions before we make our decision. The first is just simply if you have any special packages for honeymoons or not, and if so what that might be. The second is if your company has any sort of military discount.\r
+\r
+Thank you very much and I look forward to hearing from you.!\r
+\r
+Best regards,\r
+\r
+Mike O''Neill\r
+m.oneill10@yahoo.com', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10066, '2013-09-04', 'Tammy', 'Belanger', '2988 Stone Meadow Dr.', 'Milford', 'MI', '48380', NULL, '2487890940', NULL, 'tlbblossom@hotmail.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/536.30.1 (KHTML, like Gecko) Version/6.0.5 Safari/536.30.1', '71.227.10.162', false, 9, 6, NULL, '2014-12-27', '2014-12-30', NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10064, '2013-09-03', 'Monica', 'Capers', '24974 Chalk Farm Road', 'Warren', 'MI', '48091', NULL, '3138062254', NULL, 'bellm@karmanos.org', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.62 Safari/537.36', '146.9.105.101', true, 6, 1, NULL, '2013-09-03', '2013-08-10', NULL, ':17:12:6:24:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10065, '2013-09-03', 'Patrick', 'Burns', NULL, NULL, NULL, NULL, NULL, '419 726 6866', NULL, 'pjburns@bex.net', 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)', '72.240.134.74', true, NULL, NULL, NULL, '2013-09-23', '2013-09-25', NULL, NULL, NULL, ':3:', '2', '2', NULL, NULL, '2', 'morning', '419 377 5352', 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10067, '2013-09-05', 'Daniel', 'Engelhardt', '4308 Winterwood', 'Saginaw', 'MI', '48603', NULL, '9892251786', NULL, 'dan.engelhardt@siionline.com', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Win64; x64; Trident/5.0)', '24.180.77.238', false, 6, 5, 'ON a motorcydle tour of upper Michigan, looking for a 3 day retreat', '2013-10-11', '2013-10-13', NULL, ':15:17:4:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10068, '2013-09-05', 'Debbie', 'Robertson', NULL, NULL, 'TX', NULL, NULL, NULL, NULL, 'debbie.robertson@childrens.com', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0)', '192.131.133.200', true, 2, 5, 'We are an older couple and we will be on our honeymoon. We are interested in finding out about your packages that would best suite our needs.\r
+Thanks!', '2013-10-10', '2013-10-11', NULL, ':10:17:4:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10069, '2013-09-05', 'Allen', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'acush47@comcast.net', 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)', '71.194.7.71', true, NULL, NULL, NULL, '2013-09-17', '2013-09-19', NULL, NULL, NULL, ':3:', '2', NULL, NULL, NULL, '2', 'morning', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10070, '2013-09-05', 'Mary', 'Patterson', NULL, NULL, NULL, NULL, NULL, '8106556695', NULL, 'mary5120@comcast.net', 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; WOW64; Trident/6.0)', '71.205.208.136', true, 6, NULL, 'Do you accept pets?', NULL, NULL, 'Pure Michigan', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10071, '2013-09-06', 'Tracey', 'Shepherd', '12900 Hall Road, Suite 300', 'Sterling Heights', 'MI', '48313', NULL, '5862540200', NULL, 'tshepherd@mikesmithlaw.com', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.66 Safari/537.36', '67.88.168.205', true, NULL, NULL, NULL, NULL, NULL, NULL, ':29:25:4:18:22:16:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10072, '2013-09-09', 'Mark', NULL, NULL, NULL, 'FL', NULL, NULL, NULL, NULL, 'newf130@gmail.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_5_8) AppleWebKit/534.50.2 (KHTML, like Gecko) Version/5.0.6 Safari/533.22.3', '75.115.236.2', true, 9, NULL, 'I am looking for the management company name  that runs the condo association for Trout Creek.  If you could help out that would be great.  Thanks', NULL, NULL, NULL, ':24:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10073, '2013-09-10', 'donald', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'donpat@ameritech.net', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)', '12.152.193.133', true, NULL, NULL, 'noon tee off prefered', '2013-09-13', '2013-09-15', NULL, NULL, NULL, ':3:', '2', NULL, 'one', NULL, '2', NULL, NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9363, '2010-05-31', 'Rod', 'Filcek', '5340 Brandy Lane', 'Sylvania', 'OH', '43560', NULL, '419-345-0262', NULL, 'rod.filcek@dana.com', 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)', '72.241.14.194', true, NULL, NULL, '9/13 - Bay Harbor Links/Quarry at around 1:30 pm, 9/14 - Little Traverse Bay at 8:30 am, 9/15 - Black Lake at 10:00 am', '2013-09-16', '2013-09-18', NULL, ':11:18:22:', NULL, ':2:3:', '3', NULL, '1', '1', NULL, NULL, NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10074, '2013-09-11', 'Steve', 'Wolf', NULL, NULL, NULL, NULL, NULL, '347 525 7015', NULL, 'steve.wolf@outlook.com', 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.66 Safari/537.36', '216.206.252.13', false, NULL, NULL, 'Please let me know the pricing options for a round of golf each day & a condo for 4 people over that duration of time. Thank you!', '2013-10-23', '2013-10-27', NULL, NULL, NULL, ':3:', '4', NULL, NULL, '4', '4', 'morning', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10075, '2013-09-15', 'Louise', NULL, '1420 Monck ave', 'LaSalle', 'ON', 'N9J 3P5', NULL, NULL, NULL, 'louisearpin@me.com', 'Mozilla/5.0 (iPad; CPU OS 6_1_3 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10B329 Safari/8536.25', '76.64.205.181', true, 6, 4, 'Looking for yor best price. \r
+Thank you in advance.', '2013-10-10', '2013-10-13', NULL, ':15:17:12:6:18:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10077, '2013-09-17', 'Ryan', 'Wrobleski', NULL, NULL, NULL, NULL, NULL, '2482240114', NULL, 'ryan.wrobleski@pnc.com', 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.66 Safari/537.36', '161.150.2.57', false, NULL, NULL, 'I am looking for a golf/lodging quote for a group of 20 golfers on the dates noted above. 4 rounds of golf (TH-18, FR-18, SAT-36). Please contact me using information herein to discuss details.', '2014-09-11', '2014-09-14', NULL, NULL, NULL, ':3:', '16', NULL, NULL, NULL, '16', 'morning', '2482240114', 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10078, '2013-09-18', 'Bonnie', 'Koenig', '730 Boutell Dr', 'Grand Blanc', 'MI', '48439', NULL, '8106945017', NULL, 'bbkoenig@gmail.com', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.3)', '198.111.71.16', true, NULL, NULL, NULL, NULL, NULL, NULL, ':3:12:11:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9699, '2012-03-19', 'Laurie', 'Carter', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'lauriecarter33@att.net', 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; WOW64; Trident/6.0; MDDCJS)', '99.137.6.240', true, NULL, NULL, NULL, NULL, NULL, NULL, ':24:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10079, '2013-09-25', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Mcconnell46788@frontier.com', 'Mozilla/5.0 (iPad; CPU OS 6_1_3 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10B329 Safari/8536.25', '184.9.231.52', true, NULL, NULL, NULL, NULL, NULL, NULL, ':15:17:23:25:18:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8249, '2009-06-04', 'jill', 'liley', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'jmliley@comcast.net', 'Mozilla/4.0 (compatible; MSIE 8.0; MSBrowserIE8; Windows NT 6.1; WOW64; Trident/4.0; chromeframe/29.0.1547.66; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; MS-RTC LM 8; dmx:p; mty:x; ssx:xb003986.id.pk.na; slx:ad.rh.na)', '170.74.50.11', false, 6, 4, NULL, '2014-11-08', '2014-11-10', 'I am interested in availablity of unit 49 in November. Please advise dates and cost. Thanks!', '', NULL, '1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10082, '2013-09-27', 'Marvin', 'Sayles', NULL, NULL, NULL, NULL, NULL, '586-977-7366', NULL, 'pokermarv@sbcglobal.net', 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)', '76.219.132.63', true, NULL, NULL, 'Not sure of dates---just a general idea.', '2013-10-10', '2013-10-15', NULL, NULL, NULL, ':3:', '2', NULL, '1', NULL, '2', 'morning', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10081, '2013-09-25', 'Pat', 'Sommerfeld', '112 Arizona Rd', 'Alpean', 'MI', '49707', NULL, '9896575859', NULL, 'wsomm@i2k.net', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0)', '66.255.212.243', true, 9, 2, 'Hey Chris,\r
+Hi and hope you are doing well. I am just looking ahead at some possibilities for my immediate family and possibly other family members to get their own condos for a weekend this winter. I see right now that you have condos that I favor for 591.71 for 3 nites verses 1009.05 for the winter months. Do you have any winter specials for 2014 yet? I really like condo #112 as a first choice, condo # 119 as a second choice and condo #70 as a third choice if I accomidate for my immediate family. \r
+We could also see 2-3 more condos for other family memebers join us unless they group together into a larger unit. If all join us we could have as many as 30-35 of us if all choose to participate in this outing. Can you tell me if you have any super specials for the winter? Thanks, Take Care, Pat Sommerfeld', '2014-01-17', '2014-01-19', NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10083, '2013-09-30', 'Melodee', 'Willson', '5600 N. Williamston Road', 'Williamston', 'MI', '48895', NULL, NULL, NULL, 'melodeewillson@gmail.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/536.30.1 (KHTML, like Gecko) Version/6.0.5 Safari/536.30.1', '24.247.224.128', true, NULL, NULL, NULL, NULL, NULL, NULL, ':10:17:23:4:18:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10084, '2013-10-01', 'joan', 'schearer', '1887 banbury', 'Birmingham', 'MI', '48009', NULL, '2487232766', NULL, 'jss20@aol.com', 'Mozilla/5.0 (Windows NT 5.1; rv:24.0) Gecko/20100101 Firefox/24.0', '98.224.243.123', true, NULL, NULL, NULL, NULL, NULL, NULL, ':10:17:23:18:22:24:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10120, '2013-12-19', 'Linda', 'Lupi', '4015 Auburn Drive', 'Royal Oak', 'MI', '48073', NULL, '2485491075', NULL, 'lupil@wowway.com', 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.63 Safari/537.36', '69.14.184.72', true, 4, 1, NULL, '2014-02-06', '2014-02-09', 'We will have 3 vehicles---one will have a trailer with 2 snowmobiles. What are the rules for snowmobile use and vehicle/trailer parking please.', ':25:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10086, '2013-10-04', 'Sherrie', 'English', '5644 Roundhill Road', 'Bloomfield Hills', 'MI', '48301', NULL, '248-258-4917', NULL, 's1english@aol.com', 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)', '68.41.203.145', false, 8, NULL, NULL, '2013-10-31', '2013-11-03', 'I made a reservation online today and neglected to print my confirmation. Would you please email a confirmation for my above dates?\r
+\r
+Thanks so much,\r
+Sherrie English', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10087, '2013-10-04', 'Jessica', 'Walker', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jwalker43130@yahoo.com', 'Mozilla/5.0 (iPad; CPU OS 6_1_3 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10B329 Safari/8536.25', '162.206.113.17', true, NULL, NULL, NULL, NULL, NULL, NULL, ':15:29:17:4:20:18:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10088, '2013-10-06', 'Jenny', 'Palomba', '8256 Farnum Circle', 'Warren', 'MI', '48093', NULL, NULL, NULL, 'jen026@yahoo.com', 'Mozilla/5.0 (Windows NT 6.0; rv:24.0) Gecko/20100101 Firefox/24.0', '69.14.134.133', true, NULL, NULL, NULL, NULL, NULL, NULL, ':17:12:6:23:4:18:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9440, '2010-11-10', 'Kelley', 'Golich', '1593 Gleneagles', 'Highland', 'MI', '48357', NULL, '248-889-2593', NULL, 'kelleygolich@comcast.net', 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)', '71.227.6.102', false, 9, NULL, 'I am looking for 2 units next to each other preferably for these dates, can you let me know if you have any available and what are the rates?  Also, I know it depends on the weather but has the ski resort been open over Thanksgiving in prior years?', '2013-11-27', '2013-11-30', NULL, ':12:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10091, '2013-10-13', 'Melissa', 'Lovell', '3535 Kipling Circle', 'Howell', 'MI', '48843', NULL, '8105990238', NULL, 'mlove121@gmail.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.93 Safari/537.36', '68.40.44.159', false, 9, 6, 'I am not 100% sure of the exact dates as of this time, but was just wondering if we brought more people this year, perhaps the larger condo would be a good fit.  Could you give me an estimate of what the daily charge would be for either (or both) of  the larger units during the Zoo de Mack weekend?  \r
+As a matter of fact, a list of the costs for each unit might be helpful in our planning. Thank you.', '2014-05-17', '2014-05-19', 'We stayed at Trout for last year''s Zoo de Mack.', ':15:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10092, '2013-10-15', 'Jason', 'Siegert', '1505 Hubert Rd', 'Hubbard Lake', 'MI', '49747', NULL, '989-727-3842', NULL, 'northstarep1@yahoo.com', 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.69 Safari/537.36', '75.133.26.19', false, 6, NULL, 'I am inquiring on whether you hire a professional security firm for your condominiums or resort, and if so, how may I place a bid in.\r
+                          Thank You\r
+                        Jason Siegert\r
+                NorthStar Executive Protection\r
+                       1505 Hubert Rd\r
+                  Hubbard Lake, Mi 49747', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10094, '2013-10-24', 'Donna Gabriel', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'dnngabriel@gmail.com', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.19) Gecko/20110707 Firefox/3.6.19 GTB7.1 (.NET CLR 3.5.30729)', '182.68.8.74', true, 6, NULL, 'We can increase rankings of your website in search engines. Please reply back for more details.', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10095, '2013-10-24', 'steven', 'smith', NULL, NULL, NULL, NULL, NULL, '239 596-2999', NULL, 'ssmith@lesmith.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MDDC; .NET4.0C; BRI/2)', '69.139.32.136', true, NULL, NULL, 'We stayed with you about 3 years ago on our annual golf trip.  All eight men want to play the above course PLUS True North. Would like to know the availability.  Trip dates might change a little as we plan.', '2014-07-20', '2014-07-23', NULL, NULL, NULL, ':3:', '8', NULL, NULL, '8', '8', 'morning', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10096, '2013-10-28', 'Paula', 'Maas', '1904 Goldeneye Dr', 'Holland', 'MI', '49424', NULL, '6163993662', NULL, 'pmaas1011@gmail.com', 'Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.101 Safari/537.36', '24.236.159.5', false, 6, 6, NULL, '2014-02-16', '2014-02-18', NULL, ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10097, '2013-11-03', 'linda', 'culbertson', '13323 shire rd', 'wolverine', 'MI', '49799', NULL, '231-525-9104', NULL, 'culbertsonli@hotmail.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.3; BTRS26718; SearchToolbar 1.2; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; FunWebProducts; AskTbORJ/5.15.15.36191)', '108.212.228.62', false, 8, NULL, NULL, NULL, NULL, 'I may be interested in purchasing one of your 2 bed 2 bath condos. Can you give me a break down of what HOA fees covers and a ball park idea of what utilites run per month? Thank you for your help. Linda Culbertson', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10099, '2013-11-04', 'Tyler', 'McCarty', '1050 Bay View Rd', 'Petoskey', 'MI', '49770', NULL, '2318386048', NULL, 'tmccarty@kilwinsfranchise.com', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.101 Safari/537.36', '23.30.42.86', false, 8, 5, 'I just moved back to the area and was wondering if you do long term rentals on your condo''s?', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10098, '2013-11-03', 'Susie', 'Steinour', '3360 w. pebble beach t', 'Lecanto', 'FL', '34461', NULL, '352-527-3621', NULL, 'Susiegepp@yahoo.com', 'Mozilla/5.0 (iPad; CPU OS 6_1_3 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10B329 Safari/8536.25', '173.221.152.10', true, NULL, NULL, 'Hiking also', '2014-07-19', NULL, NULL, ':15:10:11:22:16:', NULL, ':3:2:', '2', NULL, '1', NULL, NULL, 'morning', '352-601-7374', 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10100, '2013-11-05', 'deb', 'barney', '48738 Crescent', 'Macomb', 'MI', '48044', NULL, '313-885-5644', NULL, 'deb.barney@bills.nfl.net', 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/6.0)', '63.167.7.27', true, 4, 1, 'We are looking to purchase something in this area within the next year or so for retirement purposes.  If possible please provide as much information concerning your units as you can...\r
+We are interested in at least 2 bedroom with a loft that can be used as a bedroom or a typical 3 bedroom unit.  At least one full and one half bath to two full baths.\r
+Do you offer garages?  if so, what size 1 or 2 car...are they attached to the unit?  What are you HOA fees are there assessments?  thank you very much, we ARE interested.', '2014-02-14', '2014-02-17', 'We are also interested in New Years Eve Rental if at all possible..\r
+Arriving on the 30th or 31st (day) and leaving on the 2nd or 3rd.', ':29:17:6:23:25:22:24:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10101, '2013-11-06', 'dennis', 'zaski', NULL, NULL, NULL, NULL, NULL, '517-782-1857', NULL, 'jockozaski@att.net', 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/6.0)', '172.5.40.35', true, NULL, NULL, 'would like a quote on golf package\r
+16 golfers - all guys\r
+so I need 16 beds\r
+4 rounds of golf\r
+arrive on Wednesday play wed,thur,fri,sat\r
+depart on subday', '2014-06-03', '2014-06-08', NULL, NULL, NULL, ':3:', '16', NULL, NULL, '16', '16', 'morning', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9484, '2011-01-31', 'Werner', 'Grundei', '30543 Warner', 'Warren', 'MI', '48092', NULL, '586-751-3999', NULL, 'wgrundei4779@wowway.com', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.101 Safari/537.36', '24.192.189.137', true, 9, NULL, NULL, '2014-02-14', '2014-02-18', 'Am interested in renting Condo 30 and 32 in bldg. 5. Please call me. I have rented from you condo #2 for 3 years. I''m just a little late this year. I need the condo''s to be adjacent to one another to house our family.', ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10102, '2013-11-11', 'Maddie', 'Kearns', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'kearns.made@uwlax.edu', 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; WOW64; Trident/6.0; Touch; MAARJS)', '138.49.1.8', false, 6, NULL, 'I wanted to book a weekend through you, and saw that you have a discount on lift tickets through Nubs Nob. How much is the discount that you are offering?', NULL, NULL, NULL, ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10103, '2013-11-11', 'liz', 'urquhart', NULL, NULL, 'ON', 'n8n1t6', NULL, '5195662785', NULL, 'ulizb@yahoo.ca', 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0; MALC)', '67.70.63.214', true, 6, NULL, NULL, '2013-12-29', '2013-01-02', 'Hi, we are looking for dates stated.  5 of the 8 people are skiing.  Also would like to know is there an option of brining a pet (no big deal if it''s not ok).  Please would you also provide address, so that we can get our bearings on location.  thank you,  Liz', ':12:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10104, '2013-11-13', 'Jackie', 'Somerville', '1117 North Center Street Apt 108', 'Royal Oak', 'MI', '48067', NULL, '2488082776', NULL, 'jcqlnsomerville@gmail.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.101 Safari/537.36', '71.238.25.207', true, 9, 6, NULL, '2014-02-07', '2014-02-09', 'Greetings! I have a group of roughly 12-14 people looking to stay in Condo #2 the weekend of Feb 7-9 2014. Could you tell me if this condo is available at that time and what I would need to do to reserve it? \r
+\r
+Thank you!', ':25:2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10106, '2013-11-14', 'Donna', 'Gabriel', 'Seventh Street', 'Tulsa', 'OK', '74127', NULL, NULL, NULL, 'donnagabriel786@gmail.com', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.19) Gecko/20110707 Firefox/3.6.19 GTB7.1 (.NET CLR 3.5.30729)', '122.161.133.30', true, 6, NULL, 'We can increase rankings of your website in search engines. Please reply back for more details.', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10107, '2013-11-14', 'Laura', 'Piwko', '23433 Deziel Street', 'St Clair Shores', 'MI', '48082', NULL, '586-243-5910', NULL, 'laurapiwko@yahoo.com', 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)', '68.41.119.233', true, 9, NULL, 'For the past few years our soccer club, St Clair Shores Select, has stayed at your facility over Fathers Day weekend. I am looking to reserve some condos for our families. I have 80 players and their families. We will need roughly 40-60 rooms. These are the prices that we were given last year, which included staying either the Thursday beforehand or Monday afterwards for free.\r
+\r
+1 Bedroom, 1 Bathroom $492\r
+\r
+2 Bedroom, 1 Bathroom $516.56\r
+\r
+2 Bedroom, 2 Bathroom $548.60\r
+\r
+2 Bedroom, 2 Bathroom, Plus $606.48\r
+\r
+2 Bedroom, 2 Bathroom, Loft $651.04\r
+\r
+3 Bedroom, 2 Bathroom, Loft $735.28\r
+\r
+Can you please let me know if you would be able to accommodate our group and what the costs would be?  Thank you for your time and help.\r
+\r
+Laura Piwko\r
+SCS Select Soccer Club', '2014-06-13', '2014-06-15', NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10108, '2013-11-21', 'maria', 'maddage', 'PO BOX 571', 'Brooklyn', 'MI', '49230', NULL, '5175921758', NULL, 'maddria@gmail.com.com', 'Mozilla/5.0 (Linux; Android 4.1.2; SAMSUNG-SGH-I467 Build/JZO54K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.59 Safari/537.36', '184.8.59.119', true, NULL, NULL, 'Are pets allowed?', NULL, NULL, NULL, ':23:25:2:4:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10109, '2013-11-21', 'kim', 'marr', '504 drahner street', 'eaton rapids', 'MI', '48827', NULL, '5176670683', NULL, 'kimpossible914@yahoo.com', 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_3; en-us; Silk/1.0.22.153_10033210) AppleWebKit/533.16 (KHTML, like Gecko) Version/5.0 Safari/533.16 Silk-Accelerated=true', '71.238.41.238', true, 6, 2, NULL, '2013-12-28', '2014-01-01', 'Please advise of your availability.  Our family will be traveling up to ski.', ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10110, '2013-11-22', 'Jan', 'Skinner', NULL, NULL, NULL, NULL, NULL, '5862542943', NULL, 'Skinner@msu.edu', 'Mozilla/5.0 (iPad; CPU OS 5_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9B176 Safari/7534.48.3', '78.125.154.89', true, 9, 6, NULL, '2013-12-23', '2013-12-26', NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9706, '2012-03-24', 'Lori', 'Marchel', '1357 old farm lane', 'st joseph', 'MI', '49085', NULL, '269-408-0405', NULL, 'lori.marchel@bcdtravel.com', 'Mozilla/5.0 (Linux; U; en-us; KFTT Build/IML74K) AppleWebKit/535.19 (KHTML, like Gecko) Silk/3.8 Safari/535.19 Silk-Accelerated=true', '50.172.37.140', true, NULL, NULL, NULL, NULL, NULL, NULL, ':25:14:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10111, '2013-11-28', 'Liz', 'Yoon', NULL, NULL, 'MI', '48374', NULL, '5866123296', NULL, 'sdleq@sbcglobal.net', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36', '174.84.236.45', true, 9, 4, NULL, '2013-12-24', '2013-12-26', NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9457, '2010-12-12', 'Mark', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'markpbering@wowway.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.71 (KHTML, like Gecko) Version/6.1 Safari/537.71', '69.14.122.14', false, 9, NULL, 'We have a reservation at Trout Creek for Dec 28-30. Normally we come up for skiing, but we would also like to do a day of snowmobiling this year.\r
+I would like to rent snowmobiles for the whole family Dec 30. This would include my wife and I and our 4 grownup kids (youngest is 18). Ideally we would like to have a guide though since we''re not experienced riders. \r
+Can you guys help arrange that?\r
+\r
+Thanks,\r
+...Mark\r
+313 404 5567 cell', NULL, NULL, NULL, ':25:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10115, '2013-12-08', 'Lisa', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'lgolder@sbcglobal.net', 'Mozilla/5.0 (iPad; CPU OS 6_1_3 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10B329 Safari/8536.25', '99.180.73.41', true, 8, NULL, 'are the special rates for the early ski package before Dec 25th for two days or the amount quoted per day? Also does the deal end on Dec 25th or thru dec 25th?\r
+I also wanted to see whether the outdoor pool and hot tub are oprn during december,', NULL, NULL, 'pure michigan', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10114, '2013-12-04', 'Dan', 'Brys', '940 Woods Lane', 'Grosse Pointe Woods', 'MI', '48236', NULL, '248-390-0960', NULL, 'djbrys@gmail.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET CLR 1.1.4322; .NET4.0C; .NET4.0E; InfoPath.3)', '144.230.191.36', true, 4, NULL, 'I understand I''m late here so I hope you can help.  I have my wife, myself and our two daughters and their husbands.  My daughter & husband in from CA.  I also have  our Chesapeke Bay Retriever - not sure if that''s a deal breaker or not.  Please let me know what you can do or any recommendations you have for us.  You can email me back or call me at 248-390-0960.', '2013-12-26', '2013-12-29', NULL, ':12:2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10116, '2013-12-09', 'Gino', 'Roncelli', '6471 Metro Parkway', 'Sterling Heights', 'MI', '48312', NULL, '5865573453', NULL, 'gino.r.roncelli@gmail.com', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.63 Safari/537.36', '76.112.132.119', false, 8, 6, 'Hi -\r
+\r
+Last minute notice, but was wondering if you had any accommodation that could a group of 10 individuals available?  Interested in the nights of the 30th, and 31st, with a possibility of the 29th as well.  Please let me know if you have anything that might work!\r
+\r
+Best,\r
+Gino Roncelli\r
+gino.r.roncelli@gmail.com\r
+586-557-3453', '2013-12-29', '2014-01-01', 'Megan Staake', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10117, '2013-12-10', 'Catherine', 'M.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'pcmcdonagh@att.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MS-RTC LM 8; .NET4.0C; .NET4.0E)', '167.23.240.20', true, 8, 4, 'Either a 1 bed/bath or a 2 bed/1 bath for a Sat-Mon 2 night stay. Can you provide the cost and if there are any restaurants on the grounds? \r
+Thank you!', '2014-01-04', '2014-01-06', 'Family magazine', ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10118, '2013-12-13', 'Ivan', 'Ballard', NULL, NULL, 'OR', NULL, NULL, NULL, NULL, 'ivanballard84@gmail.com', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.19) Gecko/20110707 Firefox/3.6.19 GTB7.1 (.NET CLR 3.5.30729)', '122.161.131.16', true, 1, NULL, 'We can increase rankings of your website in search engines. Please reply back for more details.', NULL, NULL, 'We can increase rankings of your website in search engines. Please reply back for more details.', ':24:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10085, '2013-10-04', 'George', 'Hartay', 'N72 W22406 jeanine Lane', 'Sussex', 'WI', '53089', NULL, '262-246-4204', NULL, 'gjhartay@yahoo.com', 'Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko', '24.167.251.144', true, NULL, NULL, NULL, NULL, NULL, NULL, ':10:17:23:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10121, '2013-12-23', 'susan', 'dillon', '3108 Sunrise Ct', 'middleton', 'WI', '53562', NULL, '608-239-3271', NULL, 'sedillon3@yahoo.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E; BRI/2)', '144.92.16.160', true, 8, 1, NULL, '2014-01-23', '2014-01-26', '2 couples coming that way to cross country ski. Want to know if you have trails nearby and have availabilty for those days. Please call if able, thank you.', ':23:2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10122, '2013-12-25', 'Sherry', 'Cummins', '657 N. Wayne St.', 'Kenton', 'OH', '43326', NULL, NULL, NULL, 'cumminssherry@hotmail.com', 'Mozilla/5.0 (iPad; CPU OS 7_0_4 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11B554a Safari/9537.53', '71.79.68.195', true, NULL, NULL, NULL, NULL, NULL, NULL, ':15:12:6:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10123, '2013-12-30', 'kristi', 'stempien', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'kristihatch@yahoo.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.59.10 (KHTML, like Gecko) Version/5.1.9 Safari/534.59.10', '76.122.190.108', true, 6, NULL, NULL, NULL, NULL, 'hi! i am inquiring about your giving procedure for non profits.  we are looking for a donation of a stay at your hotel for a getaway package we are planning.  please advise as to proper protocol for such requests.  thank you in advance.', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10124, '2013-12-30', 'Theresa', 'Bonham', '506 Chalmers', 'Detroit', 'MI', '48215', NULL, NULL, NULL, 'theresa978@gmail.com', 'Mozilla/5.0 (Linux; U; Android 4.1.2; en-us; SCH-I535 Build/JZO54K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30', '70.210.66.173', true, NULL, NULL, NULL, NULL, NULL, NULL, ':15:17:3:12:23:2:4:18:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10125, '2013-12-31', 'Chantal', 'Rosa', NULL, NULL, NULL, NULL, NULL, '819-566-8715', NULL, 'Chantal.rosa@videotron.ca', 'Mozilla/5.0 (iPad; CPU OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53', '24.48.125.57', true, NULL, NULL, NULL, '2014-08-08', '2014-08-18', NULL, NULL, NULL, ':3:', '4', NULL, '2', NULL, '4', 'morning', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10126, '2014-01-02', 'Brett', 'Filcek', NULL, 'Sylvania', 'OH', '43560', NULL, NULL, NULL, 'bfilcek@yahoo.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.5; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; InfoPath.3; BRI/2; BOIE8;ENUS)', '162.74.70.191', false, 9, 1, 'This is a request for quote.  There will be 2 families and we will require 2 condos.\r
+Because there will be young kids, building 16 is in the most ideal location.\r
+\r
+If available, can you please provide me pricing for condo 113 (2BR 2BA+Loft) and 112 (2BR 2BA+).\r
+\r
+Check in date will be August 9, 2014 and check out on August 16, 2014.\r
+\r
+Thanks and I look forward to booking summer vacation!\r
+\r
+\r
+Brett Filcek', '2014-08-09', '2014-08-16', NULL, ':29:12:11:22:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10127, '2014-01-03', 'Brian', 'Gorman', '1010', 'Grand Ledge', 'MI', '48837', NULL, NULL, NULL, 'beezer00000001@aol.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GM_UserLogonTimeUTC: 2014-01-03 12:33:47; GM_UserLogonTimeBias: 300; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; InfoPath.3; GM_UserLogonTimeBias: 300; GM_UserLogonTimeUTC: 2010-12-13 15:06:21)', '198.208.251.22', true, NULL, NULL, NULL, NULL, NULL, NULL, ':4:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10128, '2014-01-03', 'Katrina', 'Roy', '65075 Van Dyke', 'Washington', 'MI', '48095', NULL, '8104599035', NULL, 'kat829@comcast.net', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/534.57.7 (KHTML, like Gecko) Version/5.1.7 Safari/534.57.7', '68.41.24.38', true, NULL, NULL, NULL, NULL, NULL, NULL, ':10:23:25:2:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10129, '2014-01-03', 'Mantissa', 'Schuler', '3954 Walnut Street', 'New Troy', 'MI', '49119', NULL, '269-426-3941', NULL, 'schuler.mant@comcast.net', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)', '12.70.122.132', true, 6, 5, 'Just wondering if the midweek special still applies to these dates. Your website was unclear.', '2014-02-23', '2014-02-28', NULL, ':23:2:4:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10130, '2014-01-06', 'moe', 'miller', NULL, NULL, NULL, NULL, NULL, '502-477-6042', NULL, 'millertimeranch@yahoo.com', 'Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko', '74.129.129.12', true, NULL, NULL, NULL, '2014-08-20', '2014-08-27', NULL, NULL, NULL, ':3:', '2', NULL, '1', NULL, '1', 'morning', '502-523-6082', 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10131, '2014-01-07', 'Ken', 'King', NULL, NULL, 'MI', NULL, NULL, NULL, NULL, 'kking.spc@gmail.com', 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.68 Safari/537.36', '70.88.91.202', true, 6, 6, 'How much is Condo #2 for March 14-15?\r
+\r
+Ken', '2014-03-14', '2014-03-16', NULL, ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10132, '2014-01-08', 'Lisa', 'Jackson', '29488 Ashland 201', 'harrison twp.', 'MI', '48045', NULL, '5867411318', NULL, '617blkjack@att.net', 'Mozilla/5.0 (Linux; U; en-us; KFJWI Build/IMM76D) AppleWebKit/535.19 (KHTML, like Gecko) Silk/3.8 Safari/535.19 Silk-Accelerated=true', '108.205.128.158', true, NULL, NULL, NULL, NULL, NULL, NULL, ':3:6:23:25:2:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10133, '2014-01-09', 'Michele', 'VanTassel', '3058 West YZ Avenue', 'Schoolcraft', 'MI', '49087', NULL, '269-679-3473', NULL, 'shel.vantassel@gmail.com', 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0; MANM; MANM)', '173.162.54.53', true, 6, 3, NULL, '2014-01-31', '2014-02-02', 'I am looking for a condo that sleeps 4, king and queen bed or two kings would be great.  the dates are flexible but would like Friday to Sunday.  We will be skiing at Nubs Nob.', ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10134, '2014-01-10', 'Calvin', 'Murdock', '1300 Murdock Dr', 'Sparta', 'MI', '49345', NULL, NULL, NULL, 'ericksonnancy@att.net', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_5_8) AppleWebKit/534.50.2 (KHTML, like Gecko) Version/5.0.6 Safari/533.22.3', '99.155.149.155', true, 8, 2, NULL, '2014-03-01', '2014-03-08', NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10135, '2014-01-10', 'milt', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'miltkailis@me.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_1) AppleWebKit/537.73.11 (KHTML, like Gecko) Version/7.0.1 Safari/537.73.11', '209.183.159.144', true, NULL, NULL, 'starting to look at golf packages for june 2014. We usually go to boyne mountain or boyne highlands', '2014-06-16', '2014-06-19', NULL, NULL, NULL, ':3:', '8', NULL, NULL, '8', '8', 'twilight', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10136, '2014-01-11', 'john', 'faiola', '647 Highview St.', 'Dearborn', 'MI', '48128', NULL, '313-550-6517', NULL, 'johnfaiola52@gmail.com', 'Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko', '71.238.42.163', true, NULL, NULL, 'We are a foursome and this will be out 5th time golfing in this part of Michigan.', NULL, NULL, NULL, ':11:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10137, '2014-01-12', 'stephanie', 'rowe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'stephanie.rowe@hotmail.com', 'Mozilla/5.0 (Windows NT 6.0; rv:26.0) Gecko/20100101 Firefox/26.0', '75.134.213.229', false, 7, 6, NULL, '2014-02-07', '2014-02-09', 'We are interested in rates for a 5 bedroom or a 2 bedroom unit.  Thanks, Stephanie', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10138, '2014-01-13', 'Mary', 'Lindig', '2409 Cherie', 'Ottawa', 'IL', '61350', NULL, '8154330575', NULL, 'mlindig@gmail.com', 'Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko', '108.246.65.58', true, NULL, NULL, NULL, NULL, NULL, NULL, ':15:29:12:6:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10139, '2014-01-14', 'Kris', 'Sweiringa', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'krisswieringa@gmail.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:16.0) Gecko/20100101 Firefox/16.0', '64.85.138.149', true, NULL, NULL, NULL, '2014-05-16', '2014-05-18', NULL, NULL, NULL, ':3:', '4', NULL, '2', NULL, '4', 'morning', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10140, '2014-01-15', 'Lisa', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'vanrynl@gvsu.edu', 'Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; MALC; rv:11.0) like Gecko', '173.167.237.225', true, 4, NULL, 'do you allow small, non-shedding dogs in any of the condos?', NULL, NULL, NULL, ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10141, '2014-01-15', 'Keith', 'Rickerman', NULL, NULL, NULL, NULL, NULL, '678-549-2744', NULL, 'keithrickerman@bellsouth.net', 'Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko', '54.242.19.240', true, NULL, NULL, NULL, '2014-06-26', '2014-06-29', NULL, NULL, NULL, ':3:', '8', NULL, NULL, '8', '8', 'morning', '770-338-2744', 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10052, '2013-08-16', 'Tom', 'Marciniak', '4403 Darla Dr.', 'Bay City', 'MI', '48706', NULL, '989-280-3294', NULL, 'tnttrouble@msn.com', 'Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko', '166.137.101.160', true, 9, 4, NULL, NULL, NULL, 'We are looking for pricing and availability for condo #33  for the months of Feb. and March would come up on a Friday and leave on a Sunday. The trip would be for four adults and just a weekend event for us. looking for avail. dates and pricing so we can look at our calendar. Thanks, Tom', ':12:23:4:', NULL, ':2:1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10142, '2014-01-15', 'Michele', 'Fent', '625 N.Old Woodward', 'Birmingham', 'MI', '48009', NULL, '2483301344', NULL, 'Michele_bw@live.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)', '68.42.222.56', false, 4, 3, NULL, '2014-01-23', '2014-01-26', 'with the Detroit Country Day ski team,one family recommended your facility.looks very nice on line. We are interested in condo''s #114 in bld.16 and condo 121 in bld.17. our friends are in bld.4 unit 22,we believe if we follow grasshopper trail we will end up at their door.!thankyou for your assistance.', ':2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10143, '2014-01-15', 'James', 'Kocsan', NULL, NULL, NULL, NULL, NULL, '440-823-0966', NULL, 'Ckocsan@aol.com', 'Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko', '99.68.242.194', true, NULL, NULL, 'Looking for approx. cost on 3 bedroom condo for 3 nights, 4 to 6 rounds of golf\r
+\r
+Looking to play Little Traverse and Black Lake  plus Various Boyne Highlands and Hidden River\r
+\r
+Golf would be\r
\r
+Sun afternoon\r
+Mon Morning and afternoon \r
+Tues Morning and afternoon\r
+Wed Morning\r
+\r
+Then departure', '2014-06-08', '2014-06-11', NULL, NULL, NULL, ':3:', '4', NULL, NULL, NULL, '4', 'morning', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10144, '2014-01-17', 'Dale', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'daleangus@comcast.net', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_1) AppleWebKit/537.73.11 (KHTML, like Gecko) Version/7.0.1 Safari/537.73.11', '98.209.21.126', true, NULL, NULL, NULL, '2014-08-21', '2014-08-24', NULL, NULL, NULL, ':3:', '16', NULL, NULL, '16', '16', 'morning', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10119, '2013-12-13', 'Judith', 'Bashforth', '6662 Willowood Ave.', 'Maumee', 'OH', '43537', NULL, '4198666128', NULL, 'cjbash@sbcglobal.net', 'Mozilla/5.0 (iPad; CPU OS 7_0_4 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11B554a Safari/9537.53', '24.52.104.186', true, NULL, NULL, NULL, NULL, NULL, NULL, ':15:29:12:11:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10146, '2014-01-19', 'Beverly', 'Giuliani', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'kgiuliani2@att.net', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; WOW64; Trident/5.0; FunWebProducts; yie9)', '68.255.167.36', true, NULL, NULL, NULL, NULL, NULL, NULL, ':10:12:22:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10147, '2014-01-20', 'Karen', 'Jbara', NULL, NULL, NULL, NULL, NULL, '248 673-6468', NULL, 'gkjbara@comcast.net', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/536.30.1 (KHTML, like Gecko) Version/6.0.5 Safari/536.30.1', '69.244.153.151', true, 9, NULL, 'Hi Debbie.  We spoke about condo''s #130 & #108 this morning.  Just wondering if either condo has pet availability?  We have a dog named Kobe.... I have other options for him as well, but just checking.  I will talk with you tomorrow.\r
+\r
+Thanks,\r
+Karen', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (9473, '2011-01-13', 'sarah', 'richmond', '5150 merriman rd.', 'Jackson', 'MI', '49201', NULL, '517-581-1139', NULL, 'scrhouse@comcast.net', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; InfoPath.2)', '68.42.164.194', false, 8, 6, NULL, '2014-02-13', '2014-02-17', 'We are very interested in renting unit #2 for President''s weekend.  No pets.  No smokers.  Please call my phone # shown as soon as possible with availability and rates.  Thank you!', ':12:23:2:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10150, '2014-01-25', 'Kelly', 'Petitto', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'kellypetitto@comcast.net', 'Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko', '76.20.156.152', false, 4, NULL, NULL, '2014-02-13', '2014-02-17', 'I booked unit 112 for this weekend, but I neglected to print or copy my confirmation info assuming it would get emailed to me.  However, I haven''t noticed anything in my inbox- so I wanted to verify it was processed and request an email confirmation be sent.  Thanks so much!!', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (5933, '2007-08-14', 'ELIZABETH', 'EADS', '48310 Manorwood Drive, Northville, MI', 'NORTHVILLE', 'MI', '48168', NULL, '248-408-9899', NULL, 'eadsfamily@comcast.net', 'Mozilla/5.0 (Windows NT 6.2; WOW64; rv:26.0) Gecko/20100101 Firefox/26.0', '68.40.117.50', true, 9, 2, NULL, '2014-02-13', '2014-02-17', NULL, '', NULL, '1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10152, '2014-01-27', 'bob', NULL, NULL, NULL, NULL, NULL, NULL, '810-357-4621', NULL, 'yvonnebob20@hotmail.com', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.76 Safari/537.36', '68.61.1.76', true, NULL, NULL, 'I set up a trip for 36-48 golfers each year, is there accommodations for that many golfers at your facility on dates above. Every player would would want there own bed.', '2015-07-17', '2015-07-21', NULL, NULL, NULL, ':3:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10151, '2014-01-25', 'Stacy', 'Baker', '3108 Mack Island Rd', 'Grass Lake', 'MI', '49240', NULL, NULL, NULL, 'shbaker@wowway.com', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_1) AppleWebKit/537.73.11 (KHTML, like Gecko) Version/7.0.1 Safari/537.73.11', '23.28.116.62', true, 4, NULL, 'I made a reservations the other night for a 3 bedroom/2 bathroom loft in Building 16 for 2/14 through 2/17, but have not received an email confirmation and unfortunately I did not print a copy of the confirmation.  I would like to verify that I have a reservation and if you could send me the number that would be great.', NULL, NULL, NULL, NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (8523, '2009-07-03', 'Jerry', 'Klein', '811 Hickory Lane', 'Fowler', 'MI', '48835', NULL, NULL, NULL, 'jmklein@live.com', 'Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; EIE10;ENUSMSE; rv:11.0) like Gecko', '75.134.175.68', true, 9, 5, NULL, '2014-06-08', '2014-06-10', NULL, ':15:10:23:', NULL, '1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10153, '2014-01-31', 'Nancy', 'McDonald', '121 Gilkison Ave', 'Kalamazoo', 'MI', '49006', NULL, '2695528461', NULL, 'nmm50@yahoo.com', 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 1.1.4322; .NET4.0C; .NET4.0E; .NET CLR 3.5.30729; .NET CLR 3.0.30729)', '96.61.230.8', true, 9, NULL, NULL, NULL, NULL, 'Hi, I am lookign to schedule a summer vacation at Trout Creek again. Right now I have a group of 8 adults with 5 children.  We have stayed at your large condo before.  We are looking to book for 3 days (we could be flexible with the days) between late July and end of August.  Do you have any availability and can you tell me the price ? We loved our last stay.  Thank you! Nancy McDonald', ':3:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10154, '2014-02-04', 'Adelene', 'Bauer', NULL, NULL, NULL, NULL, NULL, '248-625-6255', NULL, 'adelenebauer@hotmail.com', 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; WOW64; Trident/6.0)', '69.244.155.117', true, NULL, NULL, 'Ladies golf outing. Would need to golf around 1pm on the Sunday 22nd.  Other two days would like 10am or around.  Need lodging that would accommodate the 8 of us.  Don''t want to have to drive very far to courses', '2014-06-22', '2014-06-24', NULL, NULL, NULL, ':3:', '8', NULL, NULL, '8', NULL, 'morning', '248-770-6403', 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10156, '2014-02-05', 'Cathleen', 'Burke', '153 Pueblo St', 'Tavernier', 'FL', '33070', NULL, '3053945670', NULL, 'kateburke@bellsouth.net', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:26.0) Gecko/20100101 Firefox/26.0', '75.74.171.150', false, 4, 3, NULL, '2014-06-01', '2014-07-30', 'Am interested in a two month rental. Must be a lower unit as my son is in a wheelchair, and must be pet friendly (indoor cat). Please advise availability and cost. Thank you so much.', NULL, NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10157, '2014-02-05', 'Yves', 'Poirier''s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Poiriey@outlook.com', 'Mozilla/5.0 (iPad; CPU OS 7_0_3 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11B511 Safari/9537.53', '198.13.246.219', true, NULL, NULL, 'Looking to golf all day Saturday and Sunday Only. Please let me know what you can do.\r
+\r
+Thanks\r
+\r
+Yves', '2014-05-16', '2014-05-19', NULL, NULL, NULL, ':3:', '8', NULL, NULL, '8', '8', 'morning', NULL, 'Array');
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10158, '2014-02-06', 'Jan', 'Gaswint', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'jquartersj@yahoo.com', 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36', '71.66.252.174', false, 8, NULL, 'Does unit #66 have a Jacuzzi in the master bath? Thank you.', NULL, NULL, 'Global Vacations', ':12:', NULL, ':1:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10159, '2014-02-12', 'George', 'jones', '7517 Madden dr.', 'fishers', 'IN', '46038', NULL, NULL, NULL, 'thedagman2@yahoo.com', 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)', '55.71.0.10', true, NULL, NULL, NULL, NULL, NULL, NULL, ':17:23:25:2:', NULL, ':2:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+INSERT INTO contact (id, create_date, fname, lname, address, city, state, zip, country, phone, fax, email, user_agent, remote_addr, mail_ok, referred_by, unit_size, questions, arrive_date, depart_date, other, interest, contestant, contact_type, number_of_golfers, number_of_non_golfers, number_of_couples, number_of_singles, number_of_golfers_2, tee_time, phone2, courses) VALUES (10160, '2014-02-12', 'Jeff', 'Nemeth', NULL, NULL, NULL, NULL, NULL, '248-219-8035', NULL, 'nemeth.jeff@gmail.com', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36', '67.149.61.114', true, NULL, NULL, 'Interested in one large or two small condos, would like all players to have their own bed. Would like to play 36 holes of golf on Saturday and 18 on Sunday.', '2014-05-16', '2014-05-18', NULL, NULL, NULL, ':3:', '8', NULL, NULL, '8', '8', 'morning', NULL, 'Array');
+
+
+--
+-- Name: contact_id_key; Type: INDEX; Schema: public; Owner: postgres; Tablespace: 
+--
+
+CREATE UNIQUE INDEX contact_id_key ON contact USING btree (id);
+
+
+--
+-- Name: contact; Type: ACL; Schema: public; Owner: postgres
+--
+
+REVOKE ALL ON TABLE contact FROM PUBLIC;
+REVOKE ALL ON TABLE contact FROM postgres;
+GRANT ALL ON TABLE contact TO postgres;
+GRANT ALL ON TABLE contact TO nobody;
+
+
+--
+-- PostgreSQL database dump complete
+--
+
diff --git a/Toolkit/Contacts/Database/data/contact_inq.sql b/Toolkit/Contacts/Database/data/contact_inq.sql
new file mode 100644 (file)
index 0000000..ae391d1
--- /dev/null
@@ -0,0 +1,122 @@
+--
+-- PostgreSQL database dump
+--
+
+SET statement_timeout = 0;
+SET client_encoding = 'UTF8';
+SET standard_conforming_strings = off;
+SET check_function_bodies = false;
+SET client_min_messages = warning;
+SET escape_string_warning = off;
+
+SET search_path = public, pg_catalog;
+
+SET default_tablespace = '';
+
+SET default_with_oids = true;
+
+--
+-- Name: contact_inq; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
+--
+
+CREATE TABLE contact_inq (
+    id integer NOT NULL,
+    header text,
+    pos integer,
+    description text,
+    image text
+);
+
+
+ALTER TABLE public.contact_inq OWNER TO postgres;
+
+--
+-- Name: contact_inq_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
+--
+
+CREATE SEQUENCE contact_inq_id_seq
+    INCREMENT BY 1
+    NO MINVALUE
+    NO MAXVALUE
+    CACHE 1;
+
+
+ALTER TABLE public.contact_inq_id_seq OWNER TO postgres;
+
+--
+-- Name: contact_inq_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
+--
+
+ALTER SEQUENCE contact_inq_id_seq OWNED BY contact_inq.id;
+
+
+--
+-- Name: id; Type: DEFAULT; Schema: public; Owner: postgres
+--
+
+ALTER TABLE ONLY contact_inq ALTER COLUMN id SET DEFAULT nextval('contact_inq_id_seq'::regclass);
+
+
+--
+-- Data for Name: contact_inq; Type: TABLE DATA; Schema: public; Owner: postgres
+--
+
+INSERT INTO contact_inq (id, header, pos, description, image) VALUES (15, 'Biking', 1, '', '');
+INSERT INTO contact_inq (id, header, pos, description, image) VALUES (10, 'Empty Nester/Senior Packages', 3, '', '');
+INSERT INTO contact_inq (id, header, pos, description, image) VALUES (17, 'Fall Color Tour', 4, '', '');
+INSERT INTO contact_inq (id, header, pos, description, image) VALUES (3, 'Family Reunion', 5, '', '');
+INSERT INTO contact_inq (id, header, pos, description, image) VALUES (12, 'Family Vacation', 6, '', '');
+INSERT INTO contact_inq (id, header, pos, description, image) VALUES (6, 'Fishing', 7, '', '');
+INSERT INTO contact_inq (id, header, pos, description, image) VALUES (11, 'Golf Packages', 8, '', '');
+INSERT INTO contact_inq (id, header, pos, description, image) VALUES (23, 'Pleasure Vacation', 9, '', '');
+INSERT INTO contact_inq (id, header, pos, description, image) VALUES (25, 'Snowmobiling', 10, '', '');
+INSERT INTO contact_inq (id, header, pos, description, image) VALUES (2, 'Winter - Ski/Boarding', 11, '', '');
+INSERT INTO contact_inq (id, header, pos, description, image) VALUES (4, 'Romantic Getaway', 12, '', '');
+INSERT INTO contact_inq (id, header, pos, description, image) VALUES (20, 'Scrapbooking', 13, '', '');
+INSERT INTO contact_inq (id, header, pos, description, image) VALUES (14, 'Soccer Weekend', 14, '', '');
+INSERT INTO contact_inq (id, header, pos, description, image) VALUES (18, 'Spring/Fall Vacation', 15, '', '');
+INSERT INTO contact_inq (id, header, pos, description, image) VALUES (22, 'Summer Vacation', 16, '', '');
+INSERT INTO contact_inq (id, header, pos, description, image) VALUES (16, 'Tennis', 17, '', '');
+INSERT INTO contact_inq (id, header, pos, description, image) VALUES (24, 'Trout Creek Owner', 18, '', '');
+INSERT INTO contact_inq (id, header, pos, description, image) VALUES (29, 'Boating', 2, '', '');
+
+
+--
+-- Name: contact_inq_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
+--
+
+SELECT pg_catalog.setval('contact_inq_id_seq', 29, true);
+
+
+--
+-- Name: contact_inq_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
+--
+
+ALTER TABLE ONLY contact_inq
+    ADD CONSTRAINT contact_inq_pkey PRIMARY KEY (id);
+
+
+--
+-- Name: contact_inq; Type: ACL; Schema: public; Owner: postgres
+--
+
+REVOKE ALL ON TABLE contact_inq FROM PUBLIC;
+REVOKE ALL ON TABLE contact_inq FROM postgres;
+GRANT ALL ON TABLE contact_inq TO postgres;
+GRANT ALL ON TABLE contact_inq TO nobody;
+
+
+--
+-- Name: contact_inq_id_seq; Type: ACL; Schema: public; Owner: postgres
+--
+
+REVOKE ALL ON SEQUENCE contact_inq_id_seq FROM PUBLIC;
+REVOKE ALL ON SEQUENCE contact_inq_id_seq FROM postgres;
+GRANT ALL ON SEQUENCE contact_inq_id_seq TO postgres;
+GRANT ALL ON SEQUENCE contact_inq_id_seq TO nobody;
+
+
+--
+-- PostgreSQL database dump complete
+--
+
diff --git a/Toolkit/Contacts/Database/data/news_response.sql b/Toolkit/Contacts/Database/data/news_response.sql
new file mode 100644 (file)
index 0000000..af0d477
--- /dev/null
@@ -0,0 +1,68 @@
+--
+-- PostgreSQL database dump
+--
+
+SET statement_timeout = 0;
+SET client_encoding = 'UTF8';
+SET standard_conforming_strings = off;
+SET check_function_bodies = false;
+SET client_min_messages = warning;
+SET escape_string_warning = off;
+
+SET search_path = public, pg_catalog;
+
+SET default_tablespace = '';
+
+SET default_with_oids = true;
+
+--
+-- Name: news_response; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
+--
+
+CREATE TABLE news_response (
+    id integer DEFAULT nextval(('"news_response_id_seq"'::text)::regclass) NOT NULL,
+    subject text,
+    response text,
+    mailout date,
+    coupon text,
+    image1 text,
+    image2 text,
+    image3 text,
+    coupon_link text,
+    image text,
+    image_link text,
+    image2_link text,
+    image3_link text
+);
+
+
+ALTER TABLE public.news_response OWNER TO postgres;
+
+--
+-- Data for Name: news_response; Type: TABLE DATA; Schema: public; Owner: postgres
+--
+
+INSERT INTO news_response (id, subject, response, mailout, coupon, image1, image2, image3, coupon_link, image, image_link, image2_link, image3_link) VALUES (1, 'Last minute deal!!', '<p style="MARGIN: 0in 0in 0pt" class="MsoNormal" /><p><em></em></p><p>It is incredibly beautiful outside with perfectly blue skies! We want you to come visit with us this weekend to take advantage of a special offer. </p><p>Call us before the end of the day tomorrow (Thursday) and we will give you:</p><ul><li>A FREE Thursday or Sunday night </li><li>20% discount off of the room charge</li><li>Late Checkout...you can tell us what time you would like to leave</li></ul><p>Don''t forget these great reasons to visit us this winter:</p><ul><li>We have discounted lift tickets at Nubs Nob &amp; Boyne</li><li>FREE Shuttle to Nubs Nob on Saturday &amp; Sunday</li><li>Outdoor Pool and Hot Tub</li><li>Fitness Center with indoor pool, hot tub, sauna</li><li>Every condo has a full kitchen- save money and bring food!</li><li>Every condo has a fireplace...either wood burning or gas</li><li>The Customer Service cannot be beat!</li><li>We may not be Ski-In/Ski-Out...but we are right here! The price you pay to stay with us is half the price as other lodging options in our neighborhood.</li></ul><p>It is so great out today! We can''t wait to hear from you!!</p><p>Debby, Dan, Chris and Nikki<br />1-800-748-0245</p>', NULL, '', NULL, '', '', '', '', '', '', '');
+
+
+--
+-- Name: news_response_id_key; Type: INDEX; Schema: public; Owner: postgres; Tablespace: 
+--
+
+CREATE UNIQUE INDEX news_response_id_key ON news_response USING btree (id);
+
+
+--
+-- Name: news_response; Type: ACL; Schema: public; Owner: postgres
+--
+
+REVOKE ALL ON TABLE news_response FROM PUBLIC;
+REVOKE ALL ON TABLE news_response FROM postgres;
+GRANT ALL ON TABLE news_response TO postgres;
+GRANT ALL ON TABLE news_response TO nobody;
+
+
+--
+-- PostgreSQL database dump complete
+--
+
diff --git a/Toolkit/Contacts/Database/data/query_db.sql b/Toolkit/Contacts/Database/data/query_db.sql
new file mode 100644 (file)
index 0000000..e96300c
--- /dev/null
@@ -0,0 +1,67 @@
+--
+-- PostgreSQL database dump
+--
+
+SET statement_timeout = 0;
+SET client_encoding = 'UTF8';
+SET standard_conforming_strings = off;
+SET check_function_bodies = false;
+SET client_min_messages = warning;
+SET escape_string_warning = off;
+
+SET search_path = public, pg_catalog;
+
+SET default_tablespace = '';
+
+SET default_with_oids = true;
+
+--
+-- Name: query_db; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
+--
+
+CREATE TABLE query_db (
+    id integer DEFAULT nextval(('"query_db_id_seq"'::text)::regclass) NOT NULL,
+    query_name character varying(8000),
+    query character varying(8000),
+    file character varying(100),
+    delimiter character varying(100)
+);
+
+
+ALTER TABLE public.query_db OWNER TO postgres;
+
+--
+-- Data for Name: query_db; Type: TABLE DATA; Schema: public; Owner: postgres
+--
+
+INSERT INTO query_db (id, query_name, query, file, delimiter) VALUES (1, 'Richard Keyes', 'SELECT id
+FROM   contact 
+WHERE  id IS NOT NULL
+AND    lname ~* ''gilpin''', '', '');
+INSERT INTO query_db (id, query_name, query, file, delimiter) VALUES (2, '(current)', 'SELECT  id,*
+                         FROM          contact
+                         WHERE         id IS NOT NULL
+                         ORDER BY      lname,fname', '', '');
+
+
+--
+-- Name: query_db_id_key; Type: INDEX; Schema: public; Owner: postgres; Tablespace: 
+--
+
+CREATE UNIQUE INDEX query_db_id_key ON query_db USING btree (id);
+
+
+--
+-- Name: query_db; Type: ACL; Schema: public; Owner: postgres
+--
+
+REVOKE ALL ON TABLE query_db FROM PUBLIC;
+REVOKE ALL ON TABLE query_db FROM postgres;
+GRANT ALL ON TABLE query_db TO postgres;
+GRANT ALL ON TABLE query_db TO nobody;
+
+
+--
+-- PostgreSQL database dump complete
+--
+
diff --git a/Toolkit/Contacts/Database/dbDump.sh b/Toolkit/Contacts/Database/dbDump.sh
new file mode 100755 (executable)
index 0000000..f265bfd
--- /dev/null
@@ -0,0 +1,15 @@
+#! /bin/bash
+
+pgDump='/usr/bin/pg_dump -U postgres --column-inserts'
+dbHost='ds3'
+dbName='troutcreek'
+
+tables[0]=contact
+tables[1]=contact_inq
+tables[2]=query_db
+tables[3]=news_response
+
+for i in ${tables[@]}; do
+    $pgDump -h $dbHost $dbName -t ${i} -f ./data/${i}.sql
+    echo ${i}
+done
diff --git a/Toolkit/Contacts/Database/loadData.sql b/Toolkit/Contacts/Database/loadData.sql
new file mode 100644 (file)
index 0000000..643f24b
--- /dev/null
@@ -0,0 +1,6 @@
+--
+-- Data
+--
+\i ./data/contact.sql
+\i ./data/contact_inq.sql
+
diff --git a/Toolkit/Contacts/ENews.php b/Toolkit/Contacts/ENews.php
new file mode 100755 (executable)
index 0000000..6e0a7ae
--- /dev/null
@@ -0,0 +1,277 @@
+<?php
+//  vim:set expandtab tabstop=4 shiftwidth=4 softtabstop=4 foldmethod=marker syntax=php:
+
+/**
+ * File Doc Comment
+ *
+ * PHP version 5
+ *
+ * @category Toolkit
+ * @package  Contacts
+ * @author   Jamie Kahgee <jamie.kahgee@gmail.com>
+ * @license  http://www.gaslightmedia.com Gaslightmedia
+ * @version  CVS: $Id: ENews.php,v 1.1 2010/01/17 15:29:11 jamie Exp $
+ * @link     http://demo.gaslightmedia.com
+ */
+
+/**
+ * GLM Contact Us form
+ *
+ * This form handles rendering and processing the contact us form.
+ * Controls the email functionality of the form, whether the client
+ * has a contact DB to store contact records and how to insert/update
+ * submitted form values.
+ *
+ * @category  Toolkit
+ * @package   Contacts
+ * @author    Jamie Kahgee <jamie.kahgee@gmail.com>
+ * @copyright 2009 Jamie Kahgee
+ * @license   http://www.gaslightmedia.com Gaslightmedia
+ * @link      http://demo.gaslightmedia.com
+ * @see       Toolkit_FormBuilder
+ */
+class Toolkit_Contacts_ENews
+    extends Toolkit_Contacts_ContactUs
+{
+
+    /**
+     * Contact type to be inserted into the DB as when the form is submitted
+     *
+     * This property is only valid when the [hasContactDB] property is set
+     * to true.
+     *
+     * N.B.
+     * If you subclass this class out to other forms that are
+     * inserted into the contact db, be sure to make each one of their
+     * contactType properties unique.  We don't check for duplicates.
+     *
+     * @var string
+     * @access protected
+     */
+    protected $contactType = '2';
+
+    /**
+     * Email subject and <h1> header in email
+     *
+     * It gets set in the constructor if you leave empty here, but you
+     * can set it to something different here to override that if you desire.
+     *
+     * @var    string
+     * @access protected
+     */
+    public $subject = 'ENews Signup for Trout Creek';
+
+    /**
+     * Message to display if the form is successfully submitted
+     *
+     * @var    string
+     * @access protected
+     */
+    protected $successMsg = '
+        <style type="text/css">
+        #category {display:none;}
+        .listings {display:none;}
+        </style>
+        <div id="form-success-top">
+            Thank you for signing up for our ENews!
+        </div>';
+
+    /**
+     * Class constructor
+     *
+     * @param object $pdo         PHP Data Object
+     * @param string $formName    Form's name.
+     * @param string $method      (optional)Form's method defaults to 'POST'
+     * @param string $action      (optional)Form's action
+     * @param string $target      (optional)Form's target defaults to '_self'
+     * @param mixed  $attributes  (optional)Extra attributes for <form> tag
+     * @param bool   $trackSubmit (optional)Whether to track if the form was
+     *                              submitted by adding a special hidden field
+     *
+     * @author Jamie Kahgee <jamie.kahgee@gmail.com>
+     * @access public
+     * @link   http://pear.php.net/package/HTML_QuickForm/docs/latest/HTML_QuickForm/HTML_QuickForm.html
+     * @see    HTML_QuickForm
+     */
+    public function __construct(
+        PDO $pdo,
+        $formName,
+        $method = 'post',
+        $action = '',
+        $target = '',
+        $attributes = null,
+        $trackSubmit = false
+    ) {
+        parent::__construct(
+            $pdo,
+            $formName,
+            $method,
+            $action,
+            $target,
+            $attributes,
+            $trackSubmit
+        );
+        $this->email = ENEWS_EMAIL;
+    }
+
+    /**
+     * Constant variables for the form
+     *
+     * These values won't get overridden by POST or GET vars
+     *
+     * @return void
+     * @access public
+     */
+    public function configureConstants()
+    {
+        $constants = array(
+            'user_agent' => $_SERVER['HTTP_USER_AGENT'],
+            'remote_addr' => $_SERVER['REMOTE_ADDR'],
+            'mail_ok' => 1
+        );
+        $this->setupConstants($constants);
+    }
+
+    //    }}}
+    //  {{{ configureElements()
+
+    /**
+     * Form element definitions
+     *
+     * @return void
+     * @access public
+     */
+    public function configureElements()
+    {
+        $e = array();
+        if ($this->hasContactDB) {
+            $this->setInterestFields();
+            //    Grouped Elements are defined here.
+            $this->interestsGroups =& $this->getInterestFields();
+        }
+
+        //  All Elements are created here.  This includes group element definitions.
+        $e[] = array(
+            'type' => 'hidden',
+            'req'  => false,
+            'name' => 'user_agent'
+        );
+        $e[] = array(
+            'type' => 'hidden',
+            'req'  => false,
+            'name' => 'remote_addr'
+        );
+        $e[] = array(
+            'type'    => 'header',
+            'name'    => 'firstHdr_rmv',
+            'display' => ''
+        );
+        $e[] = array(
+            'type'    => 'text',
+            'req'     => false,
+            'name'    => 'fname',
+            'display' => 'First Name:'
+        );
+        $e[] = array(
+            'type'    => 'text',
+            'req'     => false,
+            'name'    => 'lname',
+            'display' => 'Last Name:'
+        );
+        $e[] = array(
+            'type'    => 'email',
+            'req'     => true,
+            'name'    => 'email',
+            'display' => 'Email'
+        );
+        $e[] = array(
+            'type'    => 'email',
+            'req'     => true,
+            'name'    => 'email_rmv',
+            'display' => 'Verify Email'
+        );
+        $e[] = array(
+            'type'    => 'text',
+            'req'     => false,
+            'name'    => 'address',
+            'display' => 'Address:'
+        );
+        $e[] = array(
+            'type'    => 'text',
+            'req'     => false,
+            'name'    => 'city',
+            'display' => 'City:'
+        );
+        $e[] = array(
+            'type'    => 'select',
+            'req'     => false,
+            'name'    => 'state',
+            'display' => 'State/Province:',
+            'opts'    => $GLOBALS['states']
+        );
+        $e[] = array(
+            'type'    => 'text',
+            'req'     => false,
+            'name'    => 'zip',
+            'display' => 'ZIP/Postal Code:'
+        );
+        $e[] = array(
+            'type'    => 'text',
+            'req'     => false,
+            'name'    => 'phone',
+            'display' => 'Phone:'
+        );
+
+        if (is_array($this->interestsGroups)) {
+            foreach ($this->interestsGroups as $group => $gData) {
+                $this->myGroups[] = $gData;
+                $e[] = array(
+                    'type'       => 'group',
+                    'req'        => false,
+                    'name'       => 'interest['.$group.']',
+                    'group'      => $gData,
+                    'label'      => $group,
+                    'seperator'  => ' ',
+                    'appendName' => true
+                );
+            }
+        }
+
+        $e[] = array(
+            'type'    => 'textarea',
+            'req'     => false,
+            'name'    => 'questions',
+            'display' => 'Additional Questions:'
+        );
+        if ($this->hasContactDB) {
+            $e[] = array(
+                'type'    => 'hidden',
+                'req'     => false,
+                'name'    => 'mail_ok',
+            );
+        }
+        $e[] = array(
+            'type'    => 'CAPTCHA_Image',
+            'req'     => false,
+            'name'    => 'captcha_question',
+            'display' => 'Verification code',
+            'opts'    => $this->captchaOptions
+        );
+        $e[] = array(
+            'type'    => 'text',
+            'req'     => true,
+            'name'    => 'captcha_rmv',
+            'display' => 'Enter verification code'
+        );
+        $e[] = array(
+            'type'    => 'submit',
+            'req'     => false,
+            'name'    => 'submit_rmv',
+            'display' => 'Submit Form'
+        );
+
+        $this->setupElements($e);
+    }
+
+    //  }}}
+}
diff --git a/Toolkit/Contacts/GolfPackageForm.php b/Toolkit/Contacts/GolfPackageForm.php
new file mode 100755 (executable)
index 0000000..af2b732
--- /dev/null
@@ -0,0 +1,353 @@
+<?php
+
+/**
+ * File Doc Comment
+ *
+ * PHP version 5
+ *
+ * @category Contacts
+ * @package  Toolkit_Contacts
+ * @author   Jamie Kahgee <jamie.kahgee@gmail.com>
+ * @license     http://www.gaslightmedia.com Gaslightmedia
+ * @version  CVS: $Id: ENews.php,v 1.1 2010/01/17 15:29:11 jamie Exp $
+ * @link        http://demo.gaslightmedia.com
+ */
+
+/**
+ * GLM Contact Us form
+ *
+ * This form handles rendering and processing the contact us form.
+ * Controls the email functionality of the form, whether the client
+ * has a contact DB to store contact records and how to insert/update
+ * submitted form values.
+ *
+ * @category  Contacts
+ * @package   Toolkit_Contacts
+ * @author    Jamie Kahgee <jamie.kahgee@gmail.com>
+ * @copyright 2009 Jamie Kahgee
+ * @license   http://www.gaslightmedia.com Gaslightmedia
+ * @link      http://demo.gaslightmedia.com
+ * @see       Toolkit_FormBuilder
+ */
+class Toolkit_Contacts_GolfPackageForm
+    extends Toolkit_Contacts_ContactUs
+{
+       //      {{{     properties
+
+       /**
+        * Contact type to be inserted into the DB as when the form is submitted
+        *
+        * This property is only valid when the [hasContactDB] property is set
+        * to true.
+        *
+        * N.B.
+        * If you subclass this class out to other forms that are
+        * inserted into the contact db, be sure to make each one of their
+        * contactType properties unique.  We don't check for duplicates.
+        *
+        * @var string
+        * @access protected
+        */
+       protected $contactType = '3';
+
+    /**
+        * Email subject and <h1> header in email
+        *
+        * It gets set in the constructor if you leave empty here, but you
+        * can set it to something different here to override that if you desire.
+        *
+     * @var    string
+     * @access protected
+     */
+       public $subject = 'Golf Package Request for Trout Creek';
+
+    /**
+     * Message to display if the form is successfully submitted
+        *
+     * @var    string
+     * @access protected
+     */
+       protected $successMsg = '
+        <style type="text/css">
+        #category {display:none;}
+        .listings {display:none;}
+        </style>
+               <div id="form-success-top">
+            Thank you for your Request for Golf Package!
+               </div>';
+
+       //      }}}
+
+    protected function setupRenderers()
+       {
+               parent::setupRenderers();
+               $renderer =& $this->defaultRenderer();
+               $required = '<!-- BEGIN required --><span class="req"> * </span><!-- END required -->';
+               $error    = '<!-- BEGIN error --><div class="req"> {error} </div><!-- END error -->';
+               $renderer->setElementTemplate('<tr><td colspan="2" class="fieldcell checkbox">'.$required.'{label}'.$error.'{element}</td></tr>', 'interest');
+        if (is_array($this->interestsGroups)) {
+            foreach ($this->interestsGroups as $group => $gData) {
+                $renderer->setGroupTemplate('<br>{content}', 'courses');
+                $renderer->setGroupElementTemplate('{element}', 'courses');
+                       $renderer->setElementTemplate('<tr><td colspan="2" class="interest">'.$required.'{label}'.$error.'{element}</td></tr>', 'courses');
+            }
+        }
+               $renderer->setElementTemplate('<tr><td colspan="2">'.$required.'{label}'.$error.'{element}</td></tr>', 'comments');
+        $renderer->setElementTemplate('<tr><td colspan="2">'.$required.'{label}'.$error.'{element}</td></tr>', 'questions');
+               $renderer->setElementTemplate('<tr align="center"><td colspan="2">'.$required.'{label}'.$error.'{element}</td></tr>', 'submit_rmv');
+
+               $renderer->setElementTemplate('<tr><td class="labelcell"><label>{label}</label></td><td class="fieldcell captcha">{element}</td></tr>', 'captcha_question');
+               $renderer->setElementTemplate('<tr><td class="labelcell">'.$required.'<label>{label}</label></td><td class="fieldcell">'.$error.'{element}<span class="tooltip" title="Verification Code|To help us distinguish between information submitted by individuals and those automatically entered by software robots, please type the letters shown.">What is this?</span></td></tr>', 'captcha_rmv');
+       }
+
+       //      {{{     configureElements()
+
+    /**
+     * Form element definitions
+     *
+     * @return void
+     * @access public
+     */
+       public function configureElements()
+       {
+        $golfCourses = array();
+        $courseConfig = new Zend_Config_Ini(
+            BASE . 'Toolkit/Maps/config.ini',
+            'golfCourses'
+        );
+        $coursesSettings = $courseConfig->toArray();
+        $courses = $coursesSettings['course'];
+        if (is_array($courses)) {
+            foreach ($courses as $course) {
+                if (!$course['main']) {
+                    $golfCourses[] = $course['name'];
+                }
+            }
+        }
+
+               $e = array();
+               $this->setInterestFields();
+               //      Grouped Elements are defined here.
+               $this->interestsGroups =& $this->getInterestFields();
+        // referred by
+        $this->setReferredBy();
+        // unit sizes
+        $this->setUnitSize();
+
+        $numberOf = array();
+        for ($index = 0; $index <= 16; ++$index) {
+            $numberOf[$index] = $index;
+        }
+
+               //      All Elements are created here.  This includes group element definitions.
+               $e[] = array(
+                       'type' => 'hidden',
+                       'req'  => false,
+                       'name' => 'user_agent'
+               );
+               $e[] = array(
+                       'type' => 'hidden',
+                       'req'  => false,
+                       'name' => 'remote_addr'
+               );
+
+        $e[] = array(
+            'type'    => 'header',
+            'req'     => false,
+            'name'    => 'requestHdr_rmv',
+            'display' => 'Golf Package Request Form'
+        );
+
+        $e[] = array(
+                       'type'    => 'date',
+                       'req'     => false,
+                       'name'    => 'arrive_date',
+            'display' => 'Arrival:',
+            'opts'    => array(
+                    'language'       => 'en',
+                    'format'         => 'mdY',
+                    'minYear'        => date('Y'),
+                    'maxYear'        => date('Y') + 3,
+                    'addEmptyOption' => true
+                )
+               );
+               $e[] = array(
+                       'type'    => 'date',
+                       'req'     => false,
+                       'name'    => 'depart_date',
+                       'display' => 'Departure:',
+            'opts'    => array(
+                    'language'       => 'en',
+                    'format'         => 'mdY',
+                    'minYear'        => date('Y'),
+                    'maxYear'        => date('Y') + 3,
+                    'addEmptyOption' => true
+                )
+               );
+
+        $e[] = array(
+                       'type'    => 'select',
+                       'req'     => false,
+                       'name'    => 'number_of_golfers',
+                       'display' => 'Number of golfers:',
+                       'opts'    => $numberOf
+               );
+
+        $e[] = array(
+                       'type'    => 'select',
+                       'req'     => false,
+                       'name'    => 'number_of_non_golfers',
+                       'display' => 'Number of non-golfers:',
+                       'opts'    => $numberOf
+               );
+
+        $e[] = array(
+                       'type'    => 'text',
+                       'req'     => false,
+                       'name'    => 'number_of_couples',
+                       'display' => 'Number of Couples:'
+               );
+        $e[] = array(
+                       'type'    => 'text',
+                       'req'     => false,
+                       'name'    => 'number_of_singles',
+                       'display' => 'Number of Singles:'
+               );
+
+        $e[] = array(
+            'type'    => 'header',
+            'req'     => false,
+            'name'    => 'preferencesHdr_rmv',
+            'display' => 'Golfing Preference'
+        );
+
+        $e[] = array(
+                       'type'    => 'select',
+                       'req'     => false,
+                       'name'    => 'number_of_golfers_2',
+                       'display' => 'No. Golfers:',
+                       'opts'    => $numberOf
+               );
+
+        $e[] = array(
+                       'type'    => 'select',
+                       'req'     => false,
+                       'name'    => 'tee_time',
+                       'display' => 'Tee Time:',
+                       'opts'    => array(
+                ''         => '- Select -',
+                'morning'  => 'Morning',
+                'twilight' => 'Twilight'
+            )
+               );
+
+        // select list for courses (checkboxes)
+        $course = array();
+        if (is_array($golfCourses)) {
+            foreach ($golfCourses as $courseName) {
+                $course[] = array(
+                    'type'    => 'checkbox',
+                    'name'    => $courseName,
+                    'req'     => false,
+                    'display' => $courseName,
+                    'opts'    => $courseName
+                );
+            }
+
+            $e[] = array(
+                'type'       => 'group',
+                'req'        => false,
+                'name'       => 'courses',
+                'group'             => $course,
+                'label'      => 'Golf Course',
+                'seperator'  => ' ',
+                'appendName' => true
+            );
+        }
+
+        $e[] = array(
+            'type'    => 'header',
+            'req'     => false,
+            'name'    => 'infoHdr_rmv',
+            'display' => 'Info'
+        );
+
+               $e[] = array(
+                       'type'    => 'text',
+                       'req'     => true,
+                       'name'    => 'fname',
+                       'display' => 'First Name:'
+               );
+
+               $e[] = array(
+                       'type'    => 'text',
+                       'req'     => false,
+                       'name'    => 'lname',
+                       'display' => 'Last Name:'
+               );
+        $e[] = array(
+                       'type'    => 'text',
+                       'req'     => false,
+                       'name'    => 'phone',
+                       'display' => 'Primary Phone:'
+               );
+        $e[] = array(
+                       'type'    => 'text',
+                       'req'     => false,
+                       'name'    => 'phone2',
+                       'display' => 'Secondary Phone:'
+               );
+        $e[] = array(
+                       'type'    => 'textarea',
+                       'req'     => false,
+                       'name'    => 'questions',
+                       'display' => 'Special Request/Comments:'
+               );
+               $e[] = array(
+                       'type'    => 'text',
+                       'req'     => true,
+                       'name'    => 'email',
+                       'display' => 'Email:'
+               );
+               $e[] = array(
+                       'type'    => 'text',
+                       'req'     => true,
+                       'name'    => 'email_rmv',
+                       'display' => 'Verify Email:'
+               );
+
+
+               $e[] = array(
+                       'type'    => 'advcheckbox',
+                       'req'     => false,
+                       'name'    => 'mail_ok',
+                       'display' => 'Please notify me of specials and offers.',
+                       'opts'    => 'Yes',
+                       'val'     => array(0, 1)
+               );
+               $e[] = array(
+                       'type'    => 'CAPTCHA_Image',
+                       'req'     => false,
+                       'name'    => 'captcha_question',
+                       'display' => 'Verification code:',
+                       'opts'    => $this->captchaOptions
+               );
+               $e[] = array(
+                       'type'    => 'text',
+                       'req'     => true,
+                       'name'    => 'captcha_rmv',
+                       'display' => 'Enter verification code:'
+               );
+               $e[] = array(
+                       'type'    => 'submit',
+                       'req'     => false,
+                       'name'    => 'submit_rmv',
+                       'display' => 'Submit Form'
+               );
+
+               $this->setupElements($e);
+       }
+
+
+       //      }}}
+}
diff --git a/Toolkit/Contacts/PdfForm.php b/Toolkit/Contacts/PdfForm.php
new file mode 100755 (executable)
index 0000000..0d6ff50
--- /dev/null
@@ -0,0 +1,895 @@
+<?php
+
+/**
+ * File Doc Comment
+ *
+ * PHP version 5
+ *
+ * @category Contacts
+ * @package  Toolkit_Contacts
+ * @author   Jamie Kahgee <jamie.kahgee@gmail.com>
+ * @license     http://www.gaslightmedia.com Gaslightmedia
+ * @version  CVS: $Id: PdfForm.php,v 1.9 2010/01/28 16:33:27 jamie Exp $
+ * @link        http://demo.gaslightmedia.com
+ */
+
+/**
+ * Error codes for Toolkit_Contacts_PdfForm
+ *
+ * Codes are mapped to textual messaged by errorMessage() method,
+ * if you add a new code be sure to add a new message for it to errorMessage()
+ *
+ * @see Toolkit_Contacts_ContactUs::errorMessage()
+ */
+define('FORM_OK', 1);
+define('FORM_ERROR', -1);
+define('NO_RECORD', -2);
+define('INVALID_DB', -3);
+define('MISSING_CONSTANT', -4);
+
+/**
+ * GLM Contact Us form
+ *
+ * This form handles rendering and processing the contact us form.
+ * Controls the email functionality of the form, whether the client
+ * has a contact DB to store contact records and how to insert/update
+ * submitted form values.
+ *
+ * @category  Contacts
+ * @package   Toolkit_Contacts
+ * @author    Jamie Kahgee <jamie.kahgee@gmail.com>
+ * @copyright 2009 Jamie Kahgee
+ * @license   http://www.gaslightmedia.com Gaslightmedia
+ * @link      http://demo.gaslightmedia.com
+ */
+class Toolkit_Contacts_PdfForm extends Toolkit_FormBuilder
+{
+       //      {{{     properties
+
+    /**
+     * Table in Database which holds the contact data
+        *
+     * @var    string
+     * @access public
+     */
+       public $tableName = 'contact';
+
+    /**
+     * Table meta data
+        *
+        * This is used when inserting/updating data for the records
+        * so the PDO's can use explicit data types for the parameters.
+        *
+     * @var    array
+     * @access public
+     */
+       public $tableMetaData;
+
+    /**
+     * Used in the email template for the client info string at the bottom
+        *
+     * @var    string
+     * @access protected
+     */
+       protected $clientInfo = array(
+               'name'    => 'Gaslight Media',
+               'address' => '120 E. Lake St.',
+               'city'    => 'Petoskey',
+               'state'   => 'MI',
+               'zip'     => '49770',
+               'phone'   => '231.487.0697',
+       );
+
+    /**
+        * Who to send the email to when the contact form is submitted
+        *
+        * If you leave this blank, its value will get set to the OWNER_EMAIL
+        * in the constructor.
+        *
+        * If you ***DO NOT*** want any emails to go out when the form is submitted
+        * then set the value to false. Do not set it to 0 for false, because the
+        * check uses a strict type check to determine if the value is actually
+        * false. This is what allows for the empty value as an option, which sets
+        * the value to OWNER_EMAIL and won't override the $email property if
+        * this class gets subclassed and the value for this property gets set in
+        * the properties of the subclass and not in the constructor after this
+        * constructor function is called.
+        *
+        * tongue twister...I know.
+        * <code>
+        * protected $email = false;
+        * </code>
+        *
+     * @var    unknown
+     * @access protected
+     */
+       protected $email;
+
+    /**
+     * From header in the owner email
+        *
+        * This just sets the From header in the owner email
+        * SITENAME <from@email.com>
+        *
+        * It gets set to the constant SITENAME in the constructor if you leave
+        * empty here, but you can set it to something different here to override
+        * that if you desire.
+        *
+     * @var    unknown
+     * @access protected
+     */
+       protected $siteName;
+
+    /**
+        * Email subject and <h1> header in email
+        *
+        * It gets set in the constructor if you leave empty here, but you
+        * can set it to something different here to override that if you desire.
+        *
+     * @var    string
+     * @access protected
+     */
+       protected $subject;
+
+    /**
+        * pdfFileName
+        *
+        * Just the filename not the path.  File needs to be in BASE.'assets/' dir
+        *
+     * @var    string
+     * @access protected
+     */
+    protected $pdfFileName = 'brochure.pdf';
+
+    /**
+     * Whether the site has a contact DB to store contact records
+        *
+        * If this value is set to false, an email will still be sent to the
+        * addressed specified in the email property.
+        *
+     * @var    boolean
+     * @access protected
+     */
+       protected $hasContactDB = true;
+
+    /**
+     * The interests from the contact db
+        *
+     * @var    array
+     * @access protected
+     */
+       protected $inquiries = array();
+
+    /**
+     * Message to display if the form is successfully submitted
+        *
+     * @var    string
+     * @access protected
+     */
+       protected $successMsg = '
+               <div id="form-success-top">
+        Thank you for your Request.  An email has been sent with
+        directions for the pdf download.
+               </div>';
+
+    /**
+     * Extra rules for processesing
+        *
+        * This registers the Zip validation rules (and any others listed) for
+        * QuickForm.
+        *
+        * Zip validation checks both US and Canadian Zip codes
+        *
+     * @var    array
+     * @access protected
+        * @see    app.gaslightmedia.com/glmPEAR/HTML/QuickForm/Rules/Zip.php
+     */
+       protected $registeredRules = array();
+
+    /**
+     * Options for flexy templating engine
+        *
+        * Pulls the preset options from the setup.phtml file
+        * overwrites the templateDir and compileDir to match this classes needs
+        *
+     * @var    array
+     * @access protected
+     */
+       protected $flexyOptions;
+
+       //      }}}
+       //      {{{     __construct()
+
+       /**
+        * Class constructor
+        *
+     * @param string $formName    Form's name.
+     * @param string $method      (optional)Form's method defaults to 'POST'
+     * @param string $action      (optional)Form's action
+     * @param string $target      (optional)Form's target defaults to '_self'
+     * @param mixed  $attributes  (optional)Extra attributes for <form> tag
+     * @param bool   $trackSubmit (optional)Whether to track if the form was
+        *                                                        submitted by adding a special hidden field
+        *
+        * @access public
+        */
+       public function __construct(
+        $formName,
+        $method = 'post',
+        $action = '',
+        $target = '',
+        $attributes = null,
+        $trackSubmit = false
+    ) {
+               //      Make sure these end cases are never met.
+               //      These are more for the development phase.
+               if ($this->email === false && $this->hasContactDB === false) {
+                       PEAR::raiseError(
+                null,
+                NO_RECORD,
+                PEAR_ERROR_CALLBACK,
+                array(&$this, 'error')
+            );
+               }
+               if (!is_bool($this->hasContactDB)) {
+                       PEAR::raiseError(
+                null,
+                INVALID_DB,
+                PEAR_ERROR_CALLBACK,
+                array(&$this, 'error')
+            );
+               }
+               //      we haven't defined the FROM_NEWS_EMAIL constant and
+               //      the email will default to relying on it.
+               if (   !defined('FROM_NEWS_EMAIL')
+            && (empty($this->email) && $this->email !== false)
+        ) {
+                       PEAR::raiseError(
+                'You need to define the FROM_NEWS_EMAIL
+                                constant for this form to work correctly',
+                MISSING_CONSTANT,
+                PEAR_ERROR_CALLBACK,
+                array(&$this, 'error')
+            );
+        }
+
+           $this->successMsg = '
+               <div id="form-success-top">
+        Thank you for requesting the '.SITENAME.' Brochure. You have been sent
+        an email with a link to download our Brochure, which has been saved as
+        a PDF. You will need Adobe Acrobat Reader to view this document. If you
+        do not have Adobe Acrobat Reader, <a
+        href="http://www.adobe.com/products/acrobat/readstep2.html"
+        target="_blank">click here</a> to install.
+               </div>';
+               parent::__construct(
+            $formName,
+            $method,
+            $action,
+            $target,
+            $attributes,
+            $trackSubmit
+        );
+
+               if ($this->email !== false && empty($this->email)) {
+                       //      Set to false to turn off email function.
+                       $this->email = OWNER_EMAIL;
+               }
+               if (empty($this->siteName)) {
+                       $this->siteName = SITENAME;
+               }
+               if (empty($this->subject)) {
+                       $this->subject = "Your Pdf request from website " . SITENAME;
+               }
+
+               /**
+                * Where are the flexy templates stored at for this class.
+                */
+               define('TEMPLATES_DIR', BASE . 'Toolkit/Contacts/templates');
+
+               /**
+                * Where are the compiled flexy templates stored at for this class.
+                */
+               define('COMPILED_DIR', BASE . 'Toolkit/Contacts/templates/compiled');
+               $oldUmask = umask(0);
+               if (!is_dir(TEMPLATES_DIR)) {
+                       mkdir(TEMPLATES_DIR, 0770, true);
+               }
+               if (!is_dir(COMPILED_DIR)) {
+                       mkdir(COMPILED_DIR, 0770, true);
+               }
+               umask($oldUmask);
+
+               $this->flexyOptions                = $GLOBALS['flexyOptions'];
+               $this->flexyOptions['templateDir'] = TEMPLATES_DIR;
+               $this->flexyOptions['compileDir']  = COMPILED_DIR;
+
+               $var = basename(__FILE__, '.php');
+
+               $callbackUrl = ($_SERVER['HTTPS'] == 'on') ?
+                                                         BASE_SECURE_URL : BASE_URL;
+
+               $this->configureElements();
+               $this->configureRules();
+               $this->configureFilters();
+               $this->configureDefaults();
+               $this->configureConstants();
+       }
+
+       //      }}}
+
+       //      {{{     configureConstats()
+
+    /**
+     * Constant variables for the form
+        *
+        * These values won't get overridden by POST or GET vars
+     *
+     * @return void
+     * @access protected
+     */
+       protected function configureConstants()
+       {
+               $constants = array(
+                       'user_agent' => $_SERVER['HTTP_USER_AGENT'],
+                       'remote_addr' => $_SERVER['REMOTE_ADDR'],
+               );
+               $this->setupConstants($constants);
+       }
+
+       //      }}}
+       //      {{{     configureDefaults()
+
+    /**
+     * Initializes default form values
+     *
+     * @return void
+     * @access protected
+     */
+       protected function configureDefaults()
+       {
+               if ($contactData = $this->contactExists()) {
+                       $defaults = $contactData;
+               } else {
+                       $defaults = array(
+                               'state' => '',
+                'mail_ok' => 1,
+                       );
+               }
+
+               $this->setupDefaults($defaults);
+       }
+
+       //      }}}
+       //      {{{     configureElements()
+
+    /**
+     * Form element definitions
+     *
+     * @return void
+     * @access protected
+     */
+       protected function configureElements()
+       {
+               //      All Elements are created here.  This includes group element definitions.
+        $elements[] = array(
+            'type' => 'hidden',
+            'req' => false,
+            'name' => 'user_agent'
+        );
+        $elements[] = array(
+            'type' => 'hidden',
+            'req' => false,
+            'name' => 'remote_addr'
+        );
+        $elements[] = array(
+            'type' => 'text',
+            'req' => true,
+            'name' => 'email',
+            'display' => 'Email'
+        );
+        $elements[] = array(
+            'type' => 'text',
+            'req' => true,
+            'name' => 'email_rmv',
+            'display' => 'Verify Email'
+        );
+        $elements[] = array(
+            'type' => 'advcheckbox',
+            'req' => false,
+            'name' => 'mail_ok',
+            'display' => 'Yes, please sign me up for your E-newsletter',
+            'opts' => 'Yes',
+            'val' => array(0, 1)
+        );
+
+        $elements[] = array(
+            'type' => 'submit',
+            'req' => false,
+            'name' => 'submit_rmv',
+            'display' => 'Submit Form'
+        );
+
+               $this->setupElements($elements);
+       }
+
+       //      }}}
+       //      {{{     configureRules()
+
+    /**
+     * Form rule definitions
+     *
+        * Adds validation rules for the given fields
+     *
+     * @return void
+     * @access protected
+     */
+       protected function configureRules()
+       {
+               //      Form Rules
+        $rules[] = array(
+            'element' => 'email',
+            'message' => 'ERROR: Invalid Email Format!',
+            'type' => 'email',
+            'format' => null,
+            'validation' => $this->validationType,
+            'reset' => true,
+            'force' => false
+        );
+        $rules[] = array(
+            'element' => array('email', 'email_rmv'),
+            'message' => 'ERROR: Your Email Addresses Do Not Match!',
+            'type' => 'compare',
+            'format' => null,
+            'validation' => $this->validationType,
+            'reset' => true,
+            'force' => false
+        );
+        $rules[] = array(
+            'element' => 'zip',
+            'message' => 'ERROR: Invalid Zip!',
+            'type' => 'zip',
+            'format' => array('requireDBCheck' => false),
+            'validation' => $this->validationType,
+            'reset' => true,
+            'force' => false
+        );
+
+               $this->setupRules($rules);
+       }
+
+       //      }}}
+       //      {{{     configureFilters()
+
+    /**
+     * Form filter definitions
+     *
+        * Applies a data filter for the given fields when the form is submitted
+     *
+     * @return void
+     * @access protected
+     */
+       protected function configureFilters()
+       {
+               $filters[] = array('element' => '__ALL__', 'filter' => 'trim');
+       }
+
+       //      }}}
+       //      {{{     contactExists()
+
+    /**
+     * Checks a contact already exists
+     *
+     * @return mixed     database tuple of query, false on error
+     * @access protected
+     */
+       protected function contactExists()
+       {
+               try {
+                       if (!isset($_GET['id'])) {
+                               return false;
+                       }
+                       $sql = "
+                SELECT fname, lname, address, address2, city, state, zip,
+                                          email, email AS email_rmv, phone, fax, mail_ok
+                  FROM contacts
+                 WHERE id = :cid";
+
+                       $stmt = $this->dbh->prepare($sql);
+                       $stmt->bindParam(':cid', $_GET['id'], PDO::PARAM_INT);
+                       $stmt->execute();
+                       return $stmt->fetch(PDO::FETCH_ASSOC);
+               } catch (PDOException $e) {
+                       return Toolkit_Common::handleError($e);
+               }
+       }
+
+       //      }}}
+
+       //      {{{     emailPDFLink()
+
+    /**
+     * Emails the owner the submitted data from the submitted form
+     *
+        * Uses a flexy template to render a nice looking html email.
+        * Emails the link for pdf to person filling out form.
+        *
+     * @return boolean   result of the mailing
+     * @access protected
+     */
+       protected function emailPDFLink()
+       {
+               $template = new HTML_Template_Flexy($this->flexyOptions);
+               $page     = new stdClass();
+
+               $page->email_from  = FROM_NEWS_EMAIL;
+               $page->subject     = $this->subject;
+               $page->client_info = $this->clientInfo;
+               $page->pdfName     = $this->pdfFileName;
+               $page->pdfLinkURL  = BASE_URL.'assets/'.$this->pdfFileName;
+        $page->pdfFileSize = GLM_TOOLBOX::get_size(
+            BASE.'assets/' . $this->pdfFileName
+        );
+
+               $template->compile('pdfDownloadEmail.html');
+               $htmlMsg = $template->bufferedOutputObject($page);
+
+               $crlf     = "\n";
+               $mimeMail = new Mail_mime($crlf);
+               $mimeMail->setFrom("{$this->siteName} <{$page->email_from}>");
+               $mimeMail->setSubject($this->subject);
+               $mimeMail->setHTMLBody($htmlMsg);
+
+               $mail    =& Mail::factory('mail');
+               $body    = $mimeMail->get();
+               $headers = $mimeMail->headers();
+
+               $res = $mail->send($this->getSubmitValue('email'), $headers, $body);
+               if (PEAR::isError($res)) {
+                       return Toolkit_Common::handleError($res);
+               } else {
+                       return $res;
+               }
+       }
+
+       //      }}}
+       //      {{{     error()
+
+    /**
+     * Display errors with the form to the user
+     *
+     * @param object $error PEAR Error Object
+        *
+     * @return void
+     * @access public
+     */
+       public function error($error)
+       {
+               //      make the variables static so that is only has to do the defining
+               //      on the first call.
+               static $errorMessages;
+               static $className;
+
+               //      define the various error messages
+               if (!isset($errorMessages)) {
+                       $className     = get_class($this);
+                       $errorMessages = array(
+                               FORM_OK                  => 'No error',
+                               FORM_ERROR               => 'Unknown error',
+                NO_RECORD               => 'Setting both properties (email and
+                hasContactDB) to false in the <i>' . $className . '</i>
+                class will result in no email record being sent and no
+                record being inserted into the database.  There will be
+                no record that this form was ever filled out.',
+                INVALID_DB              => 'Please set the property hasContactDB
+                to a boolean value in the class <i>' . $className . '</i>
+                before continuing',
+                MISSING_CONSTANT => 'You have failed to set a CONSTANT
+                for the class <i>' . $className . '</i> to function properly',
+                       );
+               }
+
+               if (!is_null($error->message)) {
+                       $message = $error->message;
+               } elseif (isset($errorMessages[$error->code])) {
+                       $message = $errorMessages[$error->code];
+               } else {
+                       $message = $errorMessages[$error->code];
+                       $message = $errorMessages[FORM_ERROR];
+               }
+
+               echo "<div id=\"form-warning-top\">{$message}</div>";
+       }
+
+       //      }}}
+
+       //      {{{     getInterestFields()
+
+    /**
+     * Returns the field definitions of the contact db interest fields
+     *
+     * @return array     Group definitions for the interest fields
+     * @access protected
+     */
+       protected function getInterestFields()
+       {
+               if (is_array($this->inquiries)) {
+                       foreach ($this->inquiries as $k => $v) {
+                               $interests[] = array('type' => 'checkbox',
+                                                                        'req' => false,
+                                                                        'name' => $k,
+                                                                        'opts' => $v);
+                       }
+               }
+
+               return $interests;
+       }
+
+       //      }}}
+
+       //      {{{     insertData()
+
+    /**
+     * Inserts contact data into the contact db
+     *
+     * @param array $values submitted values
+        *
+     * @return object    result of db insert query
+     * @access protected
+     */
+       protected function insertData($values)
+       {
+               if (is_array($values['interest']) && !empty($values['interest'])) {
+            $values['interest'] = ':' . implode(
+                ':',
+                array_keys($values['interest'])
+            ) . ':';
+               }
+               try {
+                       $params     = implode(', ', array_keys($values));
+                       $bindParams = ':' . implode(', :', array_keys($values));
+
+                       $sql  = "
+                               INSERT INTO {$this->tableName} ($params)
+                               VALUES ($bindParams)";
+                       $stmt = $this->dbh->prepare($sql);
+                       foreach ($values as $k => &$v) {
+                               $metaData = $this->tableMetaData[$k];
+                               if ($metaData == 'integer') {
+                                       $dataType = PDO::PARAM_INT;
+                               } elseif ($metaData == 'boolean') {
+                                       $dataType = PDO::PARAM_BOOL;
+                               } else {
+                                       $dataType = PDO::PARAM_STR;
+                               }
+                               //      For empty values that are not actually a zero (0), we
+                               //      want to insert null's.
+                               if (empty($v) && $v !== 0) {
+                                       $v        = null;
+                                       $dataType = PDO::PARAM_NULL;
+                               }
+                               $stmt->bindParam(":$k", $v, $dataType);
+                       }
+                       return $stmt->execute();
+               } catch (PDOException $e) {
+                       return Toolkit_Common::handleError($e);
+               }
+       }
+
+       //      }}}
+
+       //      {{{     processData()
+
+    /**
+     * Handles how to process the form when submitted
+     *
+     * @param array $values Form submitted values
+        *
+     * @return array     Result of Insert / Update function
+     * @access protected
+     */
+       protected function processData($values)
+       {
+               //      Form data used for the insert/update sql queries and
+               //      the form email.
+               $e = array(
+                       'mail_ok',
+                       'user_agent',
+                       'remote_addr'
+               );
+               $this->setFormData($e);
+
+
+               //      If no contact db, return true so we can send owner email.
+               if (!$this->hasContactDB) {
+                       return true;
+               }
+
+               //      Get rid of any defined un-needed elements.
+               //      un-needed elements after the form is submitted are defined
+               //      by the ending _rmv name.
+               foreach ($values as $k => &$v) {
+                       if (preg_match('/^.+_rmv$/', $k)) {
+                               unset($values[$k]);
+                       }
+               }
+
+               $this->tableMetaData = Toolkit_Common::getTableMetaData(
+            $this->dbh,
+            $this->tableName
+        );
+               //      Check if a contact w/ the submitted email already exists.
+               //      if so, then we need to update, if not then do a fresh insert.
+               try {
+                       $sql = "
+                               SELECT count(*)
+                                 FROM {$this->tableName}
+                                WHERE email   = :email";
+
+                       $stmt = $this->dbh->prepare($sql);
+                       $stmt->bindParam(':email', $values['email'], PDO::PARAM_STR);
+                       $stmt->execute();
+                       $stmt->bindColumn('count', $contactExists);
+                       $stmt->fetch();
+               } catch (PDOException $e) {
+                       return Toolkit_Common::handleError($e);
+               }
+
+               if ($contactExists) {
+                       return $this->updateData($values);
+               } else {
+                       return $this->insertData($values);
+               }
+       }
+
+       //      }}}
+
+       //      {{{     setInterestFields()
+
+    /**
+     * Contact DB interests
+     *
+     * @return void
+     * @access protected
+     */
+       protected function setInterestFields()
+       {
+               try {
+                       $sql = "
+                SELECT *
+                  FROM contact_inq
+                 ORDER BY pos";
+
+                       foreach ($this->dbh->query($sql) as $row) {
+                               $inquiries[$row['id']] = $row['header'];
+                       }
+
+                       $this->inquiries = $inquiries;
+               } catch (PDOException $e) {
+                       Toolkit_Common::handleError($e);
+               }
+       }
+
+       //      }}}
+       //      {{{     setupRenderers()
+
+    /**
+     * Custom rendering templates for special fields on the form
+     *
+     * @return void
+     * @access protected
+     */
+       protected function setupRenderers()
+       {
+               parent::setupRenderers();
+               $renderer =& $this->defaultRenderer();
+        $required = '<!-- BEGIN required -->
+        <span class="req">*</span>
+        <!-- END required -->';
+        $error    = '<!-- BEGIN error -->
+        <div class="form-warning-inside">{error}</div>
+        <!-- END error -->';
+
+        $renderer->setElementTemplate(
+            '<tr>
+            <td colspan="2">'.$required.'{label}'.$error.'{element}</td>
+        </tr>', 'comments'
+        );
+        $renderer->setElementTemplate(
+            '<tr align="center">
+            <td colspan="2">'.$required.'{label}'.$error.'{element}</td>
+        </tr>', 'submit_rmv'
+        );
+
+       }
+
+       //      }}}
+       //      {{{     toHTML()
+
+    /**
+     * Handles how to display the current step the user is at in the form
+     *
+     * @return string form HTML state
+     * @access public
+     */
+       public function toHTML()
+       {
+               $this->setupRenderers();
+               if ($this->validate()) {
+                       $this->cleanForm();
+
+                       if ($this->process(array(&$this, 'processData'), $this->mergeFiles)) {
+                               $this->freeze();
+                               $ret = $this->emailPDFLink();
+                               $output = $this->successMsg;
+                       }
+            $this->sent = true;
+               } elseif ($this->isSubmitted()) {
+                       $output  = $this->errorMsg;
+                       $output .= parent::toHTML();
+               } else {
+                       $output = parent::toHTML();
+               }
+               return $output;
+       }
+
+       //      }}}
+
+       //      {{{     updateData()
+
+    /**
+     * Updates the contact in the contact db
+     *
+     * @param array $values Form submitted values
+        *
+     * @return object Result of the update query
+     * @access protected
+     */
+       protected function updateData($values)
+       {
+               if (is_array($values['interest']) && !empty($values['interest'])) {
+            $values['interest'] = ':' . implode(
+                ':',
+                array_keys($values['interest'])
+            ) . ':';
+               }
+               try {
+                       $params = array_keys($values);
+                       $length = count($params);
+                       for ($i = 0; $i < $length; ++$i) {
+                               $bindParams .= "{$params[$i]} = :{$params[$i]}";
+                               if ($i < ($length - 1)) {
+                                       $bindParams .= ', ';
+                               }
+                       }
+                       $sql  = "
+                               UPDATE {$this->tableName}
+                                  SET $bindParams
+                                WHERE email = :email";
+                       $stmt = $this->dbh->prepare($sql);
+                       foreach ($values as $k => &$v) {
+                               $metaData = $this->tableMetaData[$k];
+                               if ($metaData == 'integer') {
+                                       $dataType = PDO::PARAM_INT;
+                               } elseif ($metaData == 'boolean') {
+                                       $dataType = PDO::PARAM_BOOL;
+                               } else {
+                                       $dataType = PDO::PARAM_STR;
+                               }
+                               //      For empty values that are not actually a zero (0), we
+                               //      want to insert null's.
+                               if (empty($v) && $v !== 0) {
+                                       $v        = null;
+                                       $dataType = PDO::PARAM_NULL;
+                               }
+                               $stmt->bindParam(":$k", $v, $dataType);
+                       }
+                       return $stmt->execute();
+               } catch (PDOException $e) {
+                       return Toolkit_Common::handleError($e);
+               }
+       }
+
+       //      }}}
+}
+?>
index 6ad0720..ff3b368 100755 (executable)
@@ -46,7 +46,7 @@ class Toolkit_Contacts_SaveTripPlanner
      * @var string
      * @access public
      */
-    public $contactType = '3';
+       public $contactType = '4';
 
     /**
      * Who to send the email to when the contact form is submitted
index 9fe5d73..a35b1e9 100755 (executable)
@@ -84,9 +84,9 @@ class Toolkit_Contacts_SendTripPlanner extends Toolkit_Contacts_ContactUs
         .listing {display:none;}
         </style>
         <div id="form-success-top">
-            <p>Thank you for adding these businesses to your Trip Planner.
-            Your information is currently being sent to each business so they
-            may contact you regarding your visit.</p>
+                       <p>Thank you for adding these businesses to your Trip Planner. Your 
+information is currently being sent to each business so they may contact you regarding your 
+visit to The Upper Peninsula of Michigan.</p>
         </div>';
 
     /**
@@ -292,20 +292,20 @@ class Toolkit_Contacts_SendTripPlanner extends Toolkit_Contacts_ContactUs
             'opts'    => 'Yes',
             'val'     => array(0, 1)
         );
-//        if (is_array($this->interestsGroups)) {
-//            foreach ($this->interestsGroups as $group => $gData) {
-//                $this->myGroups[] = $gData;
-//                $e[] = array(
-//                    'type'       => 'group',
-//                    'req'        => false,
-//                    'name'       => 'interest['.$group.']',
-//                    'group'         => $gData,
-//                    'label'      => $group,
-//                    'seperator'  => ' ',
-//                    'appendName' => true
-//                );
-//            }
-//        }
+        if (is_array($this->interestsGroups)) {
+            foreach ($this->interestsGroups as $group => $gData) {
+                $this->myGroups[] = $gData;
+                $e[] = array(
+                    'type'       => 'group',
+                    'req'        => false,
+                    'name'       => 'interest['.$group.']',
+                    'group'         => $gData,
+                    'label'      => $group,
+                    'seperator'  => ' ',
+                    'appendName' => true
+                );
+            }
+        }
         $e[] = array(
             'type'    => 'CAPTCHA_Image',
             'req'     => false,
index 50dec94..44151be 100755 (executable)
@@ -78,8 +78,13 @@ class Toolkit_Contacts_StreamSend
         'city'         => 'city',
         'state'        => 'stateprovince',
         'zip'          => 'postal-code',
-        'phone'        => 'phone-number',
+        'phone'        => 'phone-numberd',
+        'referred_by'  => 'referred-by',
                'interest'     => 'interests',
+        'arrive_date'  => 'arrival-date',
+        'depart_date'  => 'departure-date',
+        'questions'    => 'questions',
+        'unit_size'    => 'unit-size',
                'contact_type' => 'contact-type'
     );
 
diff --git a/Toolkit/Contacts/TellAFriend.php b/Toolkit/Contacts/TellAFriend.php
new file mode 100755 (executable)
index 0000000..046f93d
--- /dev/null
@@ -0,0 +1,610 @@
+<?php
+//     vim:set expandtab tabstop=4 shiftwidth=4 softtabstop=4 foldmethod=marker syntax=php:
+
+/**
+ * File Doc Comment
+ *
+ * PHP version 5
+ *
+ * @category Contacts
+ * @package  Toolkit_Contacts
+ * @author   Jamie Kahgee <jamie.kahgee@gmail.com>
+ * @license     http://www.gaslightmedia.com Gaslightmedia
+ * @version  CVS: $Id: TellAFriend.php,v 1.8 2010/01/28 16:33:53 jamie Exp $
+ * @link        http://demo.gaslightmedia.com
+ */
+
+/**
+ * Error codes for Toolkit_Contacts_ContactUs
+ *
+ * Codes are mapped to textual messaged by errorMessage() method,
+ * if you add a new code be sure to add a new message for it to errorMessage()
+ *
+ * @see Toolkit_Contacts_TellAFriend::errorMessage()
+ */
+define('FORM_OK', 1);
+define('FORM_ERROR', -1);
+define('NO_RECORD', -2);
+define('INVALID_DB', -3);
+define('MISSING_CONSTANT', -4);
+
+/**
+ * GLM Tell a Friend form
+ *
+ * This form handles rendering and processing the contact us form.
+ * Controls the email functionality of the form, whether the client
+ * has a contact DB to store contact records and how to insert/update
+ * submitted form values.
+ *
+ * @category  Contacts
+ * @package   Toolkit_Contacts
+ * @author    Jamie Kahgee <jamie.kahgee@gmail.com>
+ * @copyright 2009 Jamie Kahgee
+ * @license   http://www.gaslightmedia.com Gaslightmedia
+ * @link      <>
+ * @see       Toolkit_FormBuilder
+ */
+class Toolkit_Contacts_TellAFriend extends Toolkit_FormBuilder
+{
+       //      {{{     properties
+
+    /**
+     * Table in Database which holds the contact data
+        *
+     * @var    string
+     * @access public
+     */
+       public $tableName = 'contact';
+
+    /**
+     * Table meta data
+        *
+        * This is used when inserting/updating data for the records
+        * so the PDO's can use explicit data types for the parameters.
+        *
+     * @var    array
+     * @access public
+     */
+       public $tableMetaData;
+
+    /**
+     * Used in the email template for the client info string at the bottom
+        *
+     * @var    string
+     * @access protected
+     */
+       protected $clientInfo = array(
+               'name'    => 'Gaslight Media',
+               'address' => '120 E. Lake St.',
+               'city'    => 'Petoskey',
+               'state'   => 'MI',
+               'zip'     => '49770',
+               'phone'   => '231.487.0697',
+       );
+
+    /**
+        * Who to send the email to when the contact form is submitted
+        *
+        * If you leave this blank, its value will get set to the OWNER_EMAIL
+        * in the constructor.
+        *
+        * If you ***DO NOT*** want any emails to go out when the form is submitted
+        * then set the value to false. Do not set it to 0 for false, because the
+        * check uses a strict type check to determine if the value is actually
+        * false. This is what allows for the empty value as an option, which sets
+        * the value to OWNER_EMAIL and won't override the $email property if
+        * this class gets subclassed and the value for this property gets set in
+        * the properties of the subclass and not in the constructor after this
+        * constructor function is called.
+        *
+        * tongue twister...I know.
+        * <code>
+        * protected $email = false;
+        * </code>
+        *
+     * @var    unknown
+     * @access protected
+     */
+       protected $email;
+
+    /**
+     * From header in the owner email
+        *
+        * This just sets the From header in the owner email
+        * SITENAME <from@email.com>
+        *
+        * It gets set to the constant SITENAME in the constructor if you leave
+        * empty here, but you can set it to something different here to override
+        * that if you desire.
+        *
+     * @var    unknown
+     * @access protected
+     */
+    protected $siteName = 'Demo Gaslight Media';
+
+    /**
+        * Email subject and <h1> header in email
+        *
+        * It gets set in the constructor if you leave empty here, but you
+        * can set it to something different here to override that if you desire.
+        *
+     * @var    string
+     * @access protected
+     */
+       protected $subject = 'Tell a Friend';
+
+    /**
+     * Whether the site has a contact DB to store contact records
+        *
+        * If this value is set to false, an email will still be sent to the
+        * addressed specified in the email property.
+        *
+     * @var    boolean
+     * @access protected
+     */
+       protected $hasContactDB = false;
+
+    /**
+     * The interests from the contact db
+        *
+     * @var    array
+     * @access protected
+     */
+       protected $inquiries = array();
+
+    /**
+     * Message to display if the form is successfully submitted
+        *
+     * @var    string
+     * @access protected
+     */
+       protected $successMsg = '
+               <div id="form-success-top">
+            Thank You, your message is sent.
+               </div>';
+
+    /**
+     * Extra rules for processesing
+        *
+        * This registers the Zip validation rules (and any others listed) for
+        * QuickForm.
+        *
+        * Zip validation checks both US and Canadian Zip codes
+        *
+     * @var    array
+     * @access protected
+        * @see    app.gaslightmedia.com/glmPEAR/HTML/QuickForm/Rules/Zip.php
+     */
+       protected $registeredRules = array();
+
+    /**
+     * Options for flexy templating engine
+        *
+        * Pulls the preset options from the setup.phtml file
+        * overwrites the templateDir and compileDir to match this classes needs
+        *
+     * @var    array
+     * @access protected
+     */
+       protected $flexyOptions;
+
+       //      }}}
+       //      {{{     __construct()
+
+       /**
+        * Class constructor
+        *
+     * @param string $formName    Form's name.
+     * @param string $method      (optional)Form's method defaults to 'POST'
+     * @param string $action      (optional)Form's action
+     * @param string $target      (optional)Form's target defaults to '_self'
+     * @param mixed  $attributes  (optional)Extra attributes for <form> tag
+     * @param bool   $trackSubmit (optional)Whether to track if the form was
+        *                                                        submitted by adding a special hidden field
+        *
+        * @access public
+        */
+       public function __construct(
+        $formName,
+        $method = 'post',
+        $action = '',
+        $target = '',
+        $attributes = null,
+        $trackSubmit = false
+    ) {
+               //      Make sure these end cases are never met.
+               //      These are more for the development phase.
+               if ($this->email === false && $this->hasContactDB === false) {
+                       PEAR::raiseError(
+                null,
+                NO_RECORD,
+                PEAR_ERROR_CALLBACK,
+                array(&$this, 'error')
+            );
+               }
+               if (!is_bool($this->hasContactDB)) {
+                       PEAR::raiseError(
+                null,
+                INVALID_DB,
+                PEAR_ERROR_CALLBACK,
+                array(&$this, 'error')
+            );
+               }
+               //      we haven't defined the FROM_NEWS_EMAIL constant and
+               //      the email will default to relying on it.
+               if (   !defined('FROM_NEWS_EMAIL')
+            && (empty($this->email) && $this->email !== false)
+        ) {
+                       PEAR::raiseError(
+                'You need to define the FROM_NEWS_EMAIL
+                                constant for this form to work correctly',
+                MISSING_CONSTANT,
+                PEAR_ERROR_CALLBACK,
+                array(&$this, 'error')
+            );
+               }
+
+               parent::__construct(
+            $formName,
+            $method,
+            $action,
+            $target,
+            $attributes,
+            $trackSubmit
+        );
+
+               if ($this->email !== false && empty($this->email)) {
+                       //      Set to false to turn off email function.
+                       $this->email = OWNER_EMAIL;
+               }
+               if (empty($this->siteName)) {
+                       $this->siteName = SITENAME;
+               }
+               if (empty($this->subject)) {
+                       $this->subject = "Your Pdf request from website " . SITENAME;
+               }
+
+               /**
+                * Where are the flexy templates stored at for this class.
+                */
+               define('TEMPLATES_DIR', BASE . 'Toolkit/Contacts/templates');
+
+               /**
+                * Where are the compiled flexy templates stored at for this class.
+                */
+               define('COMPILED_DIR', BASE . 'Toolkit/Contacts/templates/compiled');
+               $oldUmask = umask(0);
+               if (!is_dir(TEMPLATES_DIR)) {
+                       mkdir(TEMPLATES_DIR, 0770, true);
+               }
+               if (!is_dir(COMPILED_DIR)) {
+                       mkdir(COMPILED_DIR, 0770, true);
+               }
+               umask($oldUmask);
+
+               $this->flexyOptions                = $GLOBALS['flexyOptions'];
+               $this->flexyOptions['templateDir'] = TEMPLATES_DIR;
+               $this->flexyOptions['compileDir']  = COMPILED_DIR;
+        $this->flexyOptions['charset']     = 'utf-8';
+        $this->flexyOptions['nonHTML']     = true;
+
+               $var = basename(__FILE__, '.php');
+
+               $callbackUrl = ($_SERVER['HTTPS'] == 'on') ?
+                                                         BASE_SECURE_URL : BASE_URL;
+
+               $this->captchaOptions = array(
+                       'width' => 100,
+                       'height' => 50,
+                       'callback' => "{$callbackUrl}Toolkit/qfcaptcha.php?var=$var",
+                       'sessionVar' => $var,
+                       'imageOptions' => array(
+                               'font_size' => 16,
+                               'font_path' => GLM_APP_BASE . 'glmPEAR/Image/Canvas/Fonts/',
+                               'font_file' => 'times.ttf',
+                               'background_color' => '#cccccc',
+                               'obfuscation' => false,
+                               'angle' => true,
+                       ),
+               );
+
+               $this->configureElements();
+               $this->configureRules();
+               $this->configureFilters();
+               $this->configureDefaults();
+               $this->configureConstants();
+       }
+
+       //      }}}
+       //      {{{     configureConstats()
+
+    /**
+     * Constant variables for the form
+        *
+        * These values won't get overridden by POST or GET vars
+     *
+     * @return void
+     * @access protected
+     */
+       protected function configureConstants()
+       {
+               $constants = array(
+                       'user_agent' => $_SERVER['HTTP_USER_AGENT'],
+                       'remote_addr' => $_SERVER['REMOTE_ADDR'],
+               );
+               $this->setupConstants($constants);
+       }
+
+       //      }}}
+       //      {{{     configureDefaults()
+
+    /**
+     * Initializes default form values
+     *
+     * @return void
+     * @access protected
+     */
+       protected function configureDefaults()
+       {
+        $defaults = array(
+        );
+
+               $this->setupDefaults($defaults);
+       }
+
+       //      }}}
+       //      {{{     configureElements()
+
+    /**
+     * Form element definitions
+     *
+     * @return void
+     * @access protected
+     */
+       protected function configureElements()
+       {
+               //      All Elements are created here.  This includes group element definitions.
+               $elements[] = array('type' => 'hidden',                 'req' => false, 'name' => 'user_agent');
+               $elements[] = array('type' => 'hidden',                 'req' => false, 'name' => 'remote_addr');
+        $elements[] = array('type' => 'text',                  'req' => true,  'name' => 'fname',                              'display' => 'Friends Name:');
+        $elements[] = array('type' => 'text',                  'req' => true,  'name' => 'femail',                             'display' => 'Friends Email:');
+
+        $elements[] = array('type' => 'text',                  'req' => true,  'name' => 'yname',                              'display' => 'Your Name:');
+               $elements[] = array('type' => 'text',                   'req' => true,  'name' => 'yemail',                             'display' => 'Your Email:');
+
+               $elements[] = array('type' => 'CAPTCHA_Image',  'req' => false, 'name' => 'captcha_question',   'display' => null, 'opts' => $this->captchaOptions);
+               $elements[] = array('type' => 'text',                   'req' => true,  'name' => 'captcha_rmv',                'display' => 'Enter the letters you see');
+        $elements[] = array('type' => 'submit',                        'req' => false, 'name' => 'submit_rmv',                 'display' => 'Send Email');
+
+               $this->setupElements($elements);
+       }
+
+       //      }}}
+       //      {{{     configureRules()
+
+    /**
+     * Form rule definitions
+     *
+        * Adds validation rules for the given fields
+     *
+     * @return void
+     * @access protected
+     */
+       protected function configureRules()
+       {
+               //      Form Rules
+               $rules[] = array('element' => 'email',                                          'message' => 'ERROR: Invalid Email Format!',                            'type' => 'email',              'format' => null,       'validation' => $this->validationType, 'reset' => true, 'force' => false);
+
+               $rules[] = array('element' => 'captcha_rmv',                            'message' => 'ERROR: What you entered didn\'t match!',          'type' => 'CAPTCHA',    'format' => $this->captchaQuestion, 'validation' => $this->validationType, 'reset' => true, 'force' => false);
+
+               $this->setupRules($rules);
+       }
+
+       //      }}}
+       //      {{{     configureFilters()
+
+    /**
+     * Form filter definitions
+     *
+        * Applies a data filter for the given fields when the form is submitted
+     *
+     * @return void
+     * @access protected
+     */
+       protected function configureFilters()
+       {
+               $filters[] = array('element' => '__ALL__', 'filter' => 'trim');
+       }
+
+       //      }}}
+       //      {{{     emailFriend()
+
+    /**
+     * Emails the owner the submitted data from the submitted form
+     *
+        * Uses a flexy template to render a nice looking html email.
+        * Emails the link for pdf to person filling out form.
+        *
+     * @return boolean   result of the mailing
+     * @access protected
+     */
+    protected function emailFriend()
+       {
+               $template = new HTML_Template_Flexy($this->flexyOptions);
+               $page     = new stdClass();
+
+               $page->email_from  = FROM_NEWS_EMAIL;
+               $page->fname       = $this->getSubmitValue('fname');
+               $page->yname       = $this->getSubmitValue('yname');
+               $page->subject     = $this->subject;
+
+               $template->compile('friendEmail.html');
+               $htmlMsg = $template->bufferedOutputObject($page);
+
+               $crlf     = "\n";
+               $mimeMail = new Mail_mime($crlf);
+               $mimeMail->setFrom("{$this->siteName} <{$page->email_from}>");
+               $mimeMail->setSubject($this->subject);
+               $mimeMail->setHTMLBody($htmlMsg);
+
+               $mail    =& Mail::factory('mail');
+        $setting = array(
+            'text_charset'=>'utf-8',
+            'html_charset'=>'utf-8',
+        );
+        $body    = $mimeMail->get($setting);
+        $headers = $mimeMail->headers(array('Reply-To'=>$this->getSubmitValue('femail')), true);
+
+               $res = $mail->send($this->getSubmitValue('femail'), $headers, $body);
+               if (PEAR::isError($res)) {
+                       return Toolkit_Common::handleError($res);
+               } else {
+                       return $res;
+               }
+       }
+
+       //      }}}
+       //      {{{     error()
+
+    /**
+     * Display errors with the form to the user
+     *
+     * @param object $error PEAR Error Object
+        *
+     * @return void
+     * @access public
+     */
+       public function error($error)
+       {
+               //      make the variables static so that is only has to do the defining
+               //      on the first call.
+               static $errorMessages;
+               static $className;
+
+               //      define the various error messages
+               if (!isset($errorMessages)) {
+                       $className     = get_class($this);
+                       $errorMessages = array(
+                               FORM_OK                  => 'No error',
+                               FORM_ERROR               => 'Unknown error',
+                               NO_RECORD                => 'Setting both properties (email and hasContactDB) to false in the <i>' . $className . '</i> class will result in no email record being sent and no record being inserted into the database.  There will be no record that this form was ever filled out.',
+                               INVALID_DB               => 'Please set the property hasContactDB to a boolean value in the class <i>' . $className . '</i> before continuing',
+                               MISSING_CONSTANT => 'You have failed to set a CONSTANT for the class <i>' . $className . '</i> to function properly',
+                       );
+               }
+
+               if (!is_null($error->message)) {
+                       $message = $error->message;
+               } elseif (isset($errorMessages[$error->code])) {
+                       $message = $errorMessages[$error->code];
+               } else {
+                       $message = $errorMessages[$error->code];
+                       $message = $errorMessages[FORM_ERROR];
+               }
+
+               echo "<div id=\"form-warning-top\">{$message}</div>";
+       }
+
+       //      }}}
+       //      {{{     processData()
+
+    /**
+     * Handles how to process the form when submitted
+     *
+     * @param array $values Form submitted values
+        *
+     * @return array Result of Insert / Update function
+     * @access protected
+     */
+       protected function processData($values)
+       {
+               //      Form data used for the insert/update sql queries and
+               //      the form email.
+               $e = array(
+                       'mail_ok',
+                       'user_agent',
+                       'remote_addr'
+               );
+               $this->setFormData($e);
+
+
+               //      If no contact db, return true so we can send owner email.
+               if (!$this->hasContactDB) {
+                       return true;
+               }
+
+               //      Get rid of any defined un-needed elements.
+               //      un-needed elements after the form is submitted are defined
+               //      by the ending _rmv name.
+               foreach ($values as $k => &$v) {
+                       if (preg_match('/^.+_rmv$/', $k)) {
+                               unset($values[$k]);
+                       }
+               }
+       }
+
+       //      }}}
+       //      {{{     setupRenderers()
+
+    /**
+     * Custom rendering templates for special fields on the form
+     *
+     * @return void
+     * @access protected
+     */
+       protected function setupRenderers()
+       {
+               parent::setupRenderers();
+               $renderer =& $this->defaultRenderer();
+               $required = '<!-- BEGIN required --><span class="req">*</span><!-- END required -->';
+               $error    = '<!-- BEGIN error --><div class="form-warning-inside">{error}</div><!-- END error -->';
+
+               $renderer->setElementTemplate('<tr><td colspan="2">'.$required.'{label}'.$error.'{element}</td></tr>', 'comments');
+               $renderer->setElementTemplate('<tr align="center"><td colspan="2">'.$required.'{label}'.$error.'{element}</td></tr>', 'submit_rmv');
+
+               $renderer->setElementTemplate('<tr><td class="labelcell captcha">{element}</td>', 'captcha_question');
+               $renderer->setElementTemplate('<td class="fieldcell">'.$required.'{label}<br>'.$error.'{element}</td></tr>', 'captcha_rmv');
+       }
+
+       //      }}}
+       //      {{{     toHTML()
+
+    /**
+     * Handles how to display the current step the user is at in the form
+     *
+        * destroying and resetting the captcha value dis-allows someone from
+        * re-sending a form on a previous captcha.
+        *
+     * @return string form HTML state
+     * @access public
+     */
+       public function toHTML()
+       {
+               $GLOBALS['styleSheets'][] = BASE_URL . 'contactform.css';
+               $this->setupRenderers();
+               if ($this->validate()) {
+                       $this->captchaQuestion->destroy();
+                       $this->cleanForm();
+
+                       if ($this->process(array(&$this, 'processData'), $this->mergeFiles)) {
+                               $this->freeze();
+                               $ret = $this->emailFriend();
+                               $output = $this->successMsg;
+                       }
+            $this->sent = true;
+               } elseif ($this->isSubmitted()) {
+                       $this->captchaQuestion->destroy();
+                       $this->captchaAnswer->setValue('');
+                       $output  = $this->errorMsg;
+                       $output .= parent::toHTML();
+               } else {
+                       $this->captchaQuestion->destroy();
+                       $this->captchaAnswer->setValue('');
+                       $output = parent::toHTML();
+               }
+               return $output;
+       }
+
+       //      }}}
+}
+?>
index 4eb5592..04329b4 100644 (file)
@@ -263,8 +263,8 @@ abstract class Toolkit_FormBuilder extends HTML_QuickForm
         $this->dbh      = Toolkit_Database::getInstance();
 
         if ($this->includeContactStyleSheet) {
-            $baseURL = MEDIA_BASE_URL;
-            $GLOBALS['styleSheets'][] = $baseURL . 'css/contactform.css';
+            $baseURL       = MEDIA_BASE_URL;
+            $GLOBALS['styleSheets'][]   = $baseURL . 'css/contactform.css';
         }
     }
 
diff --git a/Toolkit/Maps/Map.php b/Toolkit/Maps/Map.php
new file mode 100644 (file)
index 0000000..da32eca
--- /dev/null
@@ -0,0 +1,106 @@
+<?php
+/**
+ * Map.php
+ *
+ * PHP version 5
+ *
+ * @category  Toolkit
+ * @package   Toolkit_Members
+ * @author    Jamie Kahgee <steve@gaslightmedia.com>
+ * @copyright 2009 Gaslight Media
+ * @license   Gaslight Media
+ * @version   CVS: $Id$
+ * @link      <>
+ */
+
+/**
+ * Short description for class
+ *
+ * Long description (if any) ...
+ *
+ * @category  Toolkit
+ * @package   Toolkit_Members
+ * @author    Jamie Kahgee <steve@gaslightmedia.com>
+ * @copyright 2009 Gaslight Media
+ * @license   Gaslight Media
+ * @version   Release: @package_version@
+ * @link      <>
+ */
+class Toolkit_Maps_Map
+{
+    private $googleMapScript = 'google-map.js';
+    //  {{{ __construct()
+
+    /**
+     * Class constructor
+     *
+     * @access public
+     */
+    public function __construct()
+    {
+    }
+
+    //  }}}
+
+    public function setGoogleMapScript($script)
+    {
+        $this->googleMapScript = $script;
+    }
+
+    //  {{{ getMemberXML()
+
+    /**
+     * Description of getMemberXML
+     *
+     * @param array $members Members array
+     *
+     * @return DOMDocument
+     * @access public
+     */
+    public function getMemberXML(array $members)
+    {
+        $dom     = new DOMDocument("1.0");
+
+        $node    = $dom->createElement("markers");
+        $parNode = $dom->appendChild($node);
+
+        foreach ($members as $i) {
+            $node    = $dom->createElement("marker");
+            $newNode = $parNode->appendChild($node);
+
+            foreach ($i as $k => $v) {
+                $newNode->setAttribute($k, $v);
+            }
+        }
+
+        return $dom->saveXML();
+    }
+
+    //  }}}
+
+    //  {{{ toHtml()
+
+    /**
+     * Description for toHtml
+     *
+     * @param string $id Description of $id
+     * @param string $w  Description of $w
+     * @param string $h  Description of $h
+     *
+     * @return string
+     */
+    public function toHtml($id = "map-canvas", $w = "100%", $h = "400px")
+    {
+        $GLOBALS['topScripts'][]
+            = 'http://maps.google.com/maps/api/js?sensor=false';
+        $GLOBALS['bottomScripts'][]
+            = BASE_URL . 'Toolkit/Maps/js/' . $this->googleMapScript;
+
+
+        $format = '<div id="%s" style="width: %s;height: %s"></div>';
+
+        return sprintf($format, $id, $w, $h);
+    }
+
+    //  }}}
+}
diff --git a/Toolkit/Maps/UpdateLatLon.php b/Toolkit/Maps/UpdateLatLon.php
new file mode 100644 (file)
index 0000000..273d617
--- /dev/null
@@ -0,0 +1,72 @@
+<?php
+
+/**
+ * UpdateLatLon.php
+ *
+ * PHP version 5.2
+ *
+ * @category  Toolkit
+ * @package   Package
+ * @author    Steve Sutton <steve@gaslightmedia.com>
+ * @copyright 2012 Gaslight Media
+ * @license   Gaslight Media
+ * @version   SVN: (0.1)
+ * @link      <>
+ */
+
+/**
+ * Toolkit_Package_UpdateLatLon
+ *
+ * Description of UpdateLatLon
+ *
+ * @category  Toolkit
+ * @package   Package
+ * @author    Steve Sutton <steve@gaslightmedia.com>
+ * @copyright 2012 Gaslight Media
+ * @license   Gaslight Media
+ * @release   Release: (0.1)
+ * @link      <>
+ */
+class Toolkit_Maps_UpdateLatLon
+{
+    public function getAddress()
+    {
+        $courseConfig = new Zend_Config_Ini(
+            BASE . 'Toolkit/Maps/config.ini',
+            'golfCourses',
+            array('allowModifications' => true)
+        );
+        $coursesSettings = $courseConfig->toArray();
+        $golfCourses = $coursesSettings['course'];
+
+        $geocoder = new GeocodeGoogle();
+
+        foreach ($golfCourses as $course) {
+            try {
+                $address = array(
+                    'street' => $course['street'],
+                    'city'   => $course['city'],
+                    'state'  => $course['state'],
+                    'zip'    => $course['zip']
+                );
+                echo '<pre>'.print_r($address, true).'</pre>';
+                               $response       = $geocoder->geocodeAddress($address);
+                               $responseObject = unserialize($response);
+                if ($result = $responseObject->results[0]) {
+                    $lat = $result->geometry->location->lat;
+                    $lon = $result->geometry->location->lng;
+                    echo '<pre>
+                    Lat: '.$lat.'
+                    Lon: '.$lon.'
+                    </pre>';
+                }
+                       } catch (BadMethodCallException $e) {
+                echo '<pre>'.print_r($e, true).'</pre>';
+                       } catch (Exception $e) {
+                               echo '<pre>'.print_r($e, true).'</pre>';
+                       }
+//            exit;
+        }
+    }
+}
+
diff --git a/Toolkit/Maps/activities.ini b/Toolkit/Maps/activities.ini
new file mode 100644 (file)
index 0000000..b9a742a
--- /dev/null
@@ -0,0 +1,143 @@
+; this is an INI file
+[activities]
+marker.0.name   = "Trout Creek Condominium Resort"
+marker.0.street = "4749 S. Pleasantview Road"
+marker.0.city   = "Harbor Springs"
+marker.0.state  = "MI"
+marker.0.zip    = 49740
+marker.0.lat    = 45.482311
+marker.0.lon    = -84.909537
+marker.0.main   = 1
+
+marker.1.name   = "Petoskey Gaslight District"
+marker.1.street = "Mitchell Street"
+marker.1.city   = "Petoskey"
+marker.1.state  = "MI"
+marker.1.zip    = 49740
+marker.1.lat    = 45.373835
+marker.1.lon    = -84.967258
+
+marker.2.name   = "Downtown Harbor Springs"
+marker.2.street = "Main Street"
+marker.2.city   = "Harbor Springs"
+marker.2.state  = "MI"
+marker.2.zip    = 49740
+marker.2.lat    = 45.431925
+marker.2.lon    = -84.97886
+
+marker.3.name   = "Sturgeon Bay Beach"
+marker.3.street = "Sturgeon Bay Trail Road"
+marker.3.city   = "Bliss Twp."
+marker.3.state  = "MI"
+marker.3.lat    = 45.6801748
+marker.3.lon    = -84.9697738
+
+marker.4.name   = "Petoskey State Park"
+marker.4.street = "2475 M119"
+marker.4.city   = "Petoskey"
+marker.4.state  = "MI"
+marker.4.zip    = 49770
+marker.4.lat    = 45.394788
+marker.4.lon    = -84.905643
+
+marker.5.name   = "Mackinac Bridge"
+marker.5.street = "I75 North"
+marker.5.city   = "Mackinaw City"
+marker.5.state  = "MI"
+marker.5.lat    = 45.799487
+marker.5.lon    = -84.730506
+
+marker.6.name   = "Mackinac Island"
+marker.6.street = ""
+marker.6.city   = "Mackinac Island"
+marker.6.state  = "MI"
+marker.6.zip    = 49757
+marker.6.lat    = 45.849180
+marker.6.lon    = -84.618934
+
+marker.7.name   = "Boyne Highlands"
+marker.7.street = "600 Highlands Dr."
+marker.7.city   = "Harbor Springs"
+marker.7.state  = "MI"
+marker.7.zip    = 49740
+marker.7.lat    = 45.4642938
+marker.7.lon    = -84.9368646
+
+marker.8.name   = "Nubs Nob Ski Resort"
+marker.8.street = "500 Nubs Nob Rd."
+marker.8.city   = "Harbor Springs"
+marker.8.state  = "MI"
+marker.8.zip    = 49740
+marker.8.lat    = 45.472035
+marker.8.lon    = -84.905453
+
+marker.9.name   = "Inland Waterway"
+marker.9.street = "2495 US 31 N"
+marker.9.city   = "Conway"
+marker.9.state  = "MI"
+marker.9.zip    = 49722
+marker.9.lat    = 45.403042
+marker.9.lon    = -84.876479
+
+marker.10.name   = "Little Traverse Bay Golf Club"
+marker.10.street = "995 Hideaway Valley Rd."
+marker.10.city   = "Harbor Springs"
+marker.10.state  = "MI"
+marker.10.zip    = 49740
+marker.10.lat    = 45.4461
+marker.10.lon    = -84.89917
+
+marker.11.name   = "Chestnut Valley Golf Club"
+marker.11.street = "1875 Clubhouse Dr."
+marker.11.city   = "Harbor Springs"
+marker.11.state  = "MI"
+marker.11.zip    = 49740
+marker.11.lat    = 45.485635
+marker.11.lon    = -84.881022
+
+marker.12.name   = "Odawa Casino"
+marker.12.street = "1760 Lears Rd."
+marker.12.city   = "Petoskey"
+marker.12.state  = "MI"
+marker.12.zip    = 49770
+marker.12.lat    = 45.352946
+marker.12.lon    = -84.979377
+
+marker.13.name   = "North Country Hiking Trail"
+marker.13.street = "Brutus Rd."
+marker.13.city   = "Brutus"
+marker.13.state  = "MI"
+marker.13.lat    = 45.492871
+marker.13.lon    = -84.886551
+
+marker.14.name   = "Big Bear Adventures"
+marker.14.street = "4271 S. Straits Hwy"
+marker.14.city   = "Indian River"
+marker.14.state  = "MI"
+marker.14.zip    = 49749
+marker.14.lat    = 45.401283
+marker.14.lon    = -84.618716
+
+marker.15.name   = "Pond Hill Farms"
+marker.15.street = "5581 S. Lakeshore Dr."
+marker.15.city   = "Harbor Springs"
+marker.15.state  = "MI"
+marker.15.zip    = 49740
+marker.15.lat    = 45.475602
+marker.15.lon    = -85.059835
+
+marker.16.name   = "Bay Harbor Golf"
+marker.16.street = "4000 Main St."
+marker.16.city   = "Bay Harbor"
+marker.16.state  = "MI"
+marker.16.zip    = 49770
+marker.16.lat    = 45.367200
+marker.16.lon    = -85.020302
+
+marker.17.name   = "Tunnel of Trees"
+marker.17.street = "M119"
+marker.17.city   = "Harbor Springs"
+marker.17.state  = "MI"
+marker.17.zip    = 49740
+marker.17.lat    = 45.431676
+marker.17.lon    = -84.991999
diff --git a/Toolkit/Maps/config.ini b/Toolkit/Maps/config.ini
new file mode 100644 (file)
index 0000000..9b491f1
--- /dev/null
@@ -0,0 +1,111 @@
+; Setup for the Golf Courses
+; This is used in the interactive map
+; and for the Golf Package form
+[golfCourses]
+course.0.name   = "Trout Creek Condominium Resort"
+course.0.street = "4749 S. Pleasantview Road"
+course.0.city   = "Harbor Springs"
+course.0.state  = "MI"
+course.0.zip    = 49740
+course.0.lat    = 45.482311
+course.0.lon    = -84.909537
+course.0.main   = 1
+
+course.1.name   = "Bay Harbor"
+course.1.street = "5800 Coastal Ridge Dr."
+course.1.city   = "Bay Harbor"
+course.1.state  = "MI"
+course.1.zip    = 49770
+course.1.lat    = 45.3637305
+course.1.lon    = -85.0557287
+course.1.distTo = 14.9
+
+course.2.name   = "Belvedere Golf Club"
+course.2.street = "5731 Marion Center Rd."
+course.2.city   = "Charlevoix"
+course.2.state  = "MI"
+course.2.zip    = 49720
+course.2.lat    = 45.2911382
+course.2.lon    = -85.2673243
+course.2.distTo = 28.4
+
+course.3.name   = "Black Lake Golf Club"
+course.3.street = "2800 Maxon Rd."
+course.3.city   = "Onaway"
+course.3.state  = "MI"
+course.3.zip    = 49765
+course.3.lat    = 45.4139204
+course.3.lon    = -84.2678685
+course.3.distTo = 43.8
+
+course.4.name   = "Boyne Highlands"
+course.4.street = "600 Highlands Pike"
+course.4.city   = "Harbor Springs"
+course.4.state  = "MI"
+course.4.zip    = 49740
+course.4.lat    = 45.4642938
+course.4.lon    = -84.9368646
+course.4.distTo = 2.2
+
+course.5.name   = "Boyne Mountain"
+course.5.street = "1 Boyne Mountain Rd."
+course.5.city   = "Boyne Falls"
+course.5.state  = "MI"
+course.5.zip    = 49713
+course.5.lat    = 45.1584971
+course.5.lon    = -84.9238342
+course.5.distTo = 26.3
+
+course.6.name   = "Chestnut Valley"
+course.6.street = "1875 Clubhouse Drive"
+course.6.city   = "Harbor Springs"
+course.6.state  = "MI"
+course.6.zip    = 49740
+course.6.lat    = 45.485635
+course.6.lon    = -84.881022
+course.6.distTo = 4.1
+
+course.7.name   = "Crooked Tree"
+course.7.street = "600 Crooked Tree Dr."
+course.7.city   = "Petoskey"
+course.7.state  = "MI"
+course.7.zip    = 49770
+course.7.lat    = 45.361384
+course.7.lon    = -85.013596
+course.7.distTo = 13.6
+
+course.8.name   = "Dunmaglas Golf Course"
+course.8.street = "09031 Boyne City Rd."
+course.8.city   = "Charlevoix"
+course.8.state  = "MI"
+course.8.zip    = 49720
+course.8.lat    = 45.292194
+course.8.lon    = -85.1598978
+course.8.distTo = 26
+
+course.9.name   = "Hidden River"
+course.9.street = "7688 Maple River Rd."
+course.9.city   = "Brutus"
+course.9.state  = "MI"
+course.9.zip    = 49716
+course.9.lat    = 45.507348
+course.9.lon    = -84.7607699
+course.9.distTo = 9.7
+
+course.10.name   = "Indian River Golf Club"
+course.10.street = "3301 Chippewa Beach Road"
+course.10.city   = "Indian River"
+course.10.state  = "MI"
+course.10.zip    = 49749
+course.10.lat    = 45.41720
+course.10.lon    = -84.61474
+course.10.distTo = 30.8
+
+course.11.name   = "Little Traverse Golf Club"
+course.11.street = "995 Hideaway Valley Road"
+course.11.city   = "Harbor Springs"
+course.11.state  = "MI"
+course.11.zip    = 49740
+course.11.lat    = 45.4461
+course.11.lon    = -84.89917
+course.11.distTo = 3.5
diff --git a/Toolkit/Maps/googleMap.php b/Toolkit/Maps/googleMap.php
new file mode 100644 (file)
index 0000000..d336305
--- /dev/null
@@ -0,0 +1,47 @@
+<?php
+/**
+ * googlMaps.php
+ *
+ * PHP version 5
+ *
+ * @category  Toolkit
+ * @package   Maps
+ * @author    Steve Sutton <steve@gaslightmedia.com>
+ * @copyright 2009 Gaslight Media
+ * @license   Gaslight Media
+ * @version   CVS: $Id$
+ * @link      <>
+ */
+
+header("Content-type: text/xml");
+require_once '../../setup.phtml';
+
+$courseConfig = new Zend_Config_Ini(
+    BASE . 'Toolkit/Maps/config.ini',
+    'golfCourses'
+);
+$coursesSettings = $courseConfig->toArray();
+$golfCourses = $coursesSettings['course'];
+
+$xmlEncoder  = new Toolkit_Maps_Map();
+
+$members = array();
+$count = 1;
+foreach ($golfCourses as $row) {
+    if (!is_null($row['lat']) && !is_null($row['lon'])) {
+        $members[] = array(
+            'name'   => $row['name'],
+            'lat'    => $row['lat'],
+            'lng'    => $row['lon'],
+            'street' => $row['street'],
+            'state'  => $row['state'],
+            'city'   => $row['city'],
+            'zip'    => $row['zip'],
+            'distTo' => $row['distTo'],
+            'zIndex' => $count,
+        );
+    }
+    ++$count;
+}
+
+echo $xmlEncoder->getMemberXML($members);
diff --git a/Toolkit/Maps/googleMapActivities.php b/Toolkit/Maps/googleMapActivities.php
new file mode 100644 (file)
index 0000000..5b6bccb
--- /dev/null
@@ -0,0 +1,47 @@
+<?php
+/**
+ * googlMaps.php
+ *
+ * PHP version 5
+ *
+ * @category  Toolkit
+ * @package   Maps
+ * @author    Steve Sutton <steve@gaslightmedia.com>
+ * @copyright 2009 Gaslight Media
+ * @license   Gaslight Media
+ * @version   CVS: $Id$
+ * @link      <>
+ */
+
+header("Content-type: text/xml");
+require_once '../../setup.phtml';
+
+$courseConfig = new Zend_Config_Ini(
+    BASE . 'Toolkit/Maps/activities.ini',
+    'activities'
+);
+$coursesSettings = $courseConfig->toArray();
+$markers = $coursesSettings['marker'];
+//var_dump($markers);
+$xmlEncoder  = new Toolkit_Maps_Map();
+
+$members = array();
+$count = 1;
+foreach ($markers as $row) {
+    if (!is_null($row['lat']) && !is_null($row['lon'])) {
+        $members[] = array(
+            'name'   => $row['name'],
+            'lat'    => $row['lat'],
+            'lng'    => $row['lon'],
+            'street' => $row['street'],
+            'state'  => $row['state'],
+            'city'   => $row['city'],
+            'zip'    => $row['zip'],
+            'main'   => $row['main'],
+            'zIndex' => $count,
+        );
+    }
+    ++$count;
+}
+
+echo $xmlEncoder->getMemberXML($members);
diff --git a/Toolkit/Maps/js/gMap-activities.js b/Toolkit/Maps/js/gMap-activities.js
new file mode 100644 (file)
index 0000000..c844630
--- /dev/null
@@ -0,0 +1,94 @@
+var Map = {
+       _map: null,
+       _latLngBounds: null,
+       _infoWindow: null,
+
+       init: function()
+       {
+               var canvas = document.getElementById('map-canvas');
+               var myOptions = {
+            scrollwheel: false,
+                       zoom: 9,
+                       mapTypeControl: true,
+                       mapTypeControlOptions: {style: google.maps.MapTypeControlStyle.DROPDOWN_MENU},
+                       navigationControl: true,
+                       navigationControlOptions: {style: google.maps.NavigationControlStyle.SMALL},
+                       mapTypeId: google.maps.MapTypeId.ROADMAP
+               }
+
+               Map._map = new google.maps.Map(canvas, myOptions);
+               Map._latLngBounds = new google.maps.LatLngBounds();
+               Map._infoWindow = new google.maps.InfoWindow;
+
+               $.get("google-map-activities/", Map._loadData, 'xml');
+       },
+
+       _loadData: function(data)
+       {
+               var markers = data.documentElement.getElementsByTagName("marker");
+               for (i = 0; i < markers.length; i++) {
+                       var name = markers[i].getAttribute('name');
+                       var street = markers[i].getAttribute('street');
+                       var city = markers[i].getAttribute('city');
+                       var state = markers[i].getAttribute('state');
+                       var zip = markers[i].getAttribute('zip');
+                       var lat = markers[i].getAttribute('lat');
+                       var lng = markers[i].getAttribute('lng');
+            var main = markers[i].getAttribute('main');
+            var zIndex = markers[i].getAttribute('zIndex');
+
+                       var point = new google.maps.LatLng(
+                               parseFloat(lat),
+                               parseFloat(lng)
+                       );
+                       Map._latLngBounds.extend(point);
+
+                       var html = '<table><tbody><tr>';
+                       html += '<td><b>' + name + '</b><br>' +
+                                               street + '<br>' + city + ', ' + state + ' ' + zip;
+                       html += '</td>';
+                       html += '</tr></tbody></table>';
+
+            if (main) {
+                var pinColor = "FE7569";
+            } else {
+                var pinColor = "6ABD45";
+            }
+            var pinImage = new google.maps.MarkerImage("http://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=%E2%80%A2|" + pinColor,
+                new google.maps.Size(21, 34),
+                new google.maps.Point(0, 0),
+                new google.maps.Point(10, 34)
+            );
+            var pinShadow = new google.maps.MarkerImage("http://chart.apis.google.com/chart?chst=d_map_pin_shadow",
+                new google.maps.Size(40, 37),
+                new google.maps.Point(0, 0),
+                new google.maps.Point(12, 35)
+            );
+            var marker = new google.maps.Marker({
+                title: name,
+                position: point,
+                map: Map._map,
+                icon: pinImage,
+                shadow: pinShadow
+            });
+
+
+                       Map._bindInfoWindow(marker, Map._map, Map._infoWindow, html);
+               }
+
+               Map._map.setCenter(
+                       Map._latLngBounds.getCenter()
+               );
+               Map._map.fitBounds(Map._latLngBounds);
+       },
+
+       _bindInfoWindow: function(marker, map, infoWindow, html)
+       {
+               google.maps.event.addListener(marker, 'click', function() {
+                       infoWindow.setContent(html);
+                       infoWindow.open(map, marker);
+               });
+       }
+};
+
+$(document).ready(Map.init);
diff --git a/Toolkit/Maps/js/google-map.js b/Toolkit/Maps/js/google-map.js
new file mode 100644 (file)
index 0000000..c70d3df
--- /dev/null
@@ -0,0 +1,97 @@
+var Map = {
+       _map: null,
+       _latLngBounds: null,
+       _infoWindow: null,
+
+       init: function()
+       {
+               var canvas = document.getElementById('map-canvas');
+               var myOptions = {
+            scrollwheel: false,
+                       zoom: 9,
+                       mapTypeControl: true,
+                       mapTypeControlOptions: {style: google.maps.MapTypeControlStyle.DROPDOWN_MENU},
+                       navigationControl: true,
+                       navigationControlOptions: {style: google.maps.NavigationControlStyle.SMALL},
+                       mapTypeId: google.maps.MapTypeId.ROADMAP
+               }
+
+               Map._map = new google.maps.Map(canvas, myOptions);
+               Map._latLngBounds = new google.maps.LatLngBounds();
+               Map._infoWindow = new google.maps.InfoWindow;
+
+               $.get("google-map/", Map._loadData, 'xml');
+       },
+
+       _loadData: function(data)
+       {
+               var markers = data.documentElement.getElementsByTagName("marker");
+               for (i = 0; i < markers.length; i++) {
+                       var name = markers[i].getAttribute('name');
+                       var street = markers[i].getAttribute('street');
+                       var city = markers[i].getAttribute('city');
+                       var state = markers[i].getAttribute('state');
+                       var zip = markers[i].getAttribute('zip');
+                       var lat = markers[i].getAttribute('lat');
+                       var lng = markers[i].getAttribute('lng');
+            var distTo = markers[i].getAttribute('distTo');
+            var zIndex = markers[i].getAttribute('zIndex');
+
+                       var point = new google.maps.LatLng(
+                               parseFloat(lat),
+                               parseFloat(lng)
+                       );
+                       Map._latLngBounds.extend(point);
+
+                       var html = '<table><tbody><tr>';
+                       html += '<td><b>' + name + '</b><br>' +
+                                               street + '<br>' + city + ', ' + state + ' ' + zip;
+            if (distTo) {
+                html += '<br>' + distTo + ' Miles from Trout Creek';
+            }
+                       html += '</td>';
+                       html += '</tr></tbody></table>';
+
+            if (distTo) {
+                var pinColor = "FE7569";
+            } else {
+                var pinColor = "6ABD45";
+            }
+            var pinImage = new google.maps.MarkerImage("http://chart.apis.google.com/chart?chst=d_map_pin_letter&chld=%E2%80%A2|" + pinColor,
+                new google.maps.Size(21, 34),
+                new google.maps.Point(0, 0),
+                new google.maps.Point(10, 34)
+            );
+            var pinShadow = new google.maps.MarkerImage("http://chart.apis.google.com/chart?chst=d_map_pin_shadow",
+                new google.maps.Size(40, 37),
+                new google.maps.Point(0, 0),
+                new google.maps.Point(12, 35)
+            );
+            var marker = new google.maps.Marker({
+                title: name,
+                position: point,
+                map: Map._map,
+                icon: pinImage,
+                shadow: pinShadow
+            });
+
+
+                       Map._bindInfoWindow(marker, Map._map, Map._infoWindow, html);
+               }
+
+               Map._map.setCenter(
+                       Map._latLngBounds.getCenter()
+               );
+               Map._map.fitBounds(Map._latLngBounds);
+       },
+
+       _bindInfoWindow: function(marker, map, infoWindow, html)
+       {
+               google.maps.event.addListener(marker, 'click', function() {
+                       infoWindow.setContent(html);
+                       infoWindow.open(map, marker);
+               });
+       }
+};
+
+$(document).ready(Map.init);
diff --git a/admin/Contact/class_html.phtml b/admin/Contact/class_html.phtml
new file mode 100755 (executable)
index 0000000..e8a5bd2
--- /dev/null
@@ -0,0 +1,352 @@
+<?php\r
+/***************************************\r
+** Title.........: HTML Mime Mail class\r
+** Version.......: 1.34\r
+** Author........: Richard Heyes <richard.heyes@heyes-computing.net>\r
+** Filename......: html_mime_mail.class\r
+** Last changed..: 28/01/01\r
+** Notes.........: Based upon mime_mail.class\r
+**                 by Tobias Ratschiller <tobias@dnet.it>\r
+**                 and Sascha Schumann <sascha@schumann.cx>.\r
+**                 See http://www.heyes-computing.net/scripts/\r
+**                 for full tar/zip if you haven't got one.\r
+***************************************/\r
+\r
+class html_mime_mail{\r
+\r
+        var $mime;\r
+        var $html;\r
+        var $body;\r
+        var $do_html;\r
+        var $multipart;\r
+        var $html_text;\r
+        var $html_images;\r
+        var $headers;\r
+        var $parts;\r
+        var $charset;\r
+        var $charsetlist;\r
+\r
+/***************************************\r
+** Constructor function. Sets the headers\r
+** if supplied.\r
+***************************************/\r
+\r
+        function html_mime_mail($headers = ''){\r
+\r
+                $this->html_images = array();\r
+                $this->headers     = array();\r
+                $this->parts       = array();\r
+                $this->charsetlist = array('iso'  => 'us-ascii',\r
+                                           'big5' => 'big5',\r
+                                           'gb'   => 'gb2312');\r
+\r
+                $this->charset     = 'us-ascii';\r
+\r
+                if($headers == '') return TRUE;\r
+                if(is_string($headers)) $headers = explode("\n", trim($headers));\r
+                for($i=0; $i<count($headers); $i++){\r
+                        if(is_array($headers[$i])) for($j=0; $j<count($headers[$i]); $j++) if($headers[$i][$j] != '') $this->headers[] = $headers[$i][$j];\r
+                        if($headers[$i] != '') $this->headers[] = $headers[$i];\r
+                }\r
+        }\r
+\r
+/***************************************\r
+** Accessor function to set the body text.\r
+** Body text is used if it's not an html\r
+** mail being sent.\r
+***************************************/\r
+\r
+        function set_body($text = ''){\r
+                if(is_string($text)){\r
+                        $this->body = $text;\r
+                        return TRUE;\r
+                }\r
+                return FALSE;\r
+        }\r
+\r
+/***************************************\r
+** Accessor function to return the mime\r
+** class variable. Purely for debug.\r
+***************************************/\r
+\r
+        function get_mime(){\r
+                if(!isset($this->mime)) $this->mime = '';\r
+                return $this->mime;\r
+        }\r
+\r
+/***************************************\r
+** Function to set a header. Shouldn't\r
+** really be necessary as you could use\r
+** the constructor and send functions,\r
+** it's here nonetheless. Takes any number\r
+** of arguments, which can be either\r
+** strings or arrays full of strings.\r
+** this function is php4 only and will\r
+** return false otherwise. Will return\r
+** true upon finishing.\r
+***************************************/\r
+\r
+        function add_header(){\r
+                if((int)phpversion() < 4) return FALSE;\r
+                $args = func_get_args();\r
+                for($i=0; $i<count($args); $i++){\r
+                        if(is_array($args[$i])) for($j=0; $j<count($args[$i]); $j++) if($args[$i][$j] != '') $this->headers[] = $args[$i][$j];\r
+                        if($args[$i] != '') $this->headers[] = $args[$i];\r
+                }\r
+                return TRUE;\r
+        }\r
+\r
+/***************************************\r
+** Accessor function to set the content charset.\r
+** Matt add 2000/10/19\r
+***************************************/\r
+        function set_charset($charset = '', $raw = FALSE){\r
+\r
+                if($raw == TRUE){\r
+                        $this->charset = $charset;\r
+                        return TRUE;\r
+                }\r
+\r
+                if(is_string($charset)){\r
+                        while(list($k,$v) = each($this->charsetlist)){\r
+                                if($k == $charset){\r
+                                        $this->charset = $v;\r
+                                        return TRUE;\r
+                                }\r
+                        }\r
+            }\r
+            return FALSE;\r
+        }\r
+\r
+/***************************************\r
+** Adds a html part to the mail.\r
+** Also replaces image names with\r
+** content-id's.\r
+***************************************/\r
+        function add_html($html, $text){\r
+                $this->do_html   = 1;\r
+                $this->html      = $html;\r
+                $this->html_text = $text;\r
+                if(is_array($this->html_images) AND count($this->html_images) > 0){\r
+                        for($i=0; $i<count($this->html_images); $i++) $this->html = preg_replace('%'.$this->html_images[$i]['name'].'%', 'cid:'.$this->html_images[$i]['cid'], $this->html);\r
+                }\r
+        }\r
+\r
+/***************************************\r
+** Builds html part of email.\r
+***************************************/\r
+        function build_html($orig_boundary){\r
+                $sec_boundary = '=_'.md5(uniqid(time()));\r
+                $thr_boundary = '=_'.md5(uniqid(time()));\r
+\r
+                if(count($this->html_images) == 0){\r
+                        $this->multipart.= '--'.$orig_boundary."\n";\r
+                        $this->multipart.= 'Content-Type: multipart/alternative;'.chr(10).chr(9).'boundary="'.$sec_boundary."\"\n\n\n";\r
+\r
+                        $this->multipart.= '--'.$sec_boundary."\n";\r
+                        $this->multipart.= 'Content-Type: text/plain; charset="'.$this->charset.'"'."\n";\r
+                        $this->multipart.= 'Content-Transfer-Encoding: base64'."\n\n";\r
+                        $this->multipart.= chunk_split(base64_encode($this->html_text))."\n\n";\r
+\r
+                        $this->multipart.= '--'.$sec_boundary."\n";\r
+                        $this->multipart.= 'Content-Type: text/html; charset="'.$this->charset.'"'."\n";\r
+                        $this->multipart.= 'Content-Transfer-Encoding: base64'."\n\n";\r
+                        $this->multipart.= chunk_split(base64_encode($this->html))."\n\n";\r
+                        $this->multipart.= '--'.$sec_boundary."--\n\n";\r
+                }else{\r
+                        $this->multipart.= '--'.$orig_boundary."\n";\r
+                        $this->multipart.= 'Content-Type: multipart/related;'.chr(10).chr(9).'boundary="'.$sec_boundary."\"\n\n\n";\r
+\r
+                        $this->multipart.= '--'.$sec_boundary."\n";\r
+                        $this->multipart.= 'Content-Type: multipart/alternative;'.chr(10).chr(9).'boundary="'.$thr_boundary."\"\n\n\n";\r
+\r
+                        $this->multipart.= '--'.$thr_boundary."\n";\r
+                        $this->multipart.= 'Content-Type: text/plain; charset="'.$this->charset.'"'."\n";\r
+                        $this->multipart.= 'Content-Transfer-Encoding: base64'."\n\n";\r
+                        $this->multipart.= chunk_split(base64_encode($this->html_text))."\n\n";\r
+\r
+                        $this->multipart.= '--'.$thr_boundary."\n";\r
+                        $this->multipart.= 'Content-Type: text/html'."\n";\r
+                        $this->multipart.= 'Content-Transfer-Encoding: base64'."\n\n";\r
+                        $this->multipart.= chunk_split(base64_encode($this->html))."\n\n";\r
+                        $this->multipart.= '--'.$thr_boundary."--\n\n";\r
+\r
+                        for($i=0; $i<count($this->html_images); $i++){\r
+                                $this->multipart.= '--'.$sec_boundary."\n";\r
+                                $this->build_html_image($i);\r
+                        }\r
+\r
+                        $this->multipart.= "--".$sec_boundary."--\n\n";\r
+                }\r
+        }\r
+/***************************************\r
+** Adds an image to the list of embedded\r
+** images.\r
+***************************************/\r
+        function add_html_image($file, $name = '', $c_type='application/octet-stream'){\r
+                $this->html_images[] = array( 'body'   => $file,\r
+                                              'name'   => $name,\r
+                                              'c_type' => $c_type,\r
+                                              'cid'    => md5(uniqid(time())) );\r
+        }\r
+\r
+\r
+/***************************************\r
+** Adds a file to the list of attachments.\r
+***************************************/\r
+        function add_attachment($file, $name = '', $c_type='application/octet-stream'){\r
+                $this->parts[] = array( 'body'   => $file,\r
+                                        'name'   => $name,\r
+                                        'c_type' => $c_type );\r
+        }\r
+\r
+/***************************************\r
+** Builds an embedded image part of an\r
+** html mail.\r
+***************************************/\r
+        function build_html_image($i){\r
+                $this->multipart.= 'Content-Type: '.$this->html_images[$i]['c_type'];\r
+\r
+                if($this->html_images[$i]['name'] != '') $this->multipart .= '; name="'.$this->html_images[$i]['name']."\"\n";\r
+                else $this->multipart .= "\n";\r
+\r
+                $this->multipart.= 'Content-Transfer-Encoding: base64'."\n";\r
+                $this->multipart.= 'Content-ID: <'.$this->html_images[$i]['cid'].">\n\n";\r
+                $this->multipart.= chunk_split(base64_encode($this->html_images[$i]['body']))."\n";\r
+        }\r
+\r
+/***************************************\r
+** Builds a single part of a multipart\r
+** message.\r
+***************************************/\r
+        function build_part($i){\r
+                $message_part = '';\r
+                $message_part.= 'Content-Type: '.$this->parts[$i]['c_type'];\r
+                if($this->parts[$i]['name'] != '')\r
+                        $message_part .= '; name="'.$this->parts[$i]['name']."\"\n";\r
+                else\r
+                        $message_part .= "\n";\r
+\r
+                // Determine content encoding.\r
+                if($this->parts[$i]['c_type'] == 'text/plain'){\r
+                        $message_part.= 'Content-Transfer-Encoding: base64'."\n\n";\r
+                        $message_part.= chunk_split(base64_encode($this->parts[$i]['body']))."\n";\r
+                }elseif($this->parts[$i]['c_type'] == 'message/rfc822'){\r
+                        $message_part.= 'Content-Transfer-Encoding: 7bit'."\n\n";\r
+                        $message_part.= $this->parts[$i]['body']."\n";\r
+                }else{\r
+                        $message_part.= 'Content-Transfer-Encoding: base64'."\n";\r
+                        $message_part.= 'Content-Disposition: attachment; filename="'.$this->parts[$i]['name']."\"\n\n";\r
+                        $message_part.= chunk_split(base64_encode($this->parts[$i]['body']))."\n";\r
+                }\r
+\r
+                return $message_part;\r
+        }\r
+\r
+/***************************************\r
+** Builds the multipart message from the\r
+** list ($this->_parts).\r
+***************************************/\r
+        function build_message(){\r
+                $boundary = '=_'.md5(uniqid(time()));\r
+\r
+                $this->headers[] = 'MIME-Version: 1.0';\r
+                $this->headers[] = 'Content-Type: multipart/mixed;'.chr(10).chr(9).'boundary="'.$boundary.'"';\r
+                $this->multipart = "This is a MIME encoded message.\n\n";\r
+\r
+                if(isset($this->do_html) AND $this->do_html == 1) $this->build_html($boundary);\r
+                if(isset($this->body) AND $this->body != '') $this->parts[] = array('body' => $this->body, 'name' => '', 'c_type' => 'text/plain');\r
+\r
+                for($i=(count($this->parts)-1); $i>=0; $i--){\r
+                        $this->multipart.= '--'.$boundary."\n".$this->build_part($i);\r
+                }\r
+\r
+                $this->mime = $this->multipart."--".$boundary."--\n";\r
+        }\r
+\r
+/***************************************\r
+** Sends the mail.\r
+***************************************/\r
+        function send($to_name, $to_addr, $from_name, $from_addr, $subject = '', $headers = ''){\r
+\r
+                if($to_name != '') $to = '"'.$to_name.'" <'.$to_addr.'>';\r
+                else $to = $to_addr;\r
+\r
+                if($from_name != '') $from = '"'.$from_name.'" <'.$from_addr.'>';\r
+                else $from = $from_addr;\r
+\r
+                if(is_string($headers)) $headers = explode("\n", trim($headers));\r
+                for($i=0; $i<count($headers); $i++){\r
+                        if(is_array($headers[$i])) for($j=0; $j<count($headers[$i]); $j++) if($headers[$i][$j] != '') $xtra_headers[] = $headers[$i][$j];\r
+                        if($headers[$i] != '') $xtra_headers[] = $headers[$i];\r
+                }\r
+                if(!isset($xtra_headers)) $xtra_headers = array();\r
+\r
+                mail($to, $subject, $this->mime, 'From: '.$from."\n".implode("\n", $this->headers)."\n".implode("\n", $xtra_headers));\r
+        }\r
+\r
+/***************************************\r
+** Use this method to deliver using direct\r
+** smtp connection. Relies upon Manuel Lemos'\r
+** smtp mail delivery class available at:\r
+** http://phpclasses.upperdesign.com\r
+**\r
+** void smtp_send( string *Name* of smtp object,\r
+**                 string From address,\r
+**                 array  To addresses,\r
+**                 string Subject,\r
+**                 array  Extra headers)\r
+***************************************/\r
+        function smtp_send($smtp_obj, $from_addr, $to_addr, $subject, $xtra_headers = ''){\r
+                global $$smtp_obj;\r
+                $smtp_obj = $$smtp_obj;\r
+\r
+                $headers   = $this->headers;\r
+                $headers[] = 'From: '.$from_addr;\r
+                $headers[] = 'Subject: '.$subject;\r
+                if(is_array($xtra_headers)) for(reset($xtra_headers); list(,$header) = each($xtra_headers); ) $headers[] = $header;\r
+\r
+                // the following: sendmessage(string from address, array to addresses, array headers, string body)\r
+                $smtp_obj->sendmessage($from_addr, $to_addr, $headers, $this->mime);\r
+        }\r
+\r
+/***************************************\r
+** Use this method to return the email\r
+** in message/rfc822 format. Useful for\r
+** adding an email to another email as\r
+** an attachment. there's a commented\r
+** out example in example.php.\r
+**\r
+** string get_rfc822(string To name,\r
+**                   string To email,\r
+**                   string From name,\r
+**                   string From email,\r
+**                   [string Subject,\r
+**                    string Extra headers])\r
+***************************************/\r
+        function get_rfc822($to_name, $to_addr, $from_name, $from_addr, $subject = '', $headers = ''){\r
+\r
+                // Make up the date header as according to RFC822\r
+                $date = 'Date: '.date('D, d M y H:i:s');\r
+\r
+                if($to_name != '') $to = 'To: "'.$to_name.'" <'.$to_addr.'>';\r
+                else $to = $to_addr;\r
+\r
+                if($from_name != '') $from = 'From: "'.$from_name.'" <'.$from_addr.'>';\r
+                else $from = $from_addr;\r
+\r
+                if(is_string($subject)) $subject = 'Subject: '.$subject;\r
+\r
+                if(is_string($headers)) $headers = explode("\n", trim($headers));\r
+                for($i=0; $i<count($headers); $i++){\r
+                        if(is_array($headers[$i])) for($j=0; $j<count($headers[$i]); $j++) if($headers[$i][$j] != '') $xtra_headers[] = $headers[$i][$j];\r
+                        if($headers[$i] != '') $xtra_headers[] = $headers[$i];\r
+                }\r
+                if(!isset($xtra_headers)) $xtra_headers = array();\r
+\r
+                return $date."\n".$from."\n".$to."\n".$subject."\n".implode("\n", $this->headers)."\n".implode("\n", $xtra_headers)."\n\n".$this->mime;\r
+        }\r
+\r
+\r
+} // End of class.\r
+?>\r
old mode 100755 (executable)
new mode 100644 (file)
index 4eaf7e1..cdc0de9
 <?php
-
-/**
- * contact_inquiry.phtml
- * 
- * Groups are now added to the contact inquiry types.  Groups is a
- * required field.
- * 
- * PHP versions 4 and 5
- * 
- * @category  Toolkit
- * @package   Contacts
- * @author    Steve Sutton <steve@gaslightmedia.com>
- * @copyright 2009 Gaslight Media
- * @license   Gaslight Media
- * @version   CVS: $Id: contact_inquiry.phtml,v 1.3 2009/07/24 14:27:45 matrix Exp $
- * @link      http://pear.php.net/package/Contacts
- * @see       References to other sections (if any)...
- */
-
-/**
- * base setup file for all apps
- */
 require_once '../../setup.phtml';
+require_once 'contact_setup.inc';
+top('Contact Inquiries','');
+html_nav_table($nav, $navWidth);
+$conn =& db_connect();
+if(!$conn)
+    {
+        echo "No database connection";
+    }
 
-/**
- * base setup for contact admin section
- */
-require_once "contact_setup.inc";
-GLM_TOOLBOX::top('Contact Inquiries', '');
-//     Adjust the nav for this page, add the Edit Groups page.
-if (is_array($nav) && array_key_exists('Contact Inquiry Fields', $nav)) {
-       $tmp = array('Inquiry Groups' => 'list_groups.php');
-       array_insert($nav, 'Contact Inquiry Fields', $tmp); 
-}
-GLM_TOOLBOX::html_nav_table($nav, $navWidth);
-$qs = "
- SELECT id, header, groupid, pos
-   FROM contact_inq
-  ORDER BY groupid, pos;";
-$result = $DB->db_exec($qs);
-$query = "
-    SELECT id, name
-      FROM inq_group
-     ORDER BY name;";
-if ($groupData = $DB->db_auto_get_data($query)) {
-       foreach ($groupData as $groupRow) {
-               $gRow[$groupRow['id']] = $groupRow['name'];
-       }
-}
+$qs = "SELECT   id,header,pos
+FROM    contact_inq
+ORDER BY pos;";
+
+$result = pg_Exec($conn,$qs);
 ?>
 <table id="admin-list-table">
-       <tr>
-         <th colspan="4">
-               <form action="edit_inquiry.phtml" method="POST" name="edit_inquiry">
-                       <input type="submit" name="Command" value="Add Item" />
-               </form>
-         </th>
-       </tr>
-       <tr>
-         <th>Options:</th>
-         <th>Pos:</th>
-         <th>Group:</th>
-         <th>Inquiry Name:</th>
-       </tr>
+<tr>
+  <th colspan=2>
+<form action="edit_inquiry.phtml" method="POST" name="f">
+<input type="submit" name="Command" value="Add Item">
+    </form>
+  </th>
+<tr>
 <?php
-$num = $DB->db_numrows($result);
-if ($num > 0) {
-       for ($i = 0; $i < $num; $i++) {
-               $data = $DB->db_fetch_array($result, $i, PGSQL_ASSOC);  
-               if ($data['groupid'] != $oldgroup && isset($oldgroup)) {
-                       echo '<tr><td colspan="4">&nbsp;</td></tr>';
-               }
-               ?>
-               <tr>
-                       <td nowrap>
-                               <a href="edit_inquiry.phtml?id=<?php echo $data['id'];?>&amp;Command=Edit">[Edit / Delete]</a>
-                       </td>
-                       <td>
-        <?php
-        $qs = "
-         SELECT COUNT(id) AS maxpos
-           FROM contact_inq
-          WHERE groupid = ".$data['groupid'];
+if(pg_numrows($result) > 0)
+{
+    for($i=0;$i<pg_numrows($result);$i++)
+    {
+        $data = pg_fetch_array($result,$i);
+        ?>
+            <tr>
+            <td width="10" nowrap><a href="edit_inquiry.phtml?id=<?echo $data[id]?>&Command=Edit">[Edit]</a></td>
+            <td>
+            <?
+            $qs = "SELECT   MAX(pos) as maxpos
+            FROM    contact_inq";
 
-        $maxresult = $DB->db_exec($qs);
-        $max_data = $DB->db_fetch_array($maxresult, 0, PGSQL_ASSOC);
+        $maxresult = pg_exec($conn,$qs);
+        $max_data = pg_fetch_array($maxresult,0,PGSQL_ASSOC);
         $maxpos = $max_data['maxpos'];
-        $pos = '<select style="font-size: 10pt;" name="pos" 
-            onChange="location.href=this[this.selectedIndex].value;"
-        size="1">';
-        for ($newpos = 1; $newpos <= $maxpos; $newpos++) {
-            $string = 'Command=Move&amp;groupid='.$data['groupid'].'&amp;id='.$data['id']."&amp;newpos=$newpos";
+        $pos = "<select style=\"font-size:10pt;\" name=pos
+            onChange=location.href=this[this.selectedIndex].value;
+        size=1>";
+        for($newpos=1;$newpos<=$maxpos;$newpos++) {
+            $string = "Command=Move&id=$data[id]&newpos=$newpos";
             $pos .= "<option value=\"update_inquiry.phtml?$string\"";
-            if ($newpos == $data['pos']) { 
-                $pos .= ' selected';
+            if($newpos == $data[pos]) {
+                $pos .= " selected";
             }
             $pos .= ">$newpos</option>";
         }
-        $pos .= '</select>';
+        $pos .= "</select>";
         echo $pos;
         ?>
-                       </td>
-                       <td nowrap>
-                               <?php echo $gRow[$data['groupid']];?>
-                       </td>
-                       <td align="left">
-                               <?php echo $data['header'];?>
-                       </td>
-               </tr>
-               <?php
-               $oldgroup = $data['groupid'];
-       }
-} else {
-       ?>
-       <tr>
-               <th colspan="2">Nothing in the database yet</th>
-       </tr>
-       <?php
+            </td>
+            <td width=80% align=left><?echo $data[header]?>
+            </tr>
+            <?
+    }
+}
+else {
+    ?>
+        <tr><th colspan=2>Nothing in the database yet</th></tr>
+        <?
 }
 ?>
 </table>
-<?php
-GLM_TOOLBOX::footer();
+<?
+footer();
 ?>
index 95f721e..d466b49 100755 (executable)
 <?php
-
-/**
-* contact_setup.phtml
-* 
-* Config setting for the admin contact application 
-* 
-* PHP versions 4 and 5
-* 
-* @category  Toolkit
-* @package   Contacts
-* @author    Steve Sutton <steve@gaslightmedia.com>
-* @copyright 2009 Steve Sutton
-* @license   Gaslight Media
-* @version   CVS: $Id: contact_setup.inc,v 1.7 2010/05/13 17:05:53 matrix Exp $
-* @link      <>
-*/
 extract($_REQUEST);
-// The Contact Type array is now is one location and is used by the 
-// Toolkit_Contacts_Admin_EditContact class
-$conf = new Config;
-$contactRoot =& $conf->parseConfig(
-       BASE . 'Toolkit/Contacts/config.ini',
-       'IniFile'
-);
-if (!defined("ENTRIES_PER_PAGE")) {
-
-    /**
-    * how many per page on list contacts
-    */
-    define("ENTRIES_PER_PAGE", 10);    // Entries per Page in list_contact.phtml
-}
-
-/**
-* define for customer table
-*/
-define("CUSTOMER_TABLE", "customer");    // name of customer table
-
-/**
-* define for contact table
-*/
-define("CONTACT_TABLE", "contact");        // name of contact table
-
-$table = $contactRoot->getItem('section', 'conf')
-    ->getItem('directive', 'table')
-    ->getContent();
-/**
-* Table to user in db
-*/
-define("TABLE", $table);            // which table to use
-
-/**
-* postgres date formate
-*/
-define("DATEFORMAT", "US");                // date format (for edit_contact.phmtl)
-
-/**
-* template for the newsletter
-*/
-define("NEWSLETTER_PROTOTYPE", "newsletter_template.html");                // date format (for edit_contact.phmtl)
-
-/**
-* class_template needed for GLM_TEMPLATE::get_seo_url()
-*/
-require_once BASE.'classes/class_template.inc';
-$DB = new GLM_DB();
-if (!defined("HTML_EMAIL")) {
-
-    /**
-    * HTML_EMAIL = ON or OFF 
-    */
-    define("HTML_EMAIL", "ON");
+require_once BASE . 'setup_functions.phtml';
+//$Id: contact_setup.inc,v 1.1.1.1 2008/07/08 15:02:13 jmeek Exp $
+if(!defined("ENTRIES_PER_PAGE")) {
+    define("ENTRIES_PER_PAGE",10);  // Entries per Page in list_contact.phtml
 }
-if (!defined("PRODUCTION_MODE")) {
-
-    /**
-    * PRODUCTION_MODE off/on  mail sent
-    */
-    define("PRODUCTION_MODE", "ON");
-}
-if (!defined("NEWSLETTER")) {
-
-    /**
-    * NEWSLETTER 1 or true will allow newsletters
-    */
-    define("NEWSLETTER", 1); //bool- does the contact database mail out a newsletter? 
+define("CUSTOMER_TABLE","customer");    // name of customer table
+define("CONTACT_TABLE","contact");      // name of contact table
+define("TABLE",CONTACT_TABLE);          // which table to use
+define("DATEFORMAT","US");              // date format (for edit_contact.phmtl)
+define("NEWSLETTER_PROTOTYPE","newsletter_template.html");
+/*
+   setup the following in the setup.phtml (in root directory) file.
+defines:
+HTML_EMAIL = ON or OFF
+PRODUCTION_MODE = ON ,r OFF
+ */
+/*
+   define("NEWSLETTER",1); //bool- does the contact database mail out a newsletter?
+   define("NEWSLETTRE_TYPE","TEXT"); // can be text or html(with images)
+ */
+
+$unit_size2[6] = "5 bedroom &amp; loft, 3.5 bathroom (sleeps 12)";
+$unit_size2[0] = "3 bedroom &amp; loft, 2 bathroom (sleeps 8-10)";
+$unit_size2[1] = "2 bedroom &amp; loft, 2 bathroom (sleeps 6-8)";
+$unit_size2[2] = "2 bedroom, 2 bathroom + (sleeps 4-6)";
+$unit_size2[3] = "2 bedroom, 2 bathroom (sleeps 4-6)";
+$unit_size2[4] = "2 bedroom, 1 bathroom (sleeps 4-6)";
+$unit_size2[5] = "1 bedroom, 1 bathroom (sleeps 2-4)";
+
+$referred_by2[0] = "AAA";
+$referred_by2[1] = "Big Fore";
+$referred_by2[2] = "Chamber/Visitors Bureau";
+$referred_by2[3] = "Detroit Free Press";
+$referred_by2[4] = "Friends/Relatives";
+$referred_by2[5] = "Great Rentals Web Site";
+$referred_by2[6] = "Internet";
+$referred_by2[7] = "Nubs Nob";
+$referred_by2[8] = "Other";
+$referred_by2[9] = "Past Guest";
+
+$int_qs = "select * from contact_inq order by pos;";
+
+if( $data = db_auto_get_data($int_qs,CONN_STR) )
+{
+    foreach( $data as $row )
+    {
+        $interest2[$row['id']] = $row['header'];
+    }
 }
+/*
+$interest2[0] = "Golf Trip";
+$interest2[1] = "Big 4 Golf Package";
+$interest2[2] = "Ski Trip";
+$interest2[3] = "Family vacation";
+$interest2[4] = "Family Reunion";
+$interest2[5] = "Romantic Getaway";
+$interest2[6] = "Honeymoon/Anniversary";
+$interest2[7] = "Soccer Weekend";
+$interest2[8] = "Wedding Group";
+$interest2[9] = "Biking";
+$interest2[10] = "Fishing";
+$interest2[11] = "Tennis";
+$interest2[12] = "Business";
+$interest2[13] = "Fall Color Tour";
+$interest2[14] = "Morel Mushrooms";
+$interest2[15] = "Spring/Fall Relaxing vacation";
+$interest2[16] = "Empty Nester Getaway";
+$interest2[17] = "Real Estate";
+$interest2[18] = "Senior Packages";
+$interest2[19] = "Scrapbooking";
+*/
 
-if (!function_exists("template_read")) {
-
-    /**
-    * Short description for function
-    * 
-    * Long description (if any) ...
-    * 
-    * @param unknown $template Parameter description (if any) ...
-    * 
-    * @return string  Return description (if any) ...
-    */
+if(!function_exists("template_read"))
+{
     function template_read($template)
     {
-        $fp       = fopen($template, "r");
-        $contents = fread($fp, filesize($template));
+        $fp = fopen($template, "r");
+        $contents = fread($fp,filesize($template));
         fclose($fp);
-        if ($contents) {
+        if($contents)
+        {
             return $contents;
-        } else {
+        }
+        else
+        {
             return "";
         }
     }
 }
-// {{{ array_insert()
-
 
-/**
-* insert an array into another array after position.
-* You can specify an associative array key or index key
-* to dictact the positioning of the new array
-* 
-* @param array   &$array       array to be used
-* @param unknown $position     position to add array
-* @param unknown $insert_array array to be inserted
-* 
-* @return void   
-*/
-function array_insert(&$array, $position, $insert_array)
+if(!function_exists("explode_template"))
 {
-    if (!is_int($position)) {
-        $i = 0;
-        foreach ($array as $key => $value) {
-            if ($key == $position) {
-                $position = ++$i;
-                break;
-            }
-            ++$i;
-        }
-    }
-    $first_array = array_splice($array, 0, $position);
-    $array = array_merge($first_array, $insert_array, $array);
-}
-// }}}
-// {{{ explode_template()
-if (!function_exists("explode_template")) {
-
-    /**
-    * Short description for function
-    * 
-    * Long description (if any) ...
-    * 
-    * @param unknown $template Parameter description (if any) ...
-    * @param unknown $data     Parameter description (if any) ...
-    * 
-    * @return unknown Return description (if any) ...
-    */
-    function explode_template($template, $data)
+    function explode_template($template,$data)
     {
         $template = template_read($template);
-        $output   = template_replacement($template, $data);
-        $output   = wordwrap($output, 72);
-        return $output;
+        $output = template_replacement($template,$data);
+        $output = wordwrap($output, 72);
+        return($output);
 
     }
 }
-// }}}
-// {{{ template_replacement($template, $fieldarr)
-if (!function_exists("template_replacement")) {
 
-    /**
-    * Short description for function
-    * 
-    * Long description (if any) ...
-    * 
-    * @param unknown $template Parameter description (if any) ...
-    * @param array   $fieldarr Parameter description (if any) ...
-    * 
-    * @return unknown Return description (if any) ...
-    */
-    function template_replacement($template, $fieldarr)
+if(!function_exists("template_replacement"))
+{
+    function template_replacement($template,$fieldarr)
     {
-        if (is_array($fieldarr)) {
-            foreach ($fieldarr as $key => $value) {
-                $template = str_replace("<!-- ".$key." -->", $value, $template);
+        if(is_array($fieldarr))
+        {
+            foreach($fieldarr as $key=>$value)
+            {
+                $template = str_replace( "<!-- ".$key." -->", $value, $template );
             }
         }
+
         return $template;
     }
 }
-// }}}
-// {{{ add_image($image, $align)
-if (!function_exists("add_image")) {
-
-    /**
-    * Short description for function
-    * 
-    * Long description (if any) ...
-    * 
-    * @param string $image Parameter description (if any) ...
-    * @param string $align Parameter description (if any) ...
-    * 
-    * @return string Return description (if any) ...
-    */
-    function add_image($image, $align)
+if(!function_exists("add_image"))
+{
+    function add_image($image,$align,$url)
     {
-        if ($image != "") {
-            return '<div style="margin:5px;float:'.$align.';"><img src="'.MIDSIZED.$image.'"></div>';
+        if($image != "")
+        {
+            $output .= '<div style="margin:5px;float:'.$align.';">';
+            if( $url != '' )
+            {
+                $output .= '<a href="http://'.$url.'">';
+            }
+            $output .= '<img src="'.MIDSIZED.$image.'">';
+            if( $url != '' )
+            {
+                $output .= '</a>';
+            }
+            $output .= '</div>';
         }
+        return($output);
     }
 }
-// }}}
-// {{{ Navigation array
-$nav      = array(
-    "Report Builder"         => "index.phtml",
-    "Add Contact"            => "edit_contact.php",
-    "List Contacts"          => "list_contact.phtml",
-    "Contact Inquiry Fields" => "contact_inquiry.phtml",
-    "HTML Emails"            => "emails.php",
-    "Saved Reports"          => "list_query.phtml",
-);
-// }}}
-$navWidth = 7;
-$query    = "select * from contact_inq order by pos;";
-$cData    = $DB->db_auto_get_data($query);
-if (is_array($cData)) {
-    foreach ($cData as $key => $value) {
-        $int_array[$value['id']] = $value['header'];
-    }
-}
-$contactTypesSetup = 
-    $contactRoot->getItem('section', 'contact_types')
-       ->toArray();
-$cType = $contactTypesSetup['contact_types'];
-// {{{ search_where($name, $search_where)
+// Navigation array
+$nav = array(
+        "Add Contact" => "edit_contact.phtml",
+        "Saved Reports" => "list_query.phtml",
+        "Compose Email" => "edit_autoresponse.phtml?id=1",
+        "List Contacts" => "list_contact.phtml",
+        "Contact Inquiry Fields" => "contact_inquiry.phtml",
+        "Report Builder" => "index.phtml",
+        "Preview Email" => "view_newsletter.phtml",);
 
-/**
-* Short description for function
-* 
-* Long description (if any) ...
-* 
-* @param string $name         Parameter description (if any) ...
-* @param string $search_where Parameter description (if any) ...
-* 
-* @return string Return description (if any) ...
-*/
-function search_where($name, $search_where)
-{
-    $out = '
-    <select name="'.$name.'">
-        <option value="1" '.( ( !isset( $search_type ) || $search_type == "0" ) ? 'selected' : '' ).'>Anywhere 
-        <option value="2" '.( ( $search_where == '1' ) ? 'selected' : '' ).'>Begining 
-        <option value="3" '.( ( $search_where == '2' ) ? 'selected' : '' ).'>Ending
-    </select>';
-    return $out;
-}
-// }}}
-// {{{ search_type($name, $search_type)
-
-/**
-* Short description for function
-* 
-* Long description (if any) ...
-* 
-* @param string $name        Parameter description (if any) ...
-* @param string $search_type Parameter description (if any) ...
-* 
-* @return string Return description (if any) ...
-*/
-function search_type($name, $search_type)
-{
-    $out = '
-    <select name="'.$name.'">
-        <option value="2" '.( ( !isset( $search_type ) || $search_type == '2' ) ? 'selected' : '' ).'>And 
-        <option value="3" '.( ( $search_type == '3' ) ? 'selected' : '' ).'>Or
-        <option value="4" '.( ( $search_type == '4' ) ? 'selected' : '' ).'>Not
-    </select>';
-    return $out;
-}
-// }}}
-// {{{ search_bool($name, $search_type)
 
-/**
-* Short description for function
-* 
-* Long description (if any) ...
-* 
-* @param string $name        Parameter description (if any) ...
-* @param string $search_type Parameter description (if any) ...
-* 
-* @return string Return description (if any) ...
-*/
-function search_bool($name, $search_type)
-{
-    $out = '
-    <select name="'.$name.'">
-        <option value="n" '.( !isset( $search_type ) ? 'selected' : '' ).'>Don\'t Care 
-        <option value="1" '.( ( $search_type == '1' ) ? 'selected' : '' ).'>Yes
-        <option value="0" '.( ( $search_type == '0' ) ? 'selected' : '' ).'>No
-    </select>';
-    return( $out );
-}
-// }}}
-// {{{ interest($field)
-
-/**
-* Short description for function
-* 
-* Long description (if any) ...
-* 
-* @param unknown $field Parameter description (if any) ...
-* 
-* @return boolean Return description (if any) ...
-*/
 function interest($field)
-{        
-    if (!is_array($GLOBALS['int_array'])) {
-        return false;
+{
+    global $interest2;
+    if( !is_array( $interest2 ) )
+    {
+        return( false );
     }
     echo "<table><tr>";
     $count = 0;
-    foreach ($GLOBALS['int_array'] as $key => $value) {
-        if ($count==0) {
-            echo "<td>";        
-        }
+    foreach($interest2 as $key=>$value)
+    {
+        if($count==0)
+            echo "<td>";
         echo "<input type=\"checkbox\" name=\"interest[]\" value=\"$key\"";
-        if (strstr($field, ":".$key.":")) {
-            echo " checked";                
-        }
-        echo ">$value<br>";        
-        if ($count==5) {
-            echo "</td><td>";        
-        }
-        if ($count==11) {
-            echo "</td>";        
-        }
-        $count++;        
-    }        
-    echo "</tr></table>";
-}
-/**
-* Get a group of select elements to represent a date
-*
-* @param string $M Name attribute of the month select list
-* @param string $D Name attribute of the day select list
-* @param string $Y Name attribute of the year select list
-* @param string $m Selected value of the month select list
-* @param string $d Selected value of the day select list
-* @param string $y Selected value of the year select list
-*                   
-* @return string Html string of group select lists
-* @access public
-*/
-function dateSelector($M, $D, $Y, array $m = null, array $d = null, array $y = null)
-{
-    //  Get a Select element
-    $month = new HTML_Select($M);
-    //  Get a Range of months jan-dec
-    $monthArray = array_flip(range(1, 12));
-    //  Make the keys and values the same
-    foreach ($monthArray as $i => &$j) {
-        $j = $i;
+        if(strstr($field,":".$key.":"))
+            echo " checked";
+        echo ">$value<br>";
+        if($count==5)
+            echo "</td><td>";
+        if($count==11)
+            echo "</td>";
+        $count++;
     }
-    $month->loadArray($monthArray);
-    if (is_null($m)) {
-        $month->setSelectedValues(array(date('m')));
-    } else {
-        $month->setSelectedValues($m);
-    }
-
-    //  Get a Select element
-    $day = new HTML_Select($D);
-    //  Get a Range of months jan-dec
-    $dayArray = array_flip(range(1, 31));
-    //  Make the keys and values the same
-    foreach ($dayArray as $i => &$j) {
-        $j = $i;
-    }
-    $day->loadArray($dayArray);
-    if (is_null($d)) {
-        $day->setSelectedValues(array(date('d')));
-    } else {
-        $day->setSelectedValues($d);
-    }
-
-    //  Get a Select element
-    $year = new HTML_Select($Y);
-    //  Get a Range of months jan-dec
-    $yearArray = array_flip(range(CONTACTS_FIRST_YEAR, date('Y')));
-    //  Make the keys and values the same
-    foreach ($yearArray as $i => &$j) {
-        $j = $i;
-    }
-    $year->loadArray($yearArray);
-    if (is_null($y)) {
-        $year->setSelectedValues(array(date('Y')));
-    } else {
-        $year->setSelectedValues($y);
-    }
-
-    return $month->toHtml() . $day->toHtml() . $year->toHtml();
+    echo "</tr></TABLE>";
 }
 
-// }}}
 // default query on create_date
-$c_date_from  = GLM_TOOLBOX::contact_date_entry("", "", "", "fc_month", "fc_day", "fc_year");
-$c_date_to    = GLM_TOOLBOX::contact_date_entry("", "", "", "tc_month", "tc_day", "tc_year");
-
-// The Following $DB_fields array is no longer used for the edit contact page
-// You must alter the class Toolkit_Contacts_Admin_EditContact 
-// The following is only used for the search form and the listing pages
-
-$primaryKey = $contactRoot->getItem('section', 'conf')
-    ->getItem('directive', 'primarykey')
-    ->getContent();
-/**
-* Description for define
-*/
-define("ID", $primaryKey);
-
-/**
-* Description for define
-*/
-define("MAILOK", "mail_ok");
-
-$sequence = $contactRoot->getItem('section', 'conf')
-    ->getItem('directive', 'sequence')
-    ->getContent();
-/**
-* Description for define
-*/
-define("SEQUENCE", $sequence);
-
-/**
-* Description for define
-*/
-define("WHERE", ID." IS NOT NULL");
-// $DB_fields are used for edit and updating contacts
-$DB_fields[] = array("name" => "id",            "title" => "id",            "type" => "hide");
-$DB_fields[] = array("name" => "create_date",   "title" => "Create Date",   "type" => "static");
-$DB_fields[] = array("name" => "fname",         "title" => "First Name",    "type" => "text");
-$DB_fields[] = array("name" => "lname",         "title" => "Last Name",     "type" => "text");
-if (TABLE == 'customer') {
-    $DB_fields[] = array("name" => "add1",       "title" => "Address",       "type" => "text");
-    $DB_fields[] = array("name" => "add2",      "title" => "Address 2",     "type" => "text");
-} else {
-    $DB_fields[] = array("name" => "company",       "title" => "Company Name",  "type" => "text");
-    $DB_fields[] = array("name" => "address",       "title" => "Address",       "type" => "text");
-    $DB_fields[] = array("name" => "address2",      "title" => "Address 2",     "type" => "text");
+$c_date_from  = contact_date_entry("","","","fc_month","fc_day","fc_year");
+$c_date_to  = contact_date_entry("","","","tc_month","tc_day","tc_year");
+/*  The following is for setting up the defines and arrays that are needed
+ *  based on which table ( customer or contact ) in use
+ *  formats for arrays
+ *  $DB_fields[] = array( name =>"{FIELD NAME}", title => "{FIELD TITLE}", type => "{FIELD TYPE}")
+ *  $fields["{FIELD_NAME}"] = "{FIELD TITLE}";
+ *
+ *  must have these defines
+ *  ID - The primary key
+ *  SEQUENCE - sequence name
+ *  WHERE - where clause
+ */
+if(TABLE==CUSTOMER_TABLE)
+{
+    define("ID","cust_id");
+    define("MAILOK","mail_ok");
+    define("SEQUENCE","custkey");
+    define("WHERE","fname != '-Guest-'");
+    // $DB_fields are used for edit and updating contacts
+    $DB_fields[] =  array( name => "cust_id",   title => "cust_id",     type => "hide");
+    $DB_fields[] =  array( name => "purch_date",title => "Last Purchase Date",  type => "static");
+    $DB_fields[] =  array( name => "access_date",title => "Last Access Date",type => "static");
+    $DB_fields[] =  array( name => "create_date",title => "Create Date",type => "static");
+    $DB_fields[] =  array( name => "fname",     title => "First Name",  type => "text");
+    $DB_fields[] =  array( name => "lname",     title => "Last Name",   type => "text");
+    $DB_fields[] =  array( name => "add1",      title => "Address 1",   type => "text");
+    $DB_fields[] =  array( name => "add2",      title => "Address 2",   type => "text");
+    $DB_fields[] =  array( name => "city",      title => "City",        type => "text");
+    $DB_fields[] =  array( name => "state",     title => "State",       type => "text");
+    $DB_fields[] =  array( name => "zip",       title => "Zip",         type => "text");
+    $DB_fields[] =  array( name => "email",     title => "Email",       type => "text");
+    $DB_fields[] =  array( name => "phone",     title => "Phone",       type => "text");
+    $DB_fields[] =  array( name => "fax",       title => "Fax",         type => "text");
+    $DB_fields[] =  array( name => "org",       title => "Org",         type => "text");
+    $DB_fields[] =  array( name => "referred_by",title => "Refered By", type => "text");
+    $DB_fields[] =  array( name => "mail_ok",   title => "Mail Ok?",    type => "radio");
+    // $fields are used for building the query page
+    foreach($DB_fields as $key=>$value){
+        if($value['type'] == "text")
+            $fields[$value['name']] = $value['title'];
+    }
+    // date query fields
+    $p_date_from = contact_date_entry("","","","fp_month","fp_day","fp_year");
+    $p_date_to = contact_date_entry("","","","tp_month","tp_day","tp_year");
+    $a_date_from  = contact_date_entry("","","","fa_month","fa_day","fa_year");
+    $a_date_to  = contact_date_entry("","","","ta_month","ta_day","ta_year");
 }
-$DB_fields[] = array("name" => "city",          "title" => "City",          "type" => "text");
-$DB_fields[] = array("name" => "state",         "title" => "State",         "type" => "state");
-$DB_fields[] = array("name" => "zip",           "title" => "Zip",           "type" => "text");
-$DB_fields[] = array("name" => "phone",         "title" => "Phone",         "type" => "text");
-$DB_fields[] = array("name" => "fax",           "title" => "Fax",           "type" => "text");
-$DB_fields[] = array("name" => "email",         "title" => "Email",         "type" => "text");
-$DB_fields[] = array("name" => "mail_ok",       "title" => "Mail Ok?",      "type" => "radio");
-$DB_fields[] = array("name" => "interest",      "title" => "Interest",      "type" => "interest");
-$DB_fields[] = array("name" => "contact_type", "title" => "Contact Type", "type" => "drop", "drop" => $cType);
-
-// $fields are used for building the query page
-foreach ($DB_fields as $key=>$value) {
-    if ($value['type'] == "text" || $value['type'] == "state") {
-        $fields[$value['name']] = $value['title'];
-    } elseif ( $value['type'] == "radio") {
-        $boolean[$value['name']] = $value['title'];
-    } elseif ( $value['type'] == "drop") {
-        $dropdowns[$value['name']] = array('title' => $value['title'], 'drop' => $value['drop']);
+else
+{
+    define("ID","id");
+    define("MAILOK","mail_ok");
+    define("SEQUENCE","contact_id_seq");
+    define("WHERE",ID." IS NOT NULL");
+    // $DB_fields are used for edit and updating contacts
+    $DB_fields[] =  array( name => "id",        title => "id",          type => "hide");
+    $DB_fields[] =  array( name => "create_date",title => "Create Date",type => "static");
+    $DB_fields[] =  array( name => "fname",     title => "First Name",  type => "text");
+    $DB_fields[] =  array( name => "lname",     title => "Last Name",   type => "text");
+    $DB_fields[] =  array( name => "address",   title => "Address",     type => "text");
+    $DB_fields[] =  array( name => "city",      title => "City",        type => "text");
+    $DB_fields[] =  array( name => "state",     title => "State",       type => "text");
+    $DB_fields[] =  array( name => "zip",       title => "Zip",         type => "text");
+    $DB_fields[] =  array( name => "phone",     title => "Phone",       type => "text");
+    $DB_fields[] =  array( name => "email",     title => "Email",       type => "text");
+    $DB_fields[] =  array( name => "arrive_date",title => "Arrival Date",type => "date");
+    $DB_fields[] =  array( name => "depart_date",title => "Departure Date",type => "date");
+    $DB_fields[] =  array( name => "unit_size", title => "Unit Size",   type => "array_drop",drop=>$unit_size2);
+    $DB_fields[] =  array( name => "referred_by",title => "Referred By",type => "array_drop",drop=>$referred_by2);
+    $DB_fields[] =  array( name => "other",     title => "Referred By Other",type => "text");
+    $DB_fields[] =  array( name => "interest",  title => "Interest", type=> "interest");
+    $DB_fields[] =  array( name => "questions", title => "Additional Questions",type => "desc");
+    $DB_fields[] =  array( name => "mail_ok",   title => "Mail Ok?",    type => "radio");
+    $cType = array(
+        ''=>'',
+        1 => 'Reservation Request',
+        2 => 'E-News',
+        3 => 'Golf Package'
+    );
+    $DB_fields[] = array("name" => "contact_type",  "title" => "Contact Type", "type" => "drop", "drop" => $cType);
+    //$DB_fields[] =    array( name => "contestant",title => "Contestant?", type => "radio");
+
+    // $fields are used for building the query page
+    foreach($DB_fields as $key=>$value){
+        if ($value['type'] == "text" || $value['type'] == "array_drop") {
+            $fields[$value['name']] = $value['title'];
+        } elseif ( $value['type'] == "drop") {
+            $dropdowns[$value['name']] = array('title' => $value['title'], 'drop' => $value['drop']);
+        }
     }
+    $fields["questions"] = "Questions";
+    $p_date_from = contact_date_entry("","","","fp_month","fp_day","fp_year");
+    $p_date_to = contact_date_entry("","","","tp_month","tp_day","tp_year");
+    $a_date_from  = contact_date_entry("","","","fa_month","fa_day","fa_year");
+    $a_date_to  = contact_date_entry("","","","ta_month","ta_day","ta_year");
 }
-
-$data['bailout'] .= "You are receiving this message because you have expressed an interest in ";
-$data['bailout'] .= "receiving specials and information from ".SITENAME.". If you do not ";
-$data['bailout'] .= "wish to receive future items of this nature, please reply to this e-mail ";
-$data['bailout'] .= "with the word \"CANCEL\" on the subject line. You will then be removed ";
-$data['bailout'] .= "from future mailings.<br>";
-$data['bailout'] .= "<a href=\"mailto:".OWNER_EMAIL."?subject=CANCEL\">".OWNER_EMAIL."</a><br>";
 ?>
diff --git a/admin/Contact/convert-inq.php b/admin/Contact/convert-inq.php
new file mode 100644 (file)
index 0000000..eb055fe
--- /dev/null
@@ -0,0 +1,86 @@
+<?php
+require_once '../../setup.phtml';
+require_once 'contact_setup.inc';
+require_once BASE.'classes/class_db.inc';
+$interest['0'] = "Golf Trip";
+$interest['1'] = "Big 4 Golf Package";
+$interest['2'] = "Ski Trip";
+$interest['3'] = "Family vacation";
+$interest['4'] = "Family Reunion";
+$interest['5'] = "Romantic Getaway";
+$interest['6'] = "Honeymoon/Anniversary";
+$interest['7'] = "Soccer Weekend";
+$interest['8'] = "Wedding Group";
+$interest['9'] = "Biking";
+$interest['10'] = "Fishing";
+$interest['11'] = "Tennis";
+$interest['12'] = "Business";
+$interest['13'] = "Fall Color Tour";
+$interest['14'] = "Morel Mushrooms";
+$interest['15'] = "Spring/Fall Relaxing vacation";
+$interest['16'] = "Empty Nester Getaway";
+$interest['17'] = "Real Estate";
+$interest['18'] = "Senior Packages";
+$interest['19'] = "Scrapbooking";
+$DB =& new GLM_DB();
+$intQuery = "select id,header from contact_inq order by pos;";
+if( $iRes = $DB->db_exec( $intQuery ) )
+{
+    while( $iRow = pg_fetch_object( $iRes ) )
+    {
+        $tKey = array_search( $iRow->header, $interest );
+        $intArray["$tKey"] = (string)$iRow->id;
+        $intArray["$iRow->header"] = (string)$iRow->id;
+    }
+}
+//echo '<pre>';
+//print_r( $intArray );
+//echo '</pre>';
+$query = "select id,interest from contact where interest != '' and interest is not null order by id;";
+$DB->db_exec("BEGIN WORK;");
+if( $res = $DB->db_exec( $query ) )
+{
+    while( $row = pg_fetch_object( $res ) )
+    {
+        unset( $mArr );
+        unset( $fkey );
+        unset( $match );
+        $mArr = explode( ':',preg_replace("%:$%","",$row->interest) );
+        if( is_array( $mArr ) )
+        {
+            foreach( $mArr as $key => $val )
+            {
+                $val = trim( $val );
+                $fkey = array_search( $val, $interest, true );
+                if( is_numeric( $val ) && $interest[$val] )
+                {
+                    echo '<p>matched '.$interest[$val].'</p>';
+                    $mArr[$key] = $intArray[$val];
+                }
+                elseif( $fkey == '0' )
+                {
+                    echo '<p>matched -> null val '.$interest[$fkey].'</p>';
+                    $mArr[$key] = $intArray[$interest[$fkey]];
+                }
+                elseif( $fkey !== false )
+                {
+                    echo '<p>matched '.$interest[$fkey].'</p>';
+                    $mArr[$key] = $intArray[$fkey];
+                }
+                else
+                {
+                    echo '<p>not matched ';
+                    var_dump( $val );
+                    var_dump( $interest[0] );
+                    echo '</p>';
+                }
+            }
+        }
+        $newQuery = "update contact set interest = ':".implode(":",$mArr).":' where id = ".$row->id;
+        $DB->db_exec($newQuery);
+        echo $newQuery;
+        //$dObj[] = $row;
+    }
+}
+$DB->db_exec("ABORT WORK;");
+?>
diff --git a/admin/Contact/createImportComm.php b/admin/Contact/createImportComm.php
new file mode 100644 (file)
index 0000000..48c4cc5
--- /dev/null
@@ -0,0 +1,80 @@
+<?php
+require_once '../../setup.phtml';
+$unit_size2[6] = "5 bedroom &amp; loft, 3.5 bathroom (sleeps 12)";
+$unit_size2[0] = "3 bedroom &amp; loft, 2 bathroom (sleeps 8-10)";
+$unit_size2[1] = "2 bedroom &amp; loft, 2 bathroom (sleeps 6-8)";
+$unit_size2[2] = "2 bedroom, 2 bathroom + (sleeps 4-6)";
+$unit_size2[3] = "2 bedroom, 2 bathroom (sleeps 4-6)";
+$unit_size2[4] = "2 bedroom, 1 bathroom (sleeps 4-6)";
+$unit_size2[5] = "1 bedroom, 1 bathroom (sleeps 2-4)";
+$referred_by2[0] = "AAA";
+$referred_by2[1] = "Big Fore";
+$referred_by2[2] = "Chamber/Visitors Bureau";
+$referred_by2[3] = "Detroit Free Press";
+$referred_by2[4] = "Friends/Relatives";
+$referred_by2[5] = "Great Rentals Web Site";
+$referred_by2[6] = "Internet";
+$referred_by2[7] = "Nubs Nob";
+$referred_by2[8] = "Other";
+$referred_by2[9] = "Past Guest";
+$dbh = Toolkit_Database::getInstance();
+$sql = "
+SELECT header
+  FROM contact_inq
+ WHERE id = :id";
+$getContactInq = $dbh->prepare($sql);
+
+$sql = "
+  SELECT *
+    FROM contact
+   WHERE email != ''
+     AND mail_ok = 't'";
+
+try {
+    $stmt = $dbh->query($sql);
+    while ($row = $stmt->fetch(PDO::FETCH_ASSOC)) {
+        $cInterest = explode(":", preg_replace("%^:|:$%", "", $row['interest']));
+        //echo '<pre>'.print_r($row, true).'</pre>';
+        //echo '<pre>'.print_r($cInterest, true).'</pre>';
+        if (!empty($cInterest)) {
+            foreach ($cInterest as $contact_inq) {
+                if (ctype_digit($contact_inq)) {
+                    $getContactInq->bindParam(":id", $contact_inq, PDO::PARAM_INT);
+                    $getContactInq->execute();
+                    $interest[] = $getContactInq->fetchColumn();
+                } else {
+                    $interest[] = $contact_inq;
+                }
+            }
+            $row['interest']  = implode("|", $interest);
+            $row['unit_size'] = ($row['unit_size']) ? $unit_size2[$row['unit_size']]: null;
+            if ($row['referred_by']) {
+                if ($row['referred_by'] == '8') {
+                    $row['referred_by'] = $row['other'];
+                } else {
+                    $row['referred_by'] = $referred_by2[$row['referred_by']];
+                }
+            }
+            $row['other'] = null;
+        }
+        unset($interest);
+        $data[] = $row;
+        //echo '<pre>'.print_r($row, true).'</pre>';
+        if (!$firstRow) {
+            $firstRow = array_keys($row);
+        }
+    }
+} catch(PDOException $e) {
+    die($e->getMessage());
+}
+echo '<p>write to filetest.csv</p>';
+$fp = fopen("filetest.csv", 'w');
+$string = '"'.implode('","', $firstRow).'"'."\n";
+fwrite($fp, $string, strlen($string));
+foreach ($data as $row) {
+    $string = '"'.implode('","', $row).'"'."\n";
+    fwrite($fp, $string, strlen($string));
+}
+fclose($fp);
+echo '<p>done</p>';
+?>
index a7c5ad6..b3c7133 100755 (executable)
@@ -1,16 +1,12 @@
 <?php
-//$Id: del_query.phtml,v 1.2 2009/05/20 20:27:27 matrix Exp $
-include "../../setup.phtml";
-include "contact_setup.inc";
+require_once '../../setup.phtml';
+require_once 'contact_setup.inc';
+$qs = "DELETE
+       FROM     query_db
+       WHERE    id = $id";
 
-$qs = "DELETE 
-          FROM         query_db 
-          WHERE        id = $id";
-
-if(!$DB->db_auto_exec($qs)) {
-    GLM_TOOLBOX::html_error(DB_ERROR_MSG.$qs,1);
-}
-GLM_TOOLBOX::html_header("Admin","Deleted","");
+if(!db_auto_exec($qs)) html_error(DB_ERROR_MSG.$qs,1);
+html_header("Admin","Deleted","");
 ?>
 <script lang="javascript">
 document.onload=window.opener.location.reload(1);
index 5dfc324..b8624b9 100755 (executable)
 <?php
+require_once '../../setup.phtml';
+require_once 'contact_setup.inc';
+/*****************************************************************************
+* File download
+* Author: Steve Sutton
+*
+* pass $query_string
+*
+*****************************************************************************/
+if(!$dbd = db_connect())
+    die("Warning: FATAL! No Connection to DB_SERVER");
 
-/**
- * download.phtml
- *
- * gives admin user ability to download a csv file for import into
- * another source.  Forces the save as dialog box.
- * tested on ie6 ie7 and firefox.  $query_string is passed through to
- * this page by a form.
- *
- * PHP versions 4 and 5
- *
- * @category  Toolkit
- * @package   PackageName
- * @author    Steve Sutton <steve@gaslightmedia.com>
- * @copyright 2009 Gaslight Media
- * @license   Gaslight Media
- * @version   CVS: $Id: download.phtml,v 1.3 2009/08/05 15:15:00 matrix Exp $
- * @link      <>
- */
+$delimiter = str_replace("comma",",",$delimiter);
+$delimiter = str_replace("tab","\t",$delimiter);
+$delimiter = str_replace("csv",",",$delimiter);
+$delimiter = str_replace("pipe","|",$delimiter);
 
-/**
- * main site setup config file
- */
-require_once "../../setup.phtml";
-
-/**
- * main contact setup file
- */
-require_once "contact_setup.inc";
-
-// check that the site sending this request is the same
-// as the base_url
-$base = str_replace("admin/Contact/list_contact.phtml",
-    "",
-    $_SERVER['HTTP_REFERER']
-);
-if ($base != MEDIA_BASE_URL) {
-    // redirect them
-    header("Location: index.phtml");
-}
-
-$delimiter = str_replace("comma", ",", $delimiter);
-$delimiter = str_replace("tab", "\t", $delimiter);
-$delimiter = str_replace("csv", ",", $delimiter);
-$delimiter = str_replace("pipe", "|", $delimiter);
-
-if ($_REQUEST['query_string']) {
+if($query_string) {
     /* Remove the old reports if they exsists */
-    if (is_file("report.csv")) {
-        unlink("report.csv");
-    }
-    if (is_file("report.tar.gz")) {
-        unlink("report.tar.gz");
-    }
-    if (is_file("report.zip")) {
-        unlink("report.zip");
-    }
-
-    if (!$fp = fopen("report.csv", "w")) {
-        html_error("Cant open report", 0);
-    }
-    $query_string = stripslashes($_REQUEST['query_string']);
-    $query_string = str_replace("SELECT " . ID . ",", "SELECT ", $query_string);
-    $query_string = str_replace(" FROM ",
-        ",contact_type,interest FROM ",
-        $query_string);
+        if(is_file("report.csv"))
+            unlink("report.csv");
+        if(is_file("report.tar.gz"))
+            unlink("report.tar.gz");
+        if(is_file("report.zip"))
+            unlink("report.zip");
 
-    $dbh = Toolkit_Database::getInstance();
+    if(!$fp = fopen("report.csv","w"))
+        html_error("Cant open report",0);
+    $query_string = stripslashes($query_string);
+    $query_string = str_replace("SELECT ".ID.",","SELECT ",$query_string);
 
-    $res = $dbh->prepare($query_string);
-    $res->execute();
-    $total = $res->rowCount();
-       $headers =array();
-    $headerString = '';
-    if ($total > 0) {
-        for ($i = 0; $i < $total; ++$i) {
+    if(!$res = pg_Exec($dbd,$query_string))
+        echo "failed to ->".$query_string;
+    if(pg_numrows($res)>0) {
+        for($i=0;$i<pg_numrows($res);$i++) {
             $result_string = "";
-            $row           = $res->fetch(PDO::FETCH_ASSOC);
-            $cConTypes     = array();
-            foreach ($row as $fieldName => $value) {
-                               if ($i == 0) {
-                    if (in_array($fieldName, array('contact_type', 'interest'))) {
-                        switch ($fieldName) {
-                        case 'contact_type' :
-                            foreach ($cType as $contactTypeName) {
-                                $headers[] = $contactTypeName;
-                            }
-                            break;
-                        case 'interest' :
-                            foreach ($int_array as $interesName) {
-                                $headers[] = $interesName;
-                            }
-                            break;
-                        }
-                    } else {
-                        $headers[] = $fieldName;
-                    }
-                }
-                // this section creates the contact_type part of the rows
-                // need to make this one a set number of fields for the contact
-                // types needed for all contacts
-                // so create count($cType) number of columns for this one field
-                if ($fieldName == 'contact_type') {
-                    $cConTypes = array();
-                    $st        = array();
-                    if (strstr($value, ":")) {
-                        $cConTypesStr = preg_replace("/^:|:$/",
-                            "",
-                            $value
-                        );
-                        $cConTypes    = explode(":", $cConTypesStr);
-                    }
-                    if (is_array($cType) && !empty($cType)) {
-                        foreach ($cType as $contactTypeId => $contactTypeName) {
-                            $st[]
-                            = (   is_array($cConTypes)
-                               && in_array($contactTypeId, $cConTypes))
-                                ? $contactTypeName
-                                : '';
-                            }
-                        $result_string .= implode("|", $st);
-                    }
-                    $result_string .= '|';
-                }
-                // this section creates the interest part of the rows
-                // need to make this one a set number of fields for the contact
-                // types needed for all contacts
-                // so create count($int_array) number of columns for this one field
-                else if ($fieldName == 'interest') {
-                    $iIntTypes = array();
-                    $st        = array();
-                    if (strstr($value, ":")) {
-                        $iIntTypesStr = preg_replace("/^:|:$/",
-                            "",
-                            $value);
-                        $iIntTypes    = explode(":", $iIntTypesStr);
-                    }
-                    if (   is_array($int_array)
-                        && !empty($int_array)
-                        ) {
-                        foreach ($int_array as $interestId => $interestName) {
-                            $st[]
-                            = (   is_array($iIntTypes)
-                               && in_array($interestId, $iIntTypes))
-                                ? $interestName
-                                : '';
-                            }
-                        $result_string .= implode("|", $st);
-                    }
-                    $result_string .= '|';
-                }
-                // this one deals with al the other fields
-                else if (!in_array($fieldName, array('contact_type', 'interest'))) {
-                    $result_string .= $value.'|';
-                }
-            }
-            $result_string = substr($result_string, 0, strlen($result_string)-1);
-            if ($i == 0) {
-                if ($csv) {
-                    $headerString = '"'.implode('","', $headers)."\"\n";
-                } else {
-                    $headerString = implode($delimiter, $headers)."\n";
-                }
-                fputs($fp, $headerString, strlen($headerString));
+            $row = pg_fetch_array($res,$i,PGSQL_ASSOC);
+            $contactedby = pg_fieldnum($res,'contactedby');
+            for($b=0;$b<count($row);$b++) {
+                $result_string .= pg_result($res,$i,$b)."|";
             }
-            if ($csv) {
-                $result_string = str_replace("|", "\",\"", $result_string);
+            $result_string = substr($result_string,0,strlen($result_string)-1);
+            if($csv) {
+                $result_string = str_replace("|","\",\"",$result_string);
                 $result_string = "\"".$result_string."\"\n";
-            } else {
-                $result_string = str_replace("|", $delimiter, $result_string);
+                //echo $result_string;
+            }
+            else {
+                $result_string = str_replace("|",$delimiter,$result_string);
                 $result_string = $result_string."\n";
             }
-            fputs($fp, $result_string, strlen($result_string));
+        fputs($fp,$result_string,strlen($result_string));
         }
     }
-    if (!fclose($fp)) {
-        html_error("Cant close filepointer", 0);
-    }
-    chmod("report.csv", 0660);
-    $output = "report.csv";
+        if(!fclose($fp))
+            html_error("Cant close filepointer",0);
+        chmod("report.csv",0660);
+        $output = "report.csv";
 
-    if ($file == "gz") {
-        $output = "report.tar.gz";
-        exec("tar -czvf report.tar.gz report.csv 2>&1", $result_array, $result);
-        if ($result != 0) {
-            echo $result_array[0];
-            exit;
+        if($file == "gz") {
+            $output = "report.tar.gz";
+            exec("tar -czvf report.tar.gz report.csv 2>&1",$result_array,$result);
+            if($result != 0){
+                echo $result_array[0];
+                exit;
+            }
+            chmod("report.tar.gz",0660);
         }
-        chmod("report.tar.gz", 0660);
-    }
 
-    if ($file == "zip") {
-        $output = "report.zip";
-        exec("zip report report.csv 2>&1", $result_array, $result);
-        if ($result != 0) {
-            echo $result_array[0];
-            exit;
+        if($file == "zip") {
+            $output = "report.zip";
+            exec("zip report report.csv 2>&1",$result_array,$result);
+            if($result != 0){
+                echo $result_array[0];
+                exit;
+            }
+            chmod("report.zip",0660);
         }
-        chmod("report.zip", 0660);
-    }
-    if ($file == "rpt") {
-        $output = "report.csv";
-        chmod("report.csv", 0660);
-    }
-    if (ini_get('zlib.output_compression')) {
-        ini_set('zlib.output_compression', 'Off');
-    }
+        if($file == "rpt") {
+            $output = "report.csv";
+            chmod("report.csv",0660);
+        }
+if(ini_get('zlib.output_compression'))
+{
+     ini_set('zlib.output_compression', 'Off');
+}
     header("Content-Type: application/force-download\n");
     /* Correction for the stupid MSIE thing */
-    if (strstr(getenv('HTTP_USER_AGENT'), 'MSIE')) {
+    if(strstr(getenv('HTTP_USER_AGENT'), 'MSIE'))
+        {
         header("Content-Disposition: inline; filename=\"$output\"");
-    } else {
+        }
+    else
+        {
         header("Content-Disposition: attachment; filename=\"$output\"");
-    }
+        }
     //header("Location: $output");
-    $fn = fopen($output, "r");
+    $fn=fopen($output , "r");
     fpassthru($fn);
     @fclose($fn);
     exit();
-} else {
+}
+else {
     header("Location: list_contact.phtml");
 }
 ?>
index e9c927f..3ec07ea 100755 (executable)
@@ -1,36 +1,31 @@
 <?php
-//$Id: edit_autoresponse.phtml,v 1.12 2010/08/11 18:16:41 matrix Exp $
-include "../../setup.phtml";
-include "contact_setup.inc";
-GLM_TOOLBOX::top("AutoReponse for Newsletter", HELP_BASE."response.phtml?key=edit+section");
-
-GLM_TOOLBOX::html_nav_table($nav, $navWidth);
-
-if ($id) {
-       $qs = "SELECT   id,subject,response
-               FROM    news_response
-               WHERE   id = $id";
-
-       if (!$res = $DB->db_exec($qs)) {
-               GLM_TOOLBOX::html_error(DB_ERROR_MSG.__LINE__, 1);
-       }
-       $row = $DB->db_fetch_array($res,0, PGSQL_ASSOC);
-} else {
-       $row['subject']  = '';
-       $row['response'] = '';
-}
+require_once '../../setup.phtml';
+require_once 'contact_setup.inc';
+
+$id = $_GET['id'];
+
+top("AutoReponse for Newsletter", HELP_BASE."response.phtml?key=edit+section");
+
+
+html_nav_table($nav,3);
+if(!$dbd = db_connect(CONN_STR)) html_error(DB_ERROR_MSG, 1);
+
+$qs =  "SET DATESTYLE TO 'SQL, NONEUROPEAN'";
+
+if(!db_exec($dbd, $qs))
+    html_error(DB_ERROR_MSG, 1);
+
+$qs = "SELECT   *
+       FROM     news_response
+       WHERE    id = $id";
+
+if(!$res = db_exec($dbd, $qs)) html_error(DB_ERROR_MSG,1);
 ?>
-<script src=<?php echo MEDIA_BASE_URL."admin/verify.js";?>></script>
-<script type="text/javascript" src="<?php echo MEDIA_APP_BASE_URL;?>ckeditor/current/ckeditor.js"></script>
-<script language="javascript">
+<script type="text/javascript" src="<?php echo GLM_APP_BASE_URL;?>libjs/jquery-1.3.2.min.js"></script>
+<script type="text/javascript" src="<?php echo GLM_APP_BASE_URL;?>ckeditor/current/ckeditor.js"></script>
+<script type="text/javascript" src=<?echo URL_BASE."admin/verify.js"?>></script>
+<script type="text/javascript">
 <!--// closed source
-function mySubmit(o){
-       o.response.optional = true;
-       o.response.r = 'Description';
-       o.subject.optional = false;
-       o.subject.r = 'Subject';
-       return(verify(o))
-}
 var Newsletter =
 {
     init: function()
@@ -46,8 +41,8 @@ var Newsletter =
                         height : 400,
                         filebrowserImageBrowseUrl : '../../Toolkit/CKImages/browser.php?folder=1',
                         filebrowserImageUploadUrl : '../../Toolkit/CKImages/controller.php?command=Upload',
-                                               filebrowserImageWindowWidth : '760',
-                                               filebrowserImageWindowHeight : '500'
+                        filebrowserImageWindowWidth : '760',
+                        filebrowserImageWindowHeight : '500'
                     });
             }
         }
@@ -58,45 +53,203 @@ $(document).ready(Newsletter.init);
 
 //-->
 </script>
-<form id="form1" name="form1" enctype="multipart/form-data" action="update_autoresponse.phtml" method="POST">
-<table id="admin-edit-table">
+<form enctype="multipart/form-data" action="update_autoresponse.phtml" method="POST">
 <?
-foreach ($row as $key => $value) {
-       switch ($key) {
+echo '<table id="admin-edit-table">';
+for($i = 0; $i < db_numrows($res); $i++) {
+    $row = db_fetch_array($res,$i, PGSQL_ASSOC);
+
+    if(!$row[id])
+        html_error(DB_ERROR_MSG,1);
 
-    case "id":
-        echo "<input type=\"hidden\" name=\"id\" value=\"$value\">";
+    foreach($row as $key=>$value) {
+        switch($key) {
+
+        case "id":
+            echo "<input type=\"hidden\" name=\"id\" value=\"$value\">";
         break;
 
-    case "subject":
-        echo "<tr><td class=\"navtd\" align=\"right\">Subject:</td>";
-        GLM_TOOLBOX::text_box("subject", $value);
-        echo "</tr>";
+        case "subject":
+            echo "<tr><td class=\"navtd\" align=\"right\">Subject:</td>";
+            text_box("subject",$value);
+            echo "</tr>";
         break;
 
-    case "response":
-        echo "<tr><td class=\"navtd\" align=\"right\">Response:</td>";
-        echo '<td><textarea name="response" id="response" cols="60" rows="60">'.$value.'</textarea></td>';
-        echo "</tr>";
+        case "coupon_link":
+            echo "<td class=\"navtd\" align=\"right\">Coupon Link Address:</td>\n";
+            text_box("coupon_link",$value);
         break;
 
-    default:
-    break;
-       }
-}
-echo '<tr><td></td><td nowrap="nowrap">';
-if ($id) {
-       ?>
-    <input type="submit" name="Command" value="Update">
-    <?php
-} else {
-       ?>
-    <input type="submit" name="Command" value="Insert">
-    <?php
+        case "response":
+            echo "<tr><td class=\"navtd\" align=\"right\">Response:</td>";
+            echo '<td align="left"><textarea id="response" name="response">'.htmlspecialchars($value).'</textarea></td>';
+            echo "</tr>";
+            echo "<tr><td>&nbsp;</td><td>NOTE: Insert COUPON IMAGE1 IMAGE2 IMAGE3 etc. in the body of
+                your text where you want the images to appear.</td></tr>";
+        break;
+
+        case "image":
+        case "image2":
+        case "image3":
+        case "coupon":
+        break;
+
+        default:
+        break;
+        }
+    }
 }
-echo '
+
+     if ($row["coupon"] != "")
+      {
+        echo "<TR>"
+              ."<TD>&nbsp;</TD>"
+              ."<TD>"
+                ."<BR>"
+                ."<TABLE ALIGN=LEFT border=2 cellpadding=0 cellspacing=0><TD><IMG SRC=\"".THUMB."$row[coupon]\" ALIGN=LEFT HSPACE=0 VSPACE=0></TD></TABLE>"
+                ."<BR CLEAR=ALL><BR>"
+                ."<TABLE border=0 CELLPADDING=4 WIDTH=300><TR><TD>"
+                ."$FT1 This is the current coupon attached to this newsletter."
+                ."To change the coupon, select a new one by clicking the browse button below."
+                ."To delete the coupon without uploading a new one, select "
+                ."<B>Yes</B> below and click the <B>Update Category button</B>. In addition,
+                if you'd like readers to be able to click the coupon to go to a site, enter
+                the address into &quot;Coupon Link Address&quot;."
+                ."</TD></TR></TABLE>"
+                ."<P>"
+              ."</FONT>"
+              ."$TDFT Delete Coupon? &nbsp; Yes </FONT>"
+              ."<INPUT TYPE=RADIO NAME=\"delcoupon\" VALUE=\"TRUE\"> &nbsp; "
+              ."$TDFT No </FONT>"
+              ."<INPUT TYPE=RADIO NAME=\"delcoupon\" VALUE=\"FALSE\" CHECKED><BR>"
+            ."</TD>"
+          ."</TR>";
+      }
+
+?>
+<tr>
+ <td class="navtd" align="right">Coupon:</td>
+ <td align="left"><input type="file" name="coupon"></td>
+ <input type="hidden" name="oldcoupon" value="<?=$row[coupon]?>">
+</tr>
+
+<?
+
+
+
+
+
+   if ($row["image"] != "")
+      {
+        echo "<TR>"
+              ."<TD>&nbsp;</TD>"
+              ."<TD>"
+                ."<BR>"
+                ."<TABLE ALIGN=LEFT border=2 cellpadding=0 cellspacing=0><TD><IMG SRC=\"".THUMB."$row[image]\" ALIGN=LEFT HSPACE=0 VSPACE=0></TD></TABLE>"
+                ."<BR CLEAR=ALL><BR>"
+                ."<TABLE border=0 CELLPADDING=4 WIDTH=300><TR><TD>"
+                ."$FT1 This is the current image attached to this newsletter."
+                ."To change the image, select a new one by clicking the browse button below."
+                ."To delete the image without uploading a new one, select "
+                ."<B>Yes</B> below and click the <B>Update Category button</B>."
+                ."</TD></TR></TABLE>"
+                ."<P>"
+              ."</FONT>"
+              ."$TDFT Delete Item Image? &nbsp; Yes </FONT>"
+              ."<INPUT TYPE=RADIO NAME=\"delimage\" VALUE=\"TRUE\"> &nbsp; "
+              ."$TDFT No </FONT>"
+              ."<INPUT TYPE=RADIO NAME=\"delimage\" VALUE=\"FALSE\" CHECKED><BR>"
+            ."</TD>"
+          ."</TR>";
+      }
+
+?>
+<tr>
+ <td class="navtd" align="right">IMAGE1:</td>
+ <td align="left"><input type="file" name="image"></td>
+ <input type="hidden" name="oldimage" value="<?=$row[image]?>">
+</tr>
+<tr>
+ <td class="navtd" align="right">Image1 Link:</td>
+ <td align="left"><input type="text" name="image_link"  value="<?=$row[image_link]?>" size="55"></td>
+</tr>
+<?
+    if ($row["image2"] != "")
+      {
+        echo "<TR>"
+              ."<TD>&nbsp;</TD>"
+              ."<TD>"
+                ."<BR>"
+                ."<TABLE ALIGN=LEFT border=2 cellpadding=0 cellspacing=0><TD><IMG SRC=\"".THUMB."$row[image2]\" ALIGN=LEFT HSPACE=0 VSPACE=0></TD></TABLE>"
+                ."<BR CLEAR=ALL><BR>"
+                ."<TABLE border=0 CELLPADDING=4 WIDTH=300><TR><TD>"
+                ."$FT1 This is the second image attached to this newsletter."
+                ."To change the image, select a new one by clicking the browse button below."
+                ."To delete the image without uploading a new one, select "
+                ."<B>Yes</B> below and click the <B>Update Category button</B>."
+                ."</TD></TR></TABLE>"
+                ."<P>"
+              ."</FONT>"
+              ."$TDFT Delete Item Image? &nbsp; Yes </FONT>"
+              ."<INPUT TYPE=RADIO NAME=\"delimage2\" VALUE=\"TRUE\"> &nbsp; "
+              ."$TDFT No </FONT>"
+              ."<INPUT TYPE=RADIO NAME=\"delimage2\" VALUE=\"FALSE\" CHECKED><BR>"
+            ."</TD>"
+          ."</TR>";
+      }
+
+?>
+<tr>
+ <td class="navtd" align="right">IMAGE2:</td>
+ <td align="left"><input type="file" name="image2"></td>
+ <input type="hidden" name="oldimage2" value="<?=$row[image2]?>">
+</tr>
+<tr>
+ <td class="navtd" align="right">Image2 Link:</td>
+ <td align="left"><input type="text" name="image2_link" value="<?=$row[image2_link]?>"  size="55"></td>
+</tr>
+<?
+    if ($row["image3"] != "")
+      {
+        echo "<TR>"
+              ."<TD>&nbsp;</TD>"
+              ."<TD>"
+                ."<BR>"
+                ."<TABLE ALIGN=LEFT border=2 cellpadding=0 cellspacing=0><TD><IMG SRC=\"".THUMB."$row[image3]\" ALIGN=LEFT HSPACE=0 VSPACE=0></TD></TABLE>"
+                ."<BR CLEAR=ALL><BR>"
+                ."<TABLE border=0 CELLPADDING=4 WIDTH=300><TR><TD>"
+                ."$FT1 This is the third image attached to this newsletter."
+                ."To change the image, select a new one by clicking the browse button below."
+                ."To delete the image without uploading a new one, select "
+                ."<B>Yes</B> below and click the <B>Update Category button</B>."
+                ."</TD></TR></TABLE>"
+                ."<P>"
+              ."</FONT>"
+              ."$TDFT Delete Item Image? &nbsp; Yes </FONT>"
+              ."<INPUT TYPE=RADIO NAME=\"delimage3\" VALUE=\"TRUE\"> &nbsp; "
+              ."$TDFT No </FONT>"
+              ."<INPUT TYPE=RADIO NAME=\"delimage3\" VALUE=\"FALSE\" CHECKED><BR>"
+            ."</TD>"
+          ."</TR>";
+      }
+
+?>
+<tr>
+ <td class="navtd" align="right">IMAGE3:</td>
+ <td align="left"><input type="file" name="image3"></td>
+ <input type="hidden" name="oldimage3" value="<?=$row[image3]?>">
+</tr>
+<tr>
+ <td class="navtd" align="right">Image3 Link:</td>
+ <td align="left"><input type="text" name="image3_link" value="<?=$row[image3_link]?>" size="55"></td>
+</tr>
+<tr><td></td><td NOWRAP>
+<input type="submit" name="Command" value="Update">
 </td></tr>
 </table>
-</form>';
-GLM_TOOLBOX::footer();
+</form>
+<?
+footer();
 ?>
+
+
index 01a7f2f..892f12b 100644 (file)
@@ -1,8 +1,8 @@
 <?php
 require_once '../../setup.phtml';
-include "contact_setup.inc";
+require_once 'contact_setup.inc';
 $form = new Toolkit_Contacts_Admin_EditContact(
-    Toolkit_Database::getInstance(), 
+    Toolkit_Database::getInstance(),
     'edit_contact'
 );
 $form->setConfig($contactRoot);
diff --git a/admin/Contact/edit_contact.phtml b/admin/Contact/edit_contact.phtml
new file mode 100755 (executable)
index 0000000..55d3775
--- /dev/null
@@ -0,0 +1,204 @@
+<?php
+//$Id: edit_contact.phtml,v 1.1.1.1 2008/07/08 15:02:13 jmeek Exp $
+require_once '../../setup.phtml';
+require_once 'contact_setup.inc';
+
+if(!$dbd = db_connect()) html_error(DB_ERROR_MSG, 1);
+
+if($id) {                   // If there's $id then editing
+    $qs = "SET DATESTYLE TO 'SQL,".DATEFORMAT."';";
+    $qs .= "SELECT ";
+    for($i=0;$i<count($DB_fields);$i++) {
+        $qs .= $DB_fields[$i][name];
+        if($i != count($DB_fields)-1)
+            $qs .= ",";
+    }
+    $qs .= " FROM   ".TABLE."
+             WHERE  ".ID." = $id";
+
+    if(!$res = db_exec($dbd, $qs))
+        html_error(DB_ERROR_MSG.$qs,0);
+    if(db_numrows($res)>0){
+        $row = db_fetch_array($res,0, PGSQL_ASSOC);
+    }
+    else{
+        die("No such record");
+    }
+}
+else {                              // else new entry
+    // Grab the array of name from $DB_fields and stick it into $row
+    // Any default values must be placed inside this loop
+    $row = array();
+    for($i=0;$i<count($DB_fields);$i++) {
+        if($DB_fields[$i][name] == "submitdate"){
+            $row[$DB_fields[$i][name]] = date("m/d/Y H:i:s T");
+        }
+        else{
+            $row[$DB_fields[$i][name]] = "";
+        }
+        $row['mail_ok'] = 't';
+    }
+}
+
+top("Updatable Listings (Add/Edit)", "help/contact.phtml?key=Edit");
+
+html_nav_table($nav, 3);
+?>
+
+<form action="update_contact.phtml" method="POST" enctype="multipart/form-data">
+<?
+echo '<table id="admin-edit-table">';
+echo "<tr><td colspan=2><hr noshade></td></tr>";
+
+foreach($DB_fields as $key=>$value) {
+    if($value[type] == "text") {
+        ?>
+        <tr><td class="navtd" align="right" nowrap><?echo $value[title]?></td>
+        <td><input name="<?echo $value[name]?>"
+        value="<?echo $row[$value[name]]?>" size=40></td>
+        </tr>
+        <?
+    }
+    elseif($value[type] == "date") {
+        ?>
+        <tr><td class="navtd" align="right" nowrap><?echo $value[title]?> (MM/DD/YYYY)</td>
+        <td><input name="<?echo $value[name]?>"
+        value="<?echo $row[$value[name]]?>" size=40></td>
+        </tr>
+        <?
+    }
+    elseif($value[type] == "static") {
+        ?>
+        <tr><td class="navtd" align="right" nowrap><?echo $value[title]?></td>
+        <td><?echo $row[$value[name]]?></td>
+        </tr>
+        <?
+    }
+    elseif($value[type] == "interest") {
+        ?>
+        <tr><td class="navtd" align="right" nowrap><?echo $value[title]?></td>
+        <td><?interest($row[$value[name]])?></td>
+        </tr>
+        <?
+    }
+    elseif($value[type] == "img") {
+        ?>
+        <tr></tr>
+        <?
+        echo "<input type=\"hidden\" name=\"old".$value[name]."\"
+        value=\"".$row[$value[name]]."\">";
+        if($row[$value[name]] != "") {
+        echo "<tr><td class=\"navtd2\" align=\"right\">Current Image:</td>";
+        echo "<td><img src=\"".MIDSIZED.$row[$value[name]]."\">
+        </td>
+        </tr>
+        <tr>
+        <td class=\"navtd2\" align=\"right\">Delete this image:</td>
+        <td>
+        <input type=\"radio\" name=\"delete".$value[name]."\" value=\"1\">Yes
+        <input type=\"radio\" name=\"delete".$value[name]."\" value=\"2\" CHECKED>No
+        </td>
+        </tr>";
+        }
+        echo "<tr><td class=\"navtd\" align=\"right\">New $value[title]:</td>";
+        echo "<td><input type=\"file\" name=\"".$value[name]."\"></td>";
+        echo "</tr>";
+    }
+    elseif($value[type] == "file") {
+        ?>
+        <tr></tr>
+        <?
+        echo "<input type=\"hidden\" name=\"old".$value[name]."\"
+        value=\"".$row[$value[name]]."\">";
+        if($row[$value[name]] != "") {
+        echo "<tr><td class=\"navtd2\" align=\"right\">Current File:</td>";
+        echo "<td>".$row[$value[name]]."
+        </td>
+        </tr>
+        <tr>
+        <td class=\"navtd2\" align=\"right\">Delete this File:</td>
+        <td>
+        <input type=\"radio\" name=\"delete".$value[name]."\" value=\"1\">Yes
+        <input type=\"radio\" name=\"delete".$value[name]."\" value=\"2\" CHECKED>No
+        </td>
+        </tr>";
+        }
+        echo "<tr><td class=\"navtd\" align=\"right\">New $value[title]:</td>";
+        echo "<td><input type=\"file\" name=\"".$value[name]."\"></td>";
+        echo "</tr>";
+    }
+    if($value[type] == "desc") {
+        if($value[name] == "description") {
+            echo "<tr><td colspan=2><hr noshade></td></tr>";
+            echo "<tr><th colspan=2>Description and Images</th></tr>";
+        }
+        echo "<tr><td class=\"navtd\" align=\"right\" nowrap>$value[title]:</td>";
+            echo '<td><textarea id="'.$value['name'].'" name="'.$value['name'].'"
+                    rows="5" cols="35">'.htmlspecialchars($row[$value['name']]).'</textarea></td>';
+        echo "</tr>";
+    }
+    elseif($value[type] == "hide") {
+        echo "<input type=\"hidden\" name=\"".$value[title]."\" value=\"".$row[$value[name]]."\">";
+    }
+    elseif($value[type] == "radio") {
+        echo "<tr><td class=\"navtd\" align=\"right\">$value[title]:</td>";
+        echo "<td><input type=\"radio\" name=\"".$value[name]."\" value=\"t\"";
+        if($row[$value[name]]=="t")
+            echo " checked";
+        echo ">Yes";
+        echo "<input type=\"radio\" name=\"".$value[name]."\" value=\"f\"";
+        if($row[$value[name]]!="t")
+            echo " checked";
+        echo ">No</td>";
+        echo "</tr>";
+    }
+    elseif ( $value['type'] == 'drop' )
+    {
+        echo '<tr><td class="'.$label.'" align="right">'.$value[title].'</td>';
+        echo '<td class="'.$field.'">';
+        unset($value['drop']['']);
+        $val = explode(":",preg_replace("%^:|:$%","",trim($row[$value['name']])));
+        $date_entry = GLM_TOOLBOX::build_picklist($value['name'].'[]',$value['drop'],$val, 'multiple', 0, null, 5);
+        echo $date_entry.'</td>';
+        echo '</tr>';
+    }
+    elseif($value[type] == "array_drop"){
+        echo "<tr><td class=\"navtd\" align=\"right\" nowrap>$value[title]:</td>";
+        echo "<td>";
+        if(is_array($value[drop])){
+            echo '<select name="'.$value[name].'">';
+            echo '<option value="">-- select '.$value[name].' --</option>';
+            foreach($value[drop] as $dkey=>$dval){
+                echo '<option value="'.$dkey.'"';
+                if($row[$value[name]] == $dkey && $row[$value[name]] != "")
+                    echo ' selected';
+                echo '>'.$dval.'</option>';
+            }
+            echo '</select>';
+        }
+        echo "</td></tr>";
+    }
+}
+
+if(isset($id)) {
+?>
+<tr><td colspan=2 align=center>
+<input type="submit" name="Command" value="Update">
+<input type="submit" name="Command" value="Cancel">
+<input type="submit" name="Command" value="Delete" onClick="
+if(confirm('This will delete this Record!\n Are you sure?'))
+    return(true);
+else
+    return(false);
+">
+</td></tr>
+<?
+}
+else {
+    form_footer("Insert","",2);
+}
+echo "</td></tr></table>
+</form>";
+
+footer();
+?>
index 93c4751..177df4d 100644 (file)
@@ -1,12 +1,12 @@
 <?php
-include "../../setup.phtml";
-include "contact_setup.inc";
+require_once '../../setup.phtml';
+require_once 'contact_setup.inc';
 if ($_POST) {
-       $sub_oktogo = true;
-       if (empty($_POST['group'])) {
-               $sub_oktogo = false;
-       }
-       switch ($_POST['Command']) {
+    $sub_oktogo = true;
+    if (empty($_POST['group'])) {
+        $sub_oktogo = false;
+    }
+    switch ($_POST['Command']) {
     case 'Add' :
         $qs = "INSERT INTO inq_group(name) VALUES('".$_POST['group']."')";
         break;
@@ -22,78 +22,78 @@ if ($_POST) {
     default :
         unset($qs);
         break;
-       }
-       if ($_POST['Command'] == 'Delete') {
-               $DB->db_exec($qs);
-               header('Location: list_groups.php');
-       } else if ($sub_oktogo && isset($qs)) {
-               $DB->db_exec($qs);
-               header('Location: list_groups.php');
-       }
+    }
+    if ($_POST['Command'] == 'Delete') {
+        $DB->db_exec($qs);
+        header('Location: list_groups.php');
+    } else if ($sub_oktogo && isset($qs)) {
+        $DB->db_exec($qs);
+        header('Location: list_groups.php');
+    }
 }
 ?>
 <script type="text/javascript">
 function form_sub_check() {
-       var sub_oktogo = true;
-       var group = document.getElementById('group').value;
-       var groupBox = document.getElementById('group_box');
+    var sub_oktogo = true;
+    var group = document.getElementById('group').value;
+    var groupBox = document.getElementById('group_box');
 
-       if (group == '') {
-               groupBox.className = "problem";
-               sub_oktogo = false;     
-               problems = '-- Name\n';
-       } else {
-               groupBox.className = '';
+    if (group == '') {
+        groupBox.className = "problem";
+        sub_oktogo = false;
+        problems = '-- Name\n';
+    } else {
+        groupBox.className = '';
     }
 
-       if (!sub_oktogo)
-               alert('Please give your new group a name before continuing');
-       //      Return whether the form will submit or not!
-       return sub_oktogo ? true : false;
+    if (!sub_oktogo)
+        alert('Please give your new group a name before continuing');
+    //  Return whether the form will submit or not!
+    return sub_oktogo ? true : false;
 }
 </script>
 <style type="text/css">
 .problem {
-       background-color: #FCA9A4 !important;
+    background-color: #FCA9A4 !important;
 }
 </style>
 <?php
 GLM_TOOLBOX::top('Edit/Add Inquiry','');
-//     Adjust the nav for this page, add the Edit Groups page.
+//  Adjust the nav for this page, add the Edit Groups page.
 if (is_array($nav) && array_key_exists('Contact Inquiry Fields', $nav)) {
-       $tmp = array('Inquiry Groups' => 'list_groups.php');
-       array_insert($nav, 'Contact Inquiry Fields', $tmp); 
+    $tmp = array('Inquiry Groups' => 'list_groups.php');
+    array_insert($nav, 'Contact Inquiry Fields', $tmp);
 }
 GLM_TOOLBOX::html_nav_table($nav,$navWidth);
 if (is_numeric($_GET['id'])) {
-       $query = 'SELECT * FROM inq_group WHERE id = '.$_GET['id'];
-       if ($data = $DB->db_auto_get_data($query)) {
-               $name = $data[0]['name'];
-               $id = $data[0]['id'];
-       }
+    $query = 'SELECT * FROM inq_group WHERE id = '.$_GET['id'];
+    if ($data = $DB->db_auto_get_data($query)) {
+        $name = $data[0]['name'];
+        $id = $data[0]['id'];
+    }
 } else {
-       $name = '';
+    $name = '';
 }
 ?>
 <form action="edit_group.php" method="POST" onSubmit="return form_sub_check();">
-       <table id="admin-edit-table">
-               <tr>
-                       <th>Group Name:</th>
-                       <td id="group_box" <?php echo ($_POST && !$sub_oktogo) ? 'class="problem"' : '';?>>
-                               <input type="text" name="group" id="group" value="<?php echo $name;?>">
-                               <input type="hidden" name="id" id="id" value="<?php echo $id;?>">
-                       </td>
-               </tr>
-               <tr>
-                       <td colspan="2" align="center">
-                               <?php if ($_GET['Command'] == "Edit") :?>
-                                       <input type="submit" name="Command" value="Edit">
-                                       <input type="submit" name="Command" value="Delete">
-                               <?php else :?>
-                                       <input type="submit" name="Command" value="Add">
-                               <?php endif;?>
-                       </td>
-               </tr>
-       </table>
+    <table id="admin-edit-table">
+        <tr>
+            <th>Group Name:</th>
+            <td id="group_box" <?php echo ($_POST && !$sub_oktogo) ? 'class="problem"' : '';?>>
+                <input type="text" name="group" id="group" value="<?php echo $name;?>">
+                <input type="hidden" name="id" id="id" value="<?php echo $id;?>">
+            </td>
+        </tr>
+        <tr>
+            <td colspan="2" align="center">
+                <?php if ($_GET['Command'] == "Edit") :?>
+                    <input type="submit" name="Command" value="Edit">
+                    <input type="submit" name="Command" value="Delete">
+                <?php else :?>
+                    <input type="submit" name="Command" value="Add">
+                <?php endif;?>
+            </td>
+        </tr>
+    </table>
 </form>
 <?php GLM_TOOLBOX::footer();?>
old mode 100755 (executable)
new mode 100644 (file)
index 450a50e..144d1ff
 <?php
-require_once "../../setup.phtml";
-require_once "contact_setup.inc";
-GLM_TOOLBOX::top('Edit/Add Inquiry','');
-?>
-<script type="text/javascript">
-    $(document).ready(function(){
-        $('#deleteButton').click(function(){
-            $('input[name="xCommand"]').val('Delete');
-        });
-    });
-function form_sub_check()
-{
-    var submitButton = $('input[name="xCommand"]').val();
-    if (submitButton == 'Delete') {
-        return true;
-    }
-       var sub_oktogo = true;
-       var problems = '';
-       var header = $("#header").val();
-       var headerBox = $("#header_box");
-    var group = $("#groupid").val();
-    var groupBox = $("#group_box");
-    var newGroup = $("#new_group").val();
-    
-       if (header == '') {
-               headerBox.addClass("problem");
-               sub_oktogo = false;     
-               problems = '-- Name\n';
-       } else {
-               headerBox.removeClass("problem");
-    }
-       if ((group == undefined || group == 0) && newGroup == '') {
-               groupBox.addClass("problem");
-               sub_oktogo = false;
-               problems += '-- Group\n';
-       } else {
-               groupBox.removeClass("problem");
-    }
-       if (!sub_oktogo) {
-               alert('You have problems on your form!\nPlease carefully review the following and re-submit your form.\n\n' + problems);
-    }
-    // Return whether the form will submit or not!
-       return sub_oktogo ? true : false;
-}
-</script>
-<style type="text/css">
-.problem {
-       background-color: #FCA9A4 !important;
-}
-</style>
-<?php
-//     Adjust the nav for this page, add the Edit Groups page.
-if (is_array($nav) && array_key_exists('Contact Inquiry Fields', $nav)) {
-    $tmp = array('Inquiry Groups' => 'list_groups.php');
-    array_insert($nav, 'Contact Inquiry Fields', $tmp); 
-}
-GLM_TOOLBOX::html_nav_table($nav,$navWidth);
-if (is_numeric($_GET['id'])) {
-    $query = "SELECT * FROM contact_inq WHERE id = $id";
-    if ($data = $DB->db_auto_get_data($query)) {
-        $header                        = $data[0]['header'];
-        $description   = $data[0]['description'];
-        $pos                   = $data[0]['pos'];
-        $groupid               = $data[0]['groupid'];
+require_once '../../setup.phtml';
+require_once 'contact_setup.inc';
+$conn =& db_connect();
+if(!$conn)
+    {
+        echo "No Database connection";
     }
-} else {
-    $header                    = '';
-    $description       = '';
-    $groupid           = '';
-}
-$query = "SELECT * FROM inq_group ORDER BY name;";
-if ($gData = $DB->db_auto_get_data($query)) {
-    $group_sel = '<select id="groupid" name="groupid">';
-    $group_sel .= '<option value="">New Group - &gt;&gt;</option>';
-    foreach ($gData as $gRow) {
-        $group_sel .= '<option value="'.$gRow['id'].'"';
-        if( $groupid && $gRow['id'] == $groupid )
-        {
-            $group_sel .= ' selected';
-        }
-        $group_sel .= '>'.$gRow['name'];
-        $group_sel .= '</option>';
-    }
-    $group_sel .= '</select>';
-}
-?>
-<form action="update_inquiry.phtml" method="POST" onSubmit="return form_sub_check();">
-    <input type="hidden" name="old_groupid" value="<?php echo $groupid;?>" />
-    <table id="admin-edit-table">
+top('Edit/Add Inquiry','');
+html_nav_table($nav,$navWidth);
+switch($Command)
+    {
+    case "Edit":
+        $qs = "SELECT   *
+        FROM    contact_inq
+        WHERE   id = $id";
+    $result = pg_Exec($conn,$qs);
+    $header = pg_result($result,0,'header');
+    $description = pg_result($result,0,'description');
+    $image = pg_result($result,0,'image');
+    $pos = pg_result($result,0,'pos');
+    ?>
+        <table id="admin-edit-table">
         <tr>
-            <th>Name:</th>
-            <td id="header_box">
-                <input type="text" name="header" id="header" size="50" value="<?echo $header?>">
-                <input type="hidden" name="id" value="<?echo $id?>">
-            </td>
+        <td>Header:</td>
+        <td>
+        <form action="update_inquiry.phtml" method="POST" enctype="multipart/form-data">
+        <input type="text" name="header" value="<?echo $header?>">
+        <input type="hidden" name="id" value="<?echo $id?>"></td>
         </tr>
         <?
-        echo '<input type="hidden" name="oldpos" value="'.$pos.'">';
-    ?> 
-    <tr>
-        <th>Group:</th>
-        <td id="group_box">
-        <?php echo $group_sel;?>
-        <input type="text" id="new_group" name="new_group" value="" />
-        </td>
-    </tr>
-    <tr>
+        /*
+        echo "<tr><td align=\"right\">Description:</td>";
+    echo "<td><textarea cols=35 rows=8 name=\"description\">$description</textarea></td>";
+    echo "</tr>";
+    */
+    echo "<input type=\"hidden\" name=\"oldimage\" value=\"".$image."\">";
+    echo "<input type=\"hidden\" name=\"oldpos\" value=\"".$pos."\">";
+    /*
+    if($image != "") {
+        echo "<tr><td align=\"right\">Current Image:</td>";
+        echo "<td><img src=\"".MIDSIZED."/".$image."\">
+            </td>
+            </tr>
+            <tr>
+            <td class=\"navtd2\" align=\"right\">Delete this image:</td>
+            <td>
+            <input type=\"radio\" name=\"deleteimage\" value=\"1\">Yes
+            <input type=\"radio\" name=\"deleteimage\" value=\"2\" CHECKED>No
+            </td>
+            </tr>";
+    }
+    echo "<tr><td align=\"right\">New Image:</td>";
+    echo "<td><input type=\"file\" name=\"image\"></td>";
+    echo "</tr>";
+    */
+    ?>
+        <tr>
         <td colspan=2 align=center>
-            <input type="hidden" name="xCommand" value="" />
-<?php
-if ($Command == "Edit") {
+        <input type="submit" name="Command" value="Edit">
+        <input type="submit" name="Command" value="Delete">
+        </td>
+        </tr>
+        </form>
+        </table>
+        <?
+
+    break;
+
+    case "Add Item":
     ?>
-    <input type="submit" name="Command" value="Edit">
-    <input type="submit" id="deleteButton" name="Command" value="Delete">
-    <?php
-} else {
-?>
-    <input type="submit" name="Command" value="Add">
-<?php
-}
-?>
+        <table id="admin-edit-table">
+        <tr>
+        <th>Header:</th>
+        <td><form action="update_inquiry.phtml" method="POST">
+        <input type="text" name="header">
+        <input type="submit" name="Command" value="Add">
+        </form>
         </td>
         </tr>
-    </table>
-</form>
-<?php
-GLM_TOOLBOX::footer();
+        </table>
+        <?
+    break;
+
+}
+footer();
 ?>
index 86695f7..f580869 100644 (file)
@@ -3,32 +3,32 @@ require_once '../../setup.phtml';
 require_once BASE . 'classes/class_db.inc';
 require_once 'contact_setup.inc';
 $DB = new GLM_DB();
-$query = "select * from news_response order by id;"; 
+$query = "select * from news_response order by id;";
 $data  = $DB->db_auto_get_data( $query );
 GLM_TOOLBOX::top( "Email HTML Newsletters", "");
 GLM_TOOLBOX::html_nav_table($nav,$navWidth);
 $out = '<table id="admin-list-table">
-       <tr><td colspan="2" align="center">
-                       <form name="add" action="edit_autoresponse.phtml" method="post">
-                               <button name="command" onClick="add.submit()">Add HTML EMAIL</button>
-       </td></tr>
-       <tr>
-               <th>Function:</th>
-               <th>Subject:</th>
-               <th>Last Update:</th>
-               <th> &nbsp; </th>
-       </tr>';
-       
+    <tr><td colspan="2" align="center">
+            <form name="add" action="edit_autoresponse.phtml" method="post">
+                <button name="command" onClick="add.submit()">Add HTML EMAIL</button>
+    </td></tr>
+    <tr>
+        <th>Function:</th>
+        <th>Subject:</th>
+        <th>Last Update:</th>
+        <th> &nbsp; </th>
+    </tr>';
+
 if (is_array($data)) {
-       foreach ($data as $key => $val) {
-               $out .= '<tr>
-                       <td><a href="edit_autoresponse.phtml?id='.$val["id"].'">[Edit]</a>&nbsp;
-                               <a href="view_newsletter.phtml?id='.$val["id"].'">[View]</a></td>
-                       <td>'.$val["subject"].'</td>
-                       <td>'.$val["last_update"].'</td>
-                       <td><a href="update_autoresponse.phtml?Command=Delete&amp;id='.$val["id"].'" onClick="return(confirm(\'This will delete the Email Newsletter!\n\nAre you sure?\'))">[Delete]</a></td>
-               </tr>';
-       }
+    foreach ($data as $key => $val) {
+        $out .= '<tr>
+            <td><a href="edit_autoresponse.phtml?id='.$val["id"].'">[Edit]</a>&nbsp;
+                <a href="view_newsletter.phtml?id='.$val["id"].'">[View]</a></td>
+            <td>'.$val["subject"].'</td>
+            <td>'.$val["last_update"].'</td>
+            <td><a href="update_autoresponse.phtml?Command=Delete&amp;id='.$val["id"].'" onClick="return(confirm(\'This will delete the Email Newsletter!\n\nAre you sure?\'))">[Delete]</a></td>
+        </tr>';
+    }
 }
 $out .= '</table>';
 echo $out;
index fea8093..f3aceee 100755 (executable)
 <?php
 session_start();
-require_once "../../setup.phtml";
-require_once "contact_setup.inc";
-error_reporting();
-if (isset($mailout)) {
+if(isset($mailout)) {
     unset($_SESSION['mailout']);
-       //session_unregister("mailout");
+    //session_unregister("mailout");
 }
-if (isset($_SESSION['sess_vars'])) {
-       extract($_SESSION['sess_vars']);
+if(isset($sess_vars)) {
+    extract($sess_vars);
     unset($_SESSION['sess_vars']);
-       //session_unregister("sess_vars");
+    //session_unregister("sess_vars");
 }
-$qs = "SELECT  count(*) as total
-          FROM         ".TABLE;
-if (TABLE == CUSTOMER_TABLE) {
-       $qs .= " WHERE (fname != '-Guest-' OR fname is null)";
+extract($_POST);
+extract($_GET);
+//$Id: index.phtml,v 1.1.1.1 2008/07/08 15:02:13 jmeek Exp $
+require_once '../../setup.phtml';
+require_once 'contact_setup.inc';
+$dbd = db_connect();
+$qs = "SELECT   count(*) as total
+       FROM     ".TABLE;
+if(TABLE==CUSTOMER_TABLE) {
+    $qs .= " WHERE fname != '-Guest-'";
 }
-$res = $DB->db_auto_get_data($qs);
-$total = $res[0]['total'];
-GLM_TOOLBOX::top("Contact Database","help/contact.phtml?key=search","SteveContactsDatabase_1.0");
-GLM_TOOLBOX::html_nav_table($nav,$navWidth);
+$res = db_exec($dbd,$qs);
+$total = pg_result($res,0,'total');
+top("Contact Database","help/contact.phtml?key=search");
+html_nav_table($nav,3);
 ?>
-<table id="admin-list-table">
-  <tr>
-    <td colspan=4>
-       There
-       <?php
-       if ($total < 1 ) {
-               echo " No records";
-       } elseif ($total > 1) {
-               echo "are $total contacts";
-       } else {
-               echo "is $total contact";
-       }
-       ?> in the database.
-       </td>
-  </tr>
-  <tr>
-    <th colspan=4 class="theader">
-       Search:
-    </th>
-  </tr>
-  <tr>
-    <td colspan=4>
-       <b>Search records for:</b><br>
-       </td>
-  </tr>
-  <tr>
-  <td colspan=4>
-  <form name="search" action="query_contact.phtml" method="POST" onSubmit="
-       var msg = '';
-       var errors = '';
-       var ping = 0;
-       var all = 0;
-       this.fvalue.value = '';
-       this.rfvalue.value = '';
-       this.rdvalue.value = '';
+<form name="search" action="query_contact.phtml" method="POST" onSubmit="
+    var msg = '';
+    var errors = '';
+    var ping = 0;
+    var all = 0;
+    this.fvalue.value = '';
+    this.rfvalue.value = '';
+    this.rdvalue.value = '';
 
-       if(this.search.value == '') {
-               all++;
-       }
+    if(this.search.value == '') {
+        all++;
+    }
 
-       for(var i = 0;i<4;i++) {
-               if(this.search_type.options[i].selected){
-                       ping++;
-               }
-       }
+    for(var i = 0;i<4;i++) {
+        if(this.search_type.options[i].selected){
+            ping++;
+        }
+    }
 
-       if(all == 0) {
-               if(ping == 0) {
-                       errors += '-You must select a search type\n';
-               }
-       }
+    if(all == 0) {
+        if(ping == 0) {
+            errors += '-You must select a search type\n';
+        }
+    }
 
-       for(var i=0;i<<?echo count($fields)?>;i++) {
-               if(this.ifields.options[i].selected) {
-                       this.fvalue.value += ':' + this.ifields.options[i].value;
-               }
-       }
+    for(var i=0;i<<?echo count($fields)?>;i++) {
+        if(this.ifields.options[i].selected) {
+            this.fvalue.value += ':' + this.ifields.options[i].value;
+        }
+    }
 
-       for(var i=0;i<<?echo count($fields)?>;i++) {
-               if(this.return_fields.options[i].selected) {
-                       this.rfvalue.value += ':' + this.return_fields.options[i].value;
-               }
-       }
+    for(var i=0;i<<?echo count($fields)?>;i++) {
+        if(this.return_fields.options[i].selected && this.return_fields.options[i].value != '') {
+            this.rfvalue.value += ':' + this.return_fields.options[i].value;
+        }
+    }
 
-       for(var i=0;i<1;i++) {
-               if(this.dates.options[i].selected) {
-                       this.rdvalue.value += ':' + this.dates.options[i].value;
-               }
-       }
+    for(var i=0;i<3;i++) {
+        if(this.dates.options[i].selected) {
+            this.rdvalue.value += ':' + this.dates.options[i].value;
+        }
+    }
 
-       if(all == 0) {
-               if(this.fvalue.value == '') {
-                       errors += '-You must select at least one field to search in\n';
-               }
-       }
+    if(all == 0) {
+        if(this.fvalue.value == '') {
+            errors += '-You must select at least one field to search in\n';
+        }
+    }
 
-        if(this.rfvalue.value == '') {
-               errors += '-You must select at least one field for output\n';
-       }
+     if(this.rfvalue.value == '' && this.rdvalue == '') {
+        errors += '-You must select at least one field for output\n';
+    }
 
-       if(all == 1) {
-               if(errors == '') {
-                       return(true);
-               }
-       }
+    if(all == 1) {
+        if(errors == '') {
+            return(true);
+        }
+    }
 
-       if(errors == '') {
-               return(true);
-       } else {
-               msg += '_______________________________________\n\n';
-               msg += 'The form was not submitted please check\n';
-               msg += 'the following and resubmit\n\n';
-               msg += errors + '\n\n';
-               msg += '_______________________________________\n\n';
+    if(errors == '') {
+        return(true);
+    }
+    else {
+        msg += '_______________________________________\n\n';
+        msg += 'The form was not submitted please check\n';
+        msg += 'the following and resubmit\n\n';
+        msg += errors + '\n\n';
+        msg += '_______________________________________\n\n';
 
-               alert(msg);
-               return(false);
-       }
+        alert(msg);
+        return(false);
+    }
   ">
-  <input name="search" value="<?echo stripslashes($search)?>" size=40>
-  <input type="submit" name="Submit Query">
-  </td>
+<table id="admin-list-table">
+  <tr>
+    <td colspan=4>
+    There
+<?php
+if($total < 1 )
+{
+    echo " No records";
+}
+elseif($total > 1)
+{
+    echo "are $total contacts";
+}
+else
+{
+    echo "is $total contact";
+}
+?>
+in the database.
+    </td>
   </tr>
   <tr>
-    <th colspan=4 class="theader">
-       Search Dates Ranges
+    <th colspan=4>
+    Search:
     </th>
   </tr>
   <tr>
-         <td align="left" colspan=4 nowrap>
-                 <div style="float:left;width:240px;height:35px;">Created From:<br> <?echo $c_date_from?></div>
-                 <div style="float:left;width:240px;height:35px;">Created To:<br> <?echo $c_date_to?></div>
-         </td>
+    <td colspan=4>
+    <b>Search records for:</b><br>
+    </td>
   </tr>
   <tr>
-    <td class="small" valign=top>
-       <b>In Fields:</b><br>
-       <select name="ifields" multiple size=8>
-       <?foreach($fields as $key2=>$value2) {?>
-       <option value="<?echo $key2?>" <?=(strstr($fvalue,$key2))?"selected":""?>><?echo $value2?>
-       <?}?>
-       </select>
-       <br>
-       <label for="in-all"><input type="radio" id="in-all" name="a" onClick="
-       for(var i=0;i<<?echo count($fields)?>;i++) {
-               this.form.ifields.options[i].selected=1;
-       }
-       ">All</label>
-       <label for="in-none"><input type="radio" id="in-none" name="a" onClick="
-       for(var i=0;i<<?echo count($fields)?>;i++) {
-               this.form.ifields.options[i].selected=0;
-       }
-       ">None</label>
-       </td>
-       <td valign=top class="small" nowrap>
+  <td colspan=4>
+  <input name="search" value="<?echo $search?>" size=40>
+  <input type="submit" name="Submit Query">
+  </td>
+  </tr>
+  <tr>
+    <td valign=top>
+    <b>In Fields:</b><br>
+    <select name="ifields" multiple size=8>
+    <?foreach($fields as $key2=>$value2) {?>
+    <option value="<?echo $key2?>" <?=(strstr($fvalue,$key2))?"selected":""?>><?echo $value2?>
+    <?}?>
+    </select>
+    <br>
+    <input type="radio" name="a" onClick="
+    for(var i=0;i<<?echo count($fields)?>;i++) {
+        this.form.ifields.options[i].selected=1;
+    }
+    ">All
+    <input type="radio" name="a" onClick="
+    for(var i=0;i<<?echo count($fields)?>;i++) {
+        this.form.ifields.options[i].selected=0;
+    }
+    ">None
+    </td>
+    <td valign=top nowrap>
       <b>Search Where:</b><br>
-         <select name="alter">
-         <option value="0" <?=($alter=="0")?"selected":""?>>Anywhere
-         <option value="1" <?=($alter=="1")?"selected":""?>>Begining
+      <select name="alter">
+      <option value="0" <?=($alter=="0")?"selected":""?>>Anywhere
+      <option value="1" <?=($alter=="1")?"selected":""?>>Begining
       <option value="2" <?=($alter=="2")?"selected":""?>>Ending
-         </select><br>
-       <input type="hidden" name="fvalue">
-       <?php
-       if (is_array($boolean)) {
-               foreach ($boolean as $bool_key => $bool_val) {
-                       echo '<br>
-                               <b>'.$bool_val.'</b><br>';
-                       echo search_bool($bool_key, ${$bool_key});
-               }
-       }
-       if (is_array($dropdowns)) {
-               foreach ($dropdowns as $drop_key => $drop_row) {
-                       echo '<br>
-                               <b>'.$drop_row['title'].'</b>';
-                       echo '<br>';
-                       if( is_array( $drop_row['drop'] ) ) {
-                               echo GLM_TOOLBOX::build_picklist( $drop_key.'[]', $drop_row['drop'], ${$drop_key}, 'multiple', 0, null, 5 );
-                       }
-               }
-       }
-       echo '</td><td valign=top width=25%>';
+      </select><br>
+    <input type="hidden" name="fvalue">
+    <br>
+    <b>Mail Ok</b><br>
+<?
+if(TABLE==CUSTOMER_TABLE)
+{
+    $mail = "mail_ok";
+}
+else
+{
+    $mail = "mailok";
+}
 ?>
-       <br><b>Search Type:</b><br>
+    <select name="<?=$mail?>">
+    <option value="n" <?=($$mail=="n")?"selected":""?>>---
+    <option value="1" <?=($$mail=="1")?"selected":""?>>Yes
+    <option value="0" <?=($$mail=="0")?"selected":""?>>No
+    </select>
+    <br>
+    <b>Contestant</b><br>
+    <select name="contestant">
+    <option value="n" <?=($contestant=="n")?"selected":""?>>---
+    <option value="1" <?=($contestant=="1")?"selected":""?>>Yes
+    <option value="0" <?=($contestant=="0")?"selected":""?>>No
+    </select>
+    </td>
+    <td valign=top width="25%" colspan=2>
+    <b>Search Type:</b><br>
   <select name="search_type" size=4>
   <option value="1" <?=(!isset($search_type) || $search_type=="1")?"selected":""?>>Exact string
   <option value="2" <?=($search_type=="2")?"selected":""?>>And
   <option value="3" <?=($search_type=="3")?"selected":""?>>Or
   <option value="4" <?=($search_type=="4")?"selected":""?>>Not
-  </select>
-       </td>
-      <td valign=top class=small width=25%>
+  </select><br>
       <b>Case Sensitivity:</b><br>
       <select name="case">
       <option value="ON" <?=($case == "ON")?"selected":""?>>On
       <option value="OFF" <?=(!isset($case) || $case == "OFF")?"selected":""?>>Off
       </select><br>
-         </td>
-         </tr>
-         <tr>
-         <td colspan="4"> &nbsp;
-<?php
-    $sql = "
-      SELECT contact_inq.*, inq_group.name as group
-        FROM contact_inq
-             LEFT OUTER JOIN inq_group
-               ON (contact_inq.groupid = inq_group.id)
-       WHERE inq_group.id != 6
-    ORDER BY groupid, pos";
-
-    $interests = array();
-    $intData = $DB->db_auto_get_data($sql);
-    foreach ($intData as $row) {
-        $interests[$row['group']][$row['id']] = $row['header'];
+      <?php
+?>
+      </td>
+    </tr>
+  <tr>
+  <td colspan=2>
+<?
+if(is_array($interest2))
+    {
+    echo '<b>Interest:</b><br><select name="cols[]" multiple size="12">';
+    foreach($interest2 as $ikey=>$ivalue)
+        {
+        echo '<option value="'.$ikey.'">'.substr($ivalue,0,20).'...';
+        }
+    echo '</select>';
     }
-
-    foreach ($interests as $i => $j) {
-        echo '<fieldset>';
-        echo '<legend>';
-        echo $i;
-        echo '</legend>';
-        foreach ($j as $k => $v) {
-            echo '<label class="glmCheckBox">';
-            echo '<input type="checkbox" name="cols[]" value="'.$k.'" ';
-            if (   is_array($cols)
-                && in_array($data['id'], $cols)) {
-                echo " checked";
-                       }
-            echo '>';
-            echo $v;
-            echo '</label>';
-                                       }
-        echo '</fieldset>';
+?>
+  </td>
+  <td>
+    <?php
+    if (is_array($dropdowns)) {
+        foreach ($dropdowns as $drop_key => $drop_row) {
+            echo '<br>
+                <b>'.$drop_row['title'].'</b>';
+            echo '<br>';
+            if( is_array( $drop_row['drop'] ) ) {
+                echo GLM_TOOLBOX::build_picklist( $drop_key.'[]', $drop_row['drop'], ${$drop_key}, 'multiple', 0, null, 5 );
+            }
+        }
     }
 ?>
-      </td>
-       </tr>
+  </td>
+  <td>
+    <?php
+    if(is_array($unit_size2)){
+        echo '<b>Unit Size</b><br><select name="unit[]" multiple size="5">';
+        foreach($unit_size2 as $key=>$value){
+            echo '<option value="'.$key.'">'.$value;
+        }
+        echo '</select><br>';
+    }
+    if(is_array($referred_by2)){
+        echo '<b>Referred By</b><br><select name="referred[]" multiple size="5">';
+        foreach($referred_by2 as $key=>$value){
+            echo '<option value="'.$key.'">'.$value;
+        }
+        echo '</select>';
+    }
+    ?>
+  </td>
+  </tr>
   <tr>
     <th colspan=4>
-       Output of records:
+    Output of records:
     </th>
   </tr>
   <tr>
-    <td class="small" valign=top>
-       <b>Output Fields:</b><br>
-       <select name="return_fields" multiple size=8>
-       <?foreach($fields as $key2=>$value2) {?>
-       <option value="<?echo $key2?>" <?=(strstr($rfvalue,$key2))?"selected":""?>><?echo $value2?>
-       <?}?>
-       </select>
-       <br>
-       <input type="hidden" name="rfvalue">
-       <label for="out-all"><input type="radio" id="out-all" name="a" onClick="
-       for(var i=0;i<<?echo count($fields)?>;i++) {
-               this.form.return_fields.options[i].selected=1;
-       }
-       for(var i=0;i<<?echo ($p_date_from)?"3":"1";?>;i++) {
-               this.form.dates.options[i].selected=1;
-       }
-       ">All</label>
-       <label for="out-none"><input id="out-none" type="radio" name="a" onClick="
-       for(var i=0;i<<?echo count($fields)?>;i++) {
-               this.form.return_fields.options[i].selected=0;
-       }
-       for(var i=0;i<<?echo ($p_date_from)?"3":"1";?>;i++) {
-               this.form.dates.options[i].selected=0;
-       }
-       ">None</label>
+    <td valign=top>
+    <b>Output Fields:</b><br>
+    <select name="return_fields" multiple size=8>
+    <?foreach($fields as $key2=>$value2) {?>
+    <option value="<?echo $key2?>" <?=(strstr($rfvalue,$key2))?"selected":""?>><?echo $value2?>
+    <?}?>
+    </select>
+    <br>
+    <input type="hidden" name="rfvalue">
+    <input type="radio" name="a" onClick="
+    for(var i=0;i<<?echo count($fields)?>;i++) {
+        this.form.return_fields.options[i].selected=1;
+    }
+    for(var i=0;i<<?echo ($p_date_from)?"3":"1";?>;i++) {
+        this.form.dates.options[i].selected=1;
+    }
+    ">All
+    <input type="radio" name="a" onClick="
+    for(var i=0;i<<?echo count($fields)?>;i++) {
+        this.form.return_fields.options[i].selected=0;
+    }
+    for(var i=0;i<<?echo ($p_date_from)?"3":"1";?>;i++) {
+        this.form.dates.options[i].selected=0;
+    }
+    ">None
   </td>
-  <td class="small" valign=top>
-       <input type="hidden" name="rdvalue" value="">
+  <td valign=top>
+    <input type="hidden" name="rdvalue" value="">
     <b>Output fields (Dates):</b>
-       <select name="dates" multiple size=3>
-       <option value="create_date" <?=(strstr($dates,"create_date"))?"selected":""?>>Created Date
-       <?if($p_date_from)
-       {?>
-  <option value="purch_date" <?=(strstr($dates,"purch_date"))?"selected":""?>>Last Purchase Date
+    <select name="dates" multiple size=3>
+  <?if($p_date_from){?>
+  <option value="arrive_date" <?=(strstr($rdvalue,"arrive_date"))?"selected":""?>>Arrival Date
   <?}
-  if($a_date_from)
-  {?>
-  <option value="access_date" <?=(strstr($dates,"access_date"))?"selected":""?>>Last Access Date
+  if($a_date_from){?>
+  <option value="depart_date" <?=(strstr($rdvalue,"depart_date"))?"selected":""?>>Departure Date
   <?}?>
-       </select>
+    <option value="create_date" <?=(strstr($rdvalue,"create_date"))?"selected":""?>>Created Date
+    </select>
   </td>
-  <td class="small" valign=top width=25%>
+  <td valign=top width=25%>
   <b>File output:</b><br>
   <select name="file" size=4>
   <option value="" <?=(!isset($file) || $file == "")?"selected":""?>>No File
@@ -309,7 +321,53 @@ GLM_TOOLBOX::html_nav_table($nav,$navWidth);
     <input type="submit" name="Submit Query">
     </td>
   </tr>
+  <tr>
+    <th colspan=4>
+    Search Dates Ranges
+    </th>
+  </tr>
+  <tr>
+    <th colspan=2>
+    From
+    </th>
+    <th colspan=2>
+    To
+    </th>
+  </tr>
+
+  <?if($p_date_from){?>
+  <tr>
+    <th colspan=4>
+    Arrival Date
+    </th>
+  </tr>
+  <tr>
+  <td align="center" colspan=2> <?echo $p_date_from?> </td>
+  <td align="center" colspan=2> <?echo $p_date_to?> </td>
+  </tr>
+  <?}?>
+  <?if($a_date_from){?>
+  <tr>
+    <th colspan=4>
+     Departure Date
+    </th>
+  </tr>
+  <tr>
+  <td align="center" colspan=2> <?echo $a_date_from?> </td>
+  <td align="center" colspan=2> <?echo $a_date_to?> </td>
+  </tr>
+  <?}?>
+  <tr>
+    <th colspan=4>
+    Create Date
+    </th>
+  </tr>
+  <tr>
+  <td align="center" colspan=2> <?echo $c_date_from?> </td>
+  <td align="center" colspan=2> <?echo $c_date_to?> </td>
+  </tr>
+
   </table>
-<?php
-GLM_TOOLBOX::footer();
+<?
+footer();
 ?>
index c253eb3..a4bec47 100755 (executable)
 <?php
-include "../../setup.phtml";
-include "contact_setup.inc";
-if (!$start) {
-       $start = 0;
-}
+require_once '../../setup.phtml';
+require_once 'contact_setup.inc';
+extract($_POST);
+if(!$start)
+    $start = 0;
 
-if ($postquery) {
-       $query_string = $postquery;
-}
-$checkqs = "SELECT     count(*) as contacts
-                   FROM        ".TABLE;
+if($postquery)
+    $query_string = $postquery;
+if(!$dbd = db_connect())
+    html_error(DB_ERROR_MSG."no connection",1);
 
-if (!$checkres = $DB->db_auto_get_data($checkqs)) {
-       GLM_TOOLBOX::html_error(DB_ERROR_MSG.__LINE__.$checkqs,1);
-}
+$checkqs = "SELECT  count(*) as contacts
+            FROM    ".TABLE;
 
-$numcontacts = $checkres[0]['contacts'];
-if ($numcontacts == 0) {
-       GLM_TOOLBOX::html_error("There are no contacts in the database",1);
-}
+if(!$checkres = db_exec($dbd,$checkqs))
+    html_error(DB_ERROR_MSG.__LINE__.$checkqs,1);
+
+$numcontacts = pg_result($checkres,0,"contacts");
+if($numcontacts == 0)
+    html_error("There are no contacts in the database",1);
 
 if(!isset($back) && !isset($query_string)) {
-       $query = "SELECT        ".ID.",*
-                         FROM          ".TABLE."
-                         WHERE         ".WHERE."
-                         ORDER BY      lname,fname";
+    $query = "SELECT    ".ID.",*
+              FROM      ".TABLE."
+              WHERE     ".WHERE."
+              ORDER BY  lname,fname";
 
-       $query = addslashes($query);
-       $qs = "SELECT   id
-                  FROM         query_db
-                  WHERE        query_name = '(current)'";
+    $query = addslashes($query);
+    $qs = "SELECT   id
+           FROM     query_db
+           WHERE    query_name = '(current)'";
 
-       if (!$res = $DB->db_exec($qs)) {
-               GLM_TOOLBOX::html_error(DB_ERROR_MSG.__LINE__.$qs,1);
-    }
+    if(!$res = db_exec($dbd,$qs))
+        html_error(DB_ERROR_MSG.__LINE__.$qs,1);
 
-       if ($DB->db_numrows($res)==0) {
-        $qs = "INSERT
-               INTO    query_db
-                        (query,query_name)
-               VALUES  ('$query','(current)')";
-       } else {
-               $id = $res->fetchColumn();
-               $qs = "UPDATE   query_db
-                          SET          query = '$query',
-                                       file = '',
-                                       delimiter = ''
-                          WHERE        id = $id";
-       }
-       if (!$res = $DB->db_exec($qs)) {
-               html_error(DB_ERROR_MSG.__LINE__.$qs,1);
+    if(db_numrows($res)==0) {
+    $qs = "INSERT
+           INTO     query_db
+                    (query,query_name)
+           VALUES   ('$query','(current)')";
     }
-       unset($qs);
+    else {
+        $id = pg_result($res,0,"id");
+        $qs = "UPDATE   query_db
+               SET      query = '$query',
+                        file = '',
+                        delimiter = ''
+               WHERE    id = $id";
+    }
+    if(!$res = db_exec($dbd,$qs))
+        html_error(DB_ERROR_MSG.__LINE__.$qs,1);
+    unset($qs);
 }
 
-if ($delimiter == "csv") {
-       $csv = TRUE;
+if($delimiter == "csv")
+    $csv = TRUE;
+
+if(isset($query_string)) {
+    $query_string = strtr($query_string,"\n"," ");
+    $query_string = strtr($query_string,"\t"," ");
+    $query_string = stripslashes($query_string);
+    $qs = $query_string;
 }
+else {
+    $queryqs = "SELECT  query
+                FROM    query_db
+                WHERE   query_name LIKE '(current)'";
 
-if (isset($query_string) && $query_string) {
-       $query_string = strtr($query_string,"\n"," ");
-       $query_string = strtr($query_string,"\t"," ");
-       $query_string = stripslashes($query_string);
-       $qs = $query_string;
-} elseif ($query_no) {
-       $qs = "select query from query_db where id = $query_no";
-       $queryres = $DB->db_exec($qs);
-       if ($queryres->rowCount() == 0) {
-               $qs = "SELECT   ".ID.",*
-                         FROM          ".TABLE."
-                         WHERE         ".WHERE."
-                         ORDER BY      lname,fname";
-       } else {
-               $qs = $queryres->fetchColumn();
-       }
-} else {
-       $queryqs = "SELECT      query
-                               FROM    query_db
-                               WHERE   query_name LIKE '(current)'";
-       $queryres = $DB->db_exec($queryqs);
-       if ($queryres->rowCount() == 0) {
-               $qs = "SELECT   ".ID.",*
-                         FROM          ".TABLE."
-                         WHERE         ".WHERE."
-                         ORDER BY      lname,fname";
-       } else {
-               $qs = $queryres->fetchColumn();
-       }
+    if(!$queryres = db_exec($dbd,$queryqs)) {
+        $qs = "SELECT   ".ID.",*
+              FROM      ".TABLE."
+              WHERE     ".WHERE."
+              ORDER BY  lname,fname";
+    }
+    else {
+        //print_r($queryrow);
+        $qs = pg_result($queryres,0,"query");;
+    }
 }
 
-GLM_TOOLBOX::top("List Contacts","help/contact.phtml?key=List");
+top("List Contacts","help/contact.phtml?key=List");
 ?>
 <script src="wm.js"></script>
 <script src="msg.js"></script>
-<table id="admin-list-table">
-<?php
-GLM_TOOLBOX::html_nav_table($nav,$navWidth);
-if (NEWSLETTER) {
-$mquery = "select id,subject,last_update from news_response order by last_update desc;";
-       $mres = $DB->db_exec($mquery);
-    $mailout = array();
-       while ($mrow = $mres->fetch())
-       {
-               $mailout[] = $mrow;
-       }
+<?
+html_nav_table($nav,3);
+if(NEWSLETTER){
+    if(NEWSLETTER_TYPE == "TEXT"){
+        ?>
+        <?
+    }
+    elseif(NEWSLETTER_TYPE == "HTML"){
+        ?>
+        <?
+    }
+$mquery = "SELECT subject FROM  news_response";
+$mres = db_exec($dbd,$mquery);
+$mailout = pg_result($mres,0,'subject');
 ?>
-<script type="text/javascript">
-       var remind;
-       remind = 'This will mailout the Newsletter\n';
+<script lang="javascript">
+var remind;
+remind = 'This will mailout the Newsletter\n';
+remind += '<?echo $mailout?>\n';
 </script>
-<table id="admin-edit-table" style="width:500px;">
-  <tr>
-    <th colspan=2>
-       <form action="mailout.phtml" method="POST" onSubmit="return(confirm(remind));">
-               <select name="mail_id" style="width:100%;"><?
-       unset($mrow);
-       foreach ($mailout as $mrow) {
-               echo '<option value="'.$mrow["id"].'">';
-               echo ' '.htmlspecialchars(strip_tags($mrow["subject"]));
-               echo ' (Updated: '.$mrow["last_update"].')';
-               echo '</option>';
-       }
-       ?>
-         </select>
-         <input type="hidden" name="postmail" value="<?echo $qs?>">
-         <input type="submit" value="Mail Out the Newsletter">
-       </form>
-       </th>
+<table id="admin-list-table">
+    <tr>
+  <th colspan=2>
+<form action="mailout.phtml" method="POST" onSubmit="
+return(confirm(remind));
+">
+<input type="hidden" name="postmail" value="<?echo $qs?>">
+<input type="submit" value="Mail Out the Newsletter">
+</form>
+  </th>
 </tr>
-<?php }
+<?}?>
+<tr>
+    <th> Functions: </th>
+    <th> Contact Info   </th>
+</tr>
+<?
 $totalqs = substr_replace($qs," count(*) as total FROM ",strpos($qs,"SELECT")+7,strpos($qs,"FROM")-3);
-if (strpos($totalqs,"ORDER BY")!=0) {
-       $totalqs = substr_replace($totalqs,"",strpos($totalqs,"ORDER"));
-}
-if (!$totalres = $DB->db_exec($totalqs)) {
-       GLM_TOOLBOX::html_error(DB_ERROR_MSG.__LINE__.$totalqs,1);
-}
-if ($totalres->rowCount() == 0) {
-       $totalnum = 0;
-} else {
-       $totalnum = $totalres->fetchColumn();
-}
+if(strpos($totalqs,"ORDER BY")!=0)
+    $totalqs = substr_replace($totalqs,"",strpos($totalqs,"ORDER"));
+if(!$totalres = db_exec($dbd,$totalqs))
+    html_error(DB_ERROR_MSG.__LINE__.$totalqs,1);
+if(count($totalres)==0)
+    $totalnum = 0;
+else
+    $totalnum = pg_result($totalres,0,"total");
 $qs .= " LIMIT ".ENTRIES_PER_PAGE." OFFSET ".$start;
-$res = $DB->db_exec($qs);
+$res = db_exec($dbd,"SET DATESTYLE TO 'SQL,US';".$qs);
 ?>
 <tr>
-  <td colspan="2"><?php echo $totalnum?>Result(s)
-<?php
-if ($_REQUEST['Action']) {
-    echo '<div style="background-color:green;color:white;padding:5px;">'.$_REQUEST['Action'].' Successfully!</div>';
-}
-?></td>
+  <td colspan="2"><?echo $totalnum?>Result(s)</td>
 </tr>
-<?php
-if(!$res) GLM_TOOLBOX::html_error(DB_ERROR_MSG.__LINE__.$qs,1);
+<?
+if(!$res) html_error(DB_ERROR_MSG.__LINE__.$qs,1);
 // What page are you on?
-if ($start==0) {
-       $page == 1;
-} else {
-       $page = ($start / ENTRIES_PER_PAGE) + 1;
-}
+if($start==0)
+    $page == 1;
+else
+    $page = ($start / ENTRIES_PER_PAGE) + 1;
 $totalpages = floor($totalnum / ENTRIES_PER_PAGE);
 $totalpages++;
 
 $result_string = "";
-$num = $DB->db_numrows($res);
-if (!$start) {
-       $start = 0;
-}
-$begin  = 0;
+$num = db_numrows($res);
+if(!$start)
+    $start = 0;
+$begin = 0;
 $ending = $num;
-
-$stuff = "query_string=".urlencode($query_string)."&file=".$file."&delimiter=".$delimiter."&csv=".$csv;
-// for paging results get a first page and last page link also
-// first page is easy use 0
-$first = "<a href=\"list_contact.phtml?".$stuff."&start=0\">FIRST</a> - ";
-// last page use total pages
-$lastpage = " - <a href=\"list_contact.phtml?".$stuff."&start=".( ( $totalpages - 1 ) * ENTRIES_PER_PAGE )."\">Last</a>";
-if ($totalnum > ENTRIES_PER_PAGE && ( $page != $totalpages ) ) {
-       $end = ENTRIES_PER_PAGE + $start;
-} else {
-       $end = $totalnum;
-}
+if($totalnum > ENTRIES_PER_PAGE && ( $page != $totalpages ) )
+    {
+    $end = ENTRIES_PER_PAGE + $start;
+    }
+else
+    {
+    $end = $totalnum;
+    }
 $last = $start - ENTRIES_PER_PAGE;
-if (!$query_string) {
-       $query_string = $qs;
-       $query_string = str_replace(" LIMIT ".ENTRIES_PER_PAGE." OFFSET ".$start,"",$query_string);
-}
-
-if (($start - ENTRIES_PER_PAGE) < 0) {
-       $prev = "PREV";
-} else {
-       $prev = "<a href=\"list_contact.phtml?".$stuff."&start=".$last."\">PREV</a>";
-}
-if ($end < $totalnum) {
-       $next = "<a href=\"list_contact.phtml?".$stuff."&start=".$end."\">NEXT</a>";
-} else {
-       $next = "NEXT";
-}
-?>
+if(!$query_string)
+    {
+    $query_string = $qs;
+    $query_string = str_replace(" LIMIT ".ENTRIES_PER_PAGE." OFFSET ".$start,"",$query_string);
+    }
+$stuff = "query_string=".urlencode($query_string)."&file=".$file."&delimiter=".$delimiter."&csv=".$csv;
+if(($start - ENTRIES_PER_PAGE) < 0)
+    $prev = "PREV";
+else
+    $prev = "<a href=\"list_contact.phtml?".$stuff."&start=".$last."\">PREV</a>";
+if($end < $totalnum)
+    $next = "<a href=\"list_contact.phtml?".$stuff."&start=".$end."\">NEXT</a>";
+else
+    $next = "NEXT";
+    ?>
 <tr>
  <td colspan="2">
- <?php
+ <?
  if($num!=0)
- echo $first.$prev."-".($start+1)."-to-".$end."-".$next.$lastpage;
+ echo $prev."-".($start+1)."-to-".$end."-".$next;
  ?>
  </td>
 </tr>
-<tr>
-  <td colspan="2">
-<?php
-if (count($res)>0) {
-       for ($i=$begin;$i<$ending;$i++) {
-               if (!$row = $DB->db_fetch_array($res,$i,PGSQL_ASSOC)) {
-                       GLM_TOOLBOX::html_error(DB_ERROR_MSG.__LINE__,1);;
-               }
-        $col = 0;
-        foreach ($row as $fieldName => $fieldVal) {
-                       $fields[$col] = $fieldName;
-            if ($i == $begin) {
-                $head_ar[] = $fieldName;
+<?
+if(count($res)>0)
+    {
+    for($i=$begin;$i<$ending;$i++)
+        {
+        if(!$row = db_fetch_array($res,$i,PGSQL_ASSOC))
+            html_error(DB_ERROR_MSG.__LINE__,1);;
+        for($b=1;$b<count($row);$b++) {
+            $fields[$b] = pg_fieldname($res,$b);
+            if($csv)
+                $result_string .= "\"".$row[$fields[$b]]."\"";
+            else
+                $result_string .= $row[$fields[$b]];
+            if($b != count($row)-1)
+                $result_string .= $delimiter;
+            if($b == count($row)-1)
+                $result_string .= "\n";
+        }
+        if($i%2==0) {
+            $background = " bgcolor=\"#bfbfbf\"";
+        }
+        else {
+            $background = " bgcolor=\"#e0e0e0\"";
+        }
+        ?>
+        <tr <?echo $background;
+    $id = ID;
+            ?>>
+          <td nowrap><a href="edit_contact.phtml?id=<?echo $row[$id]?>">
+          [Edit]</a>
+          <a href="update_contact.phtml?Command=Delete&id=<?echo $row[$id]?>" onClick="
+            if(confirm('This will delete this record Are you sure?')) {
+                return(true);
+            }else {
+                return(false);
             }
-            $body_ar[] = $fieldVal;
-            ++$col;
+            ">
+          [Delete]</a>
+          </td>
+          <td align=left>
+          <?
+          foreach($fields as $key) {
+          if($key != "id" && $key != "cust_id"
+                  && $key != "userid" && $key != "usernum"
+                  && $key != "usergroup" && $key != "passwd")
+            echo $row[$key]." ";
+          }
+          ?>
+          </td>
+        </tr>
+        <?
         }
-               if ($i == $begin) {
-                       $head_array = array_values($head_ar);
-               }
-               $contact_data[] = array_values($body_ar);
-               ?>
-               <tr <?php echo $background;
-       $id = ID;
-                       ?>>
-                <td nowrap><a href="edit_contact.php?<?php echo ID . '=' . $row[$id]?>&start=<?php echo $start;?>">
-                 [Edit]</a>
-                 <a href="update_contact.phtml?Command=Delete&id=<?php echo $row[$id]?>&start=<?php echo $start;?>" onClick="
-                       if(confirm('This will delete this record Are you sure?')) {
-                               return(true);
-                       }else {
-                               return(false);
-                       }
-                       ">
-                 [Delete]</a>
-                 </td>
-                 <td align=left>
-                 <?
-                 foreach($fields as $key) {
-                 if($key != "id" && $key != "cust_id"
-                                 && $key != "userid" && $key != "usernum"
-                                 && $key != "usergroup" && $key != "passwd")
-                       echo $row[$key]." ";
-                 }
-                 ?>
-                 </td>
-               </tr>
-               <?
-       }
-}
-       ?>
-       </td>
-</tr>
-       </table>
-       <?php
-if(isset($file) && $file != "" && $DB->db_numrows($res) > 0) {
+    }
+    ?>
+    <?
+if(isset($file) && $file != "" && db_numrows($res) > 0) {
 ?>
-<table>
 <tr>
-    <th colspan=2>Download files</th>
+    <th>Download files</th>
 </tr>
 <tr>
-  <td><form action="download.phtml">
-  <input type="hidden" name="query_string" value="<?php echo $query_string?>">
-  <input type="hidden" name="file" value="<?php echo $file?>">
-  <input type="hidden" name="delimiter" value="<?php echo $delimiter?>">
-  <input type="hidden" name="csv" value="<?php echo $csv?>">
+  <td colspan=2><form action="download.phtml">
+  <input type="hidden" name="query_string" value="<?echo $query_string?>">
+  <input type="hidden" name="file" value="<?echo $file?>">
+  <input type="hidden" name="delimiter" value="<?echo $delimiter?>">
+  <input type="hidden" name="csv" value="<?echo $csv?>">
   <input type="submit" value="Download Report">
   </form></td>
 </tr>
-</table>
-<?php
+<?
 }
-GLM_TOOLBOX::html_nav_table($nav,5);
-GLM_TOOLBOX::footer();
+echo '</table>';
+html_nav_table($nav,3);
+footer();
 ?>
index 3f4206e..b8b077b 100644 (file)
@@ -2,11 +2,11 @@
 include_once '../../setup.phtml';
 include "contact_setup.inc";
 GLM_TOOLBOX::top('Contact Inquiries', '');
-//     Adjust the nav for this page, add the Edit Groups page.
+//  Adjust the nav for this page, add the Edit Groups page.
 if (is_array($nav) && array_key_exists('Contact Inquiry Fields', $nav))
 {
-       $tmp = array('Inquiry Groups' => 'list_groups.php');
-       array_insert($nav, 'Contact Inquiry Fields', $tmp); 
+    $tmp = array('Inquiry Groups' => 'list_groups.php');
+    array_insert($nav, 'Contact Inquiry Fields', $tmp);
 }
 GLM_TOOLBOX::html_nav_table($nav, $navWidth);
 $qs = "
@@ -16,40 +16,40 @@ $qs = "
 $result = $DB->db_exec( $qs );
 ?>
 <table id="admin-list-table">
-       <tr>
-         <th colspan="2">
+    <tr>
+      <th colspan="2">
           <form action="edit_group.php" method="POST" name="edit_group">
-                       <input type="submit" name="Command" value="Add Group" />
-               </form>
-         </th>
-       <tr>
-       <tr>
-         <th>Options:</th>
-         <th>Group:</th>
-       <tr>
-       <?php
-       if($DB->db_numrows($result) > 0) 
-       {
-               for($i=0 ;$i < $DB->db_numrows($result); $i++) 
-               {
-                       $data = $DB->db_fetch_array($result, $i, PGSQL_ASSOC);  
-                       ?>
-                       <tr>
-                               <td width="10" nowrap><a href="edit_group.php?id=<?echo $data['id'];?>&amp;Command=Edit">[Edit / Delete]</a></td>
-                               <td width="80%" align="left"><?echo $data['name'];?>
-                       </tr>
-                       <?php
-               }
-       }
-       else 
-       {
-               ?>
-               <tr>
-                       <th colspan="2">Nothing in the database yet</th>
-               </tr>
-               <?php
-       }
-       ?>
+            <input type="submit" name="Command" value="Add Group" />
+        </form>
+      </th>
+    <tr>
+    <tr>
+      <th>Options:</th>
+      <th>Group:</th>
+    <tr>
+    <?php
+    if($DB->db_numrows($result) > 0)
+    {
+        for($i=0 ;$i < $DB->db_numrows($result); $i++)
+        {
+            $data = $DB->db_fetch_array($result, $i, PGSQL_ASSOC);
+            ?>
+            <tr>
+                <td width="10" nowrap><a href="edit_group.php?id=<?echo $data['id'];?>&amp;Command=Edit">[Edit / Delete]</a></td>
+                <td width="80%" align="left"><?echo $data['name'];?>
+            </tr>
+            <?php
+        }
+    }
+    else
+    {
+        ?>
+        <tr>
+            <th colspan="2">Nothing in the database yet</th>
+        </tr>
+        <?php
+    }
+    ?>
 </table>
 <?php
 GLM_TOOLBOX::footer();
index 18b12c7..769f17c 100755 (executable)
@@ -2,42 +2,42 @@
 require_once '../../setup.phtml';
 require_once 'contact_setup.inc';
 
-GLM_TOOLBOX::top("Query DB","");
+top("Query DB","");
 
-GLM_TOOLBOX::html_nav_table($nav,$navWidth);
+html_nav_table($nav,3);
 ?>
-<script src="<?echo MEDIA_BASE_URL."admin/wm.js"?>"></script>
-<script src="<?echo MEDIA_BASE_URL."admin/msg.js"?>"></script>
+<script src="<?echo URL_BASE."admin/wm.js"?>"></script>
+<script src="<?echo URL_BASE."admin/msg.js"?>"></script>
 <table id="admin-list-table">
-<tr bgcolor="#2f4f4f">
-  <th class="theader">
+<tr>
+  <th>
   Functions:
   </th>
-  <th class="theader">
+  <th>
   Queries in database
   </th>
 </tr>
 <?
-//if(!$dbd = db_connect()) html_error(DB_ERROR_MSG,0);
+if(!$dbd = db_connect()) html_error(DB_ERROR_MSG,0);
+
+$qs = "SELECT   id,query_name
+       FROM     query_db";
 
-$qs = "SELECT  id,query_name 
-          FROM         query_db";
+if(!$res = db_exec($dbd,$qs)) html_error(DB_ERROR_MSG.$qs,0);
 
-if(!$res = $DB->db_exec($qs)) GLM_TOOLBOX::html_error(DB_ERROR_MSG.$qs,0);
+for($i=0;$i<db_numrows($res);$i++) {
+    $row = db_fetch_array($res,$i,PGSQL_ASSOC);
 
-for($i=0;$i<$DB->db_numrows($res);$i++) {
-       $row = $DB->db_fetch_array($res,$i,PGSQL_ASSOC);
-       
 ?>
-       <script lang="javascript">
-       var o<?echo $i?> = new Object();
-       o<?echo $i?>.msg = 'You are about to Permanently Delete this Query';
-       o<?echo $i?>.url = 'del_query.phtml?id=<?echo $row[id]?>';
-       o<?echo $i?>.popup = '1';
-       o<?echo $i?>.popup.name = "delwin";
-       o<?echo $i?>.width = 630;
-       o<?echo $i?>.height = 300;
-       </script>
+    <script lang="javascript">
+    var o<?echo $i?> = new Object();
+    o<?echo $i?>.msg = 'You are about to Permanently Delete this Query';
+    o<?echo $i?>.url = 'del_query.phtml?id=<?echo $row[id]?>';
+    o<?echo $i?>.popup = '1';
+    o<?echo $i?>.popup.name = "delwin";
+    o<?echo $i?>.width = 630;
+    o<?echo $i?>.height = 300;
+    </script>
 <tr>
  <td>
  <a href="query_contact.phtml?query_no=<?echo $row[id]?>">[Recall]</a>
@@ -53,5 +53,5 @@ for($i=0;$i<$DB->db_numrows($res);$i++) {
 <?}?>
 </table>
 <?
-GLM_TOOLBOX::footer();
+footer();
 ?>
old mode 100644 (file)
new mode 100755 (executable)
index b190e9c..b6c62b9
@@ -1,14 +1,15 @@
 <html>
 <head>
-<title>Mailing out The Newsletter</title>
+<title>Mailing out The Newsletter (Retail)</title>
 </head>
-<body bgcolor="white">
+<body bgcolor=white>
 <?php
 require_once '../../setup.phtml';
 require_once 'contact_setup.inc';
 
 // File names for SPAMerizer
-$Filename = tempnam( "/var/spool/SPAMerizer", "MOUNP" );
+//$Filename = tempnam( "/var/spool/SPAMerizer", "TROUT" );
+$Filename = tempnam( "./spam", "TROUT" );
 unlink($Filename);
 
 $HeadFilename = $Filename.".head";
@@ -16,119 +17,147 @@ $BodyFilename = $Filename.".body";
 $ToFilename = $Filename.".to";
 $ReadyFilename = $Filename.".ready";
 
+if(!$dbd = db_connect(CONN_STR))
+    html_error(DB_ERROR_MSG,1);
 $postmail = stripslashes($postmail);
-
-$pattern   = '/SELECT.*FROM/is';
-$replace   = "SELECT email INTO TEMPORARY temp_table FROM";
-$postmail  = preg_replace($pattern, $replace, $postmail);
-$postmail  = preg_replace("/ORDER BY.*/is","", $postmail);
-$postmail .= " AND ".MAILOK;
-
-if (!$mailres = $DB->db_exec($postmail)) {
-       html_error(DB_ERROR_MSG.__LINE__.$postmail, 1);
-}
-
-$mailqs = "SELECT 
-                  DISTINCT ON (email) email
-                  FROM         temp_table
-                  GROUP BY email;";
+$postmail = preg_replace("%SELECT.*FROM%is","SELECT email INTO TEMPORARY temp_table FROM",$postmail);
+$postmail = preg_replace("%ORDER BY.*%is","",$postmail);
+$postmail .= " AND ".MAILOK." = 't'";
+$postmail .= ";CREATE INDEX email_indx on temp_table (email);";
+
+if(!$mailres = db_exec($dbd,$postmail))
+    html_error(DB_ERROR_MSG.__LINE__.$postmail,1);
+
+$mailqs = "SELECT
+           DISTINCT ON (email) email
+           FROM     temp_table
+           GROUP BY email;";
 flush();
-if (!$mailres = $DB->db_exec($mailqs)) {
-       html_error(DB_ERROR_MSG.__LINE__.$mailqs, 1);
-}
-
-if ($DB->db_numrows($mailres)>0) {
-       for($a=0;$a<$DB->db_numrows($mailres);$a++) {
-               $mvdata = $DB->db_fetch_array($mailres, $a, PGSQL_ASSOC);       
-               $email = trim($mvdata["email"]); 
-        if ($email) {
-            $mail[] = $email;  
+if(!$mailres = db_exec($dbd,$mailqs))
+    html_error(DB_ERROR_MSG.__LINE__.$mailqs,1);
+
+if(db_numrows($mailres)>0)
+    {
+    for($a=0;$a<db_numrows($mailres);$a++)
+        {
+        $mvdata = db_fetch_array($mailres,$a,PGSQL_ASSOC);
+        $email = trim($mvdata["email"]);
+        if($email)
+            {
+            $mail[] = $email;
+            }
         }
     }
+if(is_array($mail) && count($mail)>0) {
+    // write the temp.to file
+    $mail = implode("\n",$mail);
+    $fp = fopen($ToFilename,"w");
+    fputs($fp,$mail,strlen($mail));
+    fclose($fp);
 }
-if (is_array($mail) && count($mail)>0) {
-       // write the temp.to file
-       $mail = implode("\n", $mail);
-       $fp = fopen($ToFilename, "w");
-       fputs($fp, $mail, strlen($mail));
-       fclose($fp);
-} else {
-       $mail = "";
+else {
+    $mail = "";
 }
 
 
-if ($mail != "") {
-       // I am changing this to a two part mime type email
-       // html and text
-       // using class_html     
-       $responseqs = "SELECT   * 
-                                  FROM         news_response
-                                  WHERE        id = $mail_id";
-       if (!$resres = $DB->db_exec($responseqs)) {
-               html_error(DB_ERROR_MSG.$responseqs, 0);
-    }
-
-       $responserow = $DB->db_fetch_array($resres, 0, PGSQL_ASSOC);
-
-       $subject = trim($responserow['subject']);
-       $data['subject'] = &$subject;
-       $message = $responserow['response'];
-       // html part of email
-       //$data['response'] = stripslashes(nl2br($message));
-       $data['response'] = $message;
-       $data['url'] = MEDIA_BASE_URL;
-       
-       $html = explode_template(NEWSLETTER_PROTOTYPE,$data);
-
-       // text part of email
-       $text = strip_tags($message);
-       $text .= "\n\n-------------------------------------------------------------------\n";
-       $text .= "You are receiving this message because you have expressed an interest in\n";
-       $text .= "receiving specials and information from ".SITENAME.". If you do not\n";
-       $text .= "wish to receive future items of this nature, please reply to this e-mail\n";
-       $text .= "with the word \"CANCEL\" on the subject line. You will then be removed \n";
-       $text .= "from future mailings.\n";
-       $text .= "-------------------------------------------------------------------\n";
-       
-       // Write the temp.header file
-       $glm_headers = "NotifyAddr: ".OWNER_EMAIL."\n"
-               . "ProcessName: ".SITENAME."\n"
-               . "From: ".FROM_NEWS_EMAIL."\n"
-               . "ReportInterval: 2\n"
-               . "BlockSize: 1\n"
-               . "ProductionMode: ".PRODUCTION_MODE."\n";
-
-       $fp = fopen($HeadFilename, "w");
-       fputs($fp, $glm_headers, strlen($glm_headers));
-       fclose($fp);
-
-       $headers =      "From: ".FROM_NEWS_EMAIL."\n".
-                               "To: ".OWNER_EMAIL."\n".
-                               "Subject: $subject\n".
-                               "Reply-to: ".REPLY_TO."\n".
-                               "Mime-Version: 1.0\n".
-                               "Content-Type: multipart/alternative; boundary=ContentBoundry\n\n";     
-       $fp = fopen($BodyFilename,"w");
-       if(HTML_EMAIL=="ON"){
-               $body_html = '--ContentBoundry
-Content-Type: text/plain; charset="UTF-8"
+if($mail != "") {
+    // I am changing this to a two part mime type email
+    // html and text
+    // using class_html
+    $responseqs = "SELECT   *
+                   FROM     news_response
+                   WHERE    id = 1";
+    if(!$resres = db_exec($dbd,$responseqs))
+        html_error(DB_ERROR_MSG.$responseqs,0);
+
+    $responserow = db_fetch_array($resres,0,PGSQL_ASSOC);
+    unset($data);
+    /*
+    ob_start();
+    require(BASE."bottomlinks.inc");
+    $data['bottomlinks'] = ob_get_contents();
+    ob_end_clean();
+    */
+
+    $subject = trim($responserow['subject']);
+    $data['subject'] = &$subject;
+    $data['url'] = URL_BASE;
+    $message = $responserow['response'];
+    // html part of email
+    //$data['response'] = stripslashes(nl2br($message));
+    $message = str_replace("COUPON","<!-- coupon -->",$message);
+    $message = str_replace("IMAGE1","<!-- image -->",$message);
+    $message = str_replace("IMAGE2","<!-- image2 -->",$message);
+    $message = str_replace("IMAGE3","<!-- image3 -->",$message);
+    $data['response'] = $message;
+
+    $data['image'] = add_image($responserow["image"],"right",$responserow['image_link']);
+    $data['image2'] = add_image($responserow["image2"],"left",$responserow['image2_link']);
+    $data['image3'] = add_image($responserow["image3"],"right",$responserow['image3_link']);
+    $data['coupon'] = add_image($responserow["coupon"],"right",$responserow['coupon_link']);
+    $data['url'] = URL_BASE;
+    $data['year'] = date("Y");
+    $data['bailout'] = "<br clear=\"all\"><br>-------------------------------------------------------------------<br>";
+    $data['bailout'] .= "You are receiving this message because you have expressed an interest in<br>";
+    $data['bailout'] .= "receiving specials and information from ".SITENAME.". If you do not<br>";
+    $data['bailout'] .= "wish to receive future items of this nature, please reply to this e-mail<br>";
+    $data['bailout'] .= "with the word \"CANCEL\" on the subject line. You will then be removed <br>";
+    $data['bailout'] .= "from future mailings.  ";
+    $data['bailout'] .= "<a href=\"".URL_BASE."\"><B> ".SITENAME."</b></a><br>";
+    $data['bailout'] .= "-------------------------------------------------------------------<br>";
+    $html = explode_template(NEWSLETTER_PROTOTYPE,$data);
+
+    // text part of email
+    $text = strip_tags($message);
+    $text .= "\n\n-------------------------------------------------------------------\n";
+    $text .= "You are receiving this message because you have expressed an interest in\n";
+    $text .= "receiving specials and information from ".SITENAME.". If you do not\n";
+    $text .= "wish to receive future items of this nature, please reply to this e-mail\n";
+    $text .= "with the word \"CANCEL\" on the subject line. You will then be removed \n";
+    $text .= "from future mailings.\n";
+    $text .= "-------------------------------------------------------------------\n";
+
+    // Write the temp.header file
+    $glm_headers = "NotifyAddr: ".OWNER_EMAIL."\n"
+        . "ProcessName: ".SITENAME."\n"
+        . "From: info@troutcreek.com\n"
+        . "ReportInterval: 2\n"
+        . "BlockSive: 20\n"
+        . "ProductionMode: ".PRODUCTION_MODE."\n";
+
+    $fp = fopen($HeadFilename,"w");
+    fputs($fp,$glm_headers,strlen($glm_headers));
+    fclose($fp);
+
+    $headers =  "From: TroutCreekNews <news@troutcreek.com>\n".
+                "Return-To: ".OWNER_EMAIL."\n".
+                "To: ".OWNER_EMAIL."\n".
+                "Subject: $subject\n".
+                "Reply-to: ".REPLY_TO."\n".
+                "Mime-Version: 1.0\n".
+                "Content-Type: multipart/alternative; boundary=ContentBoundry\n\n";
+    $fp = fopen($BodyFilename,"w");
+    if(HTML_EMAIL=="ON"){
+        $body_html = '--ContentBoundry
+Content-Type: text/plain; charset="utf-8"
 '.$text.'
 --ContentBoundry
-Content-Type: text/html; charset="UTF-8"
+Content-Type: text/html; charset="utf-8"
 
 '.$html.'
 
 --ContentBoundry--';
-               fputs($fp, $headers, strlen($headers));
-               fputs($fp, $body_html, strlen($body_html));
-       } else {
-               fputs($fp, $headers, strlen($headers));
-               fputs($fp, $text, strlen($text));       
-       }
-       fclose($fp);
-       // write the temp.ready file and your done!
-       $fp = fopen($ReadyFilename, "w");
-       fclose($fp);
+        fputs($fp,$headers,strlen($headers));
+        fputs($fp,$body_html,strlen($body_html));
+    }
+    else{
+        fputs($fp,$headers,strlen($headers));
+        fputs($fp,$text,strlen($text));
+    }
+    fclose($fp);
+    // write the temp.ready file and your done!
+    $fp = fopen($ReadyFilename,"w");
+    fclose($fp);
 ?>
 <table>
 <tr>
@@ -145,15 +174,16 @@ Content-Type: text/html; charset="UTF-8"
 </tr>
 </table>
 <?
-} else {
+    }
+    else {
 ?>
 <table width=500 bgcolor="#e0e0e0">
 <tr bgcolor="#2f4f4f">
   <th><font color=white>Newsletter Not Sent!</th>
   </tr>
 </table>
-<?php
-}
+<?
+    }
 
 ?>
 </body>
index 9a145a7..54f221b 100755 (executable)
@@ -1,42 +1,97 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
 <html>
 <head>
-       <meta http-equiv="content-type" content="text/html;charset=utf-8">
+<title>Trout Creek Condominiums Newsletter</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<style type="text/css">
+<!--
+td, div {   font-family: Arial, Helvetica, sans-serif;
+    font-size: 12px; color: #000000;}
+
+a:link { color: #0f3220; }
+a:visited { color: #0f3220; }
+a:hover { color: #4e6e52; }
+a:link { color: #0f3220; }
+
+h1 {
+    font-family: Arial, Helvetica, sans-serif;
+    font-size: 18px;
+    font-weight: bold;
+    color: #213A62;
+    margin-bottom: 4px;}
+h2 {
+    font-family: Arial, Helvetica, sans-serif;
+    font-size: 14px;
+    font-weight: bold;
+    color: #0f3220;
+    margin-bottom: 3px;
+    margin-top: 15px;
+    clear: both;
+    }
+.address {
+    float: bottom;
+    font-family: Arial, Helvetica, sans-serif;
+    font-size: 11px;
+    color: #1c3962;
+    margin: 10px;}  
+-->
+</style>
 </head>
-<body>
-<table cellspacing="0" cellpadding="0" border="0" width="100%">
-       <tr>
-               <td align="center">
-      <table cellspacing="0" cellpadding="0" border="0" width="550" bgcolor="#ffffff">
-       <tr>
-               <td>
-                                               <a href="<!-- url -->"><img src="<!-- url -->assets/nHeader.jpg" width="550" height="114" alt="" style="border: 0; display: block;"></a>
-                                       </td>
-                               </tr>
-                               <tr>
-                                       <td>
-            <table cellspacing="15" cellpadding="0" border="0">
-               <tr>
-                       <td>
-                                                                       <font face="arial, helvetica, sans-serif" size="2">
-                                                                               <!-- response -->
-                                                                       </font>
-                                                               </td>
-                                                       </tr>
-                                                       <tr>
-                                                               <td>
-                                                                       <font face="arial, helvetica, sans-serif" size="1">
-                                                                       <hr>
-                                                                               <!-- bailout -->
-                                                                       </font>
-                                                               </td>
-                                                       </tr>
-                                               </table>
-                                       </td>
-                               </tr>
-                       </table>
-               </td>
-       </tr>
-</table>                                                                       
+
+<body bgcolor="#FFFFFF" text="#000000">
+<style type="text/css">
+<!--
+td, div {   font-family: Arial, Helvetica, sans-serif;
+    font-size: 12px; color: #000000;}
+
+a:link { color: #0f3220; }
+a:visited { color: #0f3220; }
+a:hover { color: #4e6e52; }
+a:link { color: #0f3220; }
+
+h1 {
+    font-family: Arial, Helvetica, sans-serif;
+    font-size: 18px;
+    font-weight: bold;
+    color: #213A62;
+    margin-bottom: 4px;}
+h2 {
+    font-family: Arial, Helvetica, sans-serif;
+    font-size: 14px;
+    font-weight: bold;
+    color: #0f3220;
+    margin-bottom: 3px;
+    margin-top: 15px;
+    clear: both;
+    }
+.address {
+    float: bottom;
+    font-family: Arial, Helvetica, sans-serif;
+    font-size: 11px;
+    color: #1c3962;
+    margin: 10px;}  
+-->
+</style>
+    <div align="center" style="border: 1px solid #2a8251; width: 550px; margin: 0 auto;">
+        <div align="left">
+            <table cellspacing="0" cellpadding="0" border="0" width="550" style="width: 500px;">
+                <tr>
+                    <td width="275"><a href="<!-- url -->"><img src="<!-- url -->assets/newsletter-logo.gif" width="275" height="91" alt="" title="Trout Creeks Website" border="0" style="display: block;"></a></td>
+                    <td width="138"><a href="http://reservations.troutcreek.com/irm/AccessType.ASP"><img src="<!-- url -->assets/newsletter-reservation.gif" width="138" height="91" alt="" title="Make a Reservation" border="0" style="display: block;"></a></td>
+                    <td width="137"><a href="<!-- url -->specialspackages-4/"><img src="<!-- url -->assets/newsletter-specials.gif" width="137" height="91" alt="" title="Check our current specials" border="0" style="display: block;"></a></td>
+                </tr>
+            </table>    
+            <div style="margin: 10px;">
+                <!-- response -->
+            </div>  
+            <div style="font-size: 11px;"><!-- bailout --></div>
+            <div class="address">
+            4749 Pleasantview ~ 
+        Harbor Springs, MI 49740 ~ 
+            <b>1-231-526-2148 ~ 
+            1-800-748-0245</b> ~ 
+            <a href="mailto:info@troutcreek.com">info@troutcreek.com</a>
+        </div>
+        </div>
+    </div>
 </body>
 </html>
index 4fd960b..6da74a0 100755 (executable)
@@ -1,25 +1,21 @@
 \connect - postgres
 
 CREATE TABLE "contact" (
-       "id" SERIAL PRIMARY KEY, 
-       "create_date" date default current_date,
-       "fname" text,
-       "lname" text,
-       "company" text,
-       "address" text,
-       "address2" text,
-       "city" text,
-       "state" text,
-       "zip" text,
-       "country" text,
-       "phone" text,
-       "fax" text,
-       "email" text,
-       "user_agent" text,
-       "remote_addr" text,
-       "interest" text,
-       "mail_ok" boolean default 'f',
-    "contact_type" text
+       "id" SERIAL, 
+       "create_date" date,
+       "fname" character varying(8104),
+       "lname" character varying(8104),
+       "address" character varying(8104),
+       "city" character varying(8104),
+       "state" character varying(8104),
+       "zip" character varying(8104),
+       "country" character varying(8104),
+       "phone" character varying(8104),
+       "fax" character varying(8104),
+       "email" character varying(8104),
+       "user_agent" character varying(8104),
+       "remote_addr" character varying(8104),
+       "mail_ok" boolean
 );
 
 REVOKE ALL on "contact" from PUBLIC;
@@ -31,11 +27,11 @@ GRANT ALL on "contact_id_seq" to "nobody";
 GRANT ALL on "contact_id_seq" to "postgres";
 
 CREATE TABLE "query_db" (
-       "id" SERIAL PRIMARY KEY
-       "query_name" text,
-       "query" text,
-       "file" text,
-       "delimiter" text
+       "id" SERIAL, 
+       "query_name" character varying(8000),
+       "query" character varying(8000),
+       "file" character varying(100),
+       "delimiter" character varying(100)
 );
 
 REVOKE ALL on "query_db" from PUBLIC;
@@ -47,54 +43,14 @@ GRANT ALL on "query_db_id_seq" to "nobody";
 GRANT ALL on "query_db_id_seq" to "postgres";
 
 CREATE TABLE "news_response" (
-       "id" SERIAL PRIMARY KEY
+       "id" SERIAL, 
        "subject" text,
        "response" text,
-       "image" text,
-       "image2" text,
-       "image3" text,
-       "image_align" text,
-       "image2_align" text,
-       "image3_align" text,
-       "mailout" date default current_date,
-       "last_update" date default current_date
+       "mailout"       date
 );
 
 REVOKE ALL on "news_response" from PUBLIC;
 GRANT ALL on "news_response" to "postgres";
 GRANT ALL on "news_response" to "nobody";
-GRANT ALL on "news_response_id_seq" to "nobody";
 
 INSERT INTO news_response (subject,response) values ('subject','response');
-
-CREATE UNIQUE INDEX contact_id_indx ON contact(id);
-CREATE INDEX contact_email_indx ON contact(email);
-CREATE INDEX contact_fname_indx ON contact(fname);
-CREATE INDEX contact_lname_indx ON contact(lname);
-CREATE INDEX contact_create_date_indx ON contact(create_date);
-CREATE UNIQUE INDEX news_response_id_indx ON contact(id);
-CREATE UNIQUE INDEX query_db_id_indx ON contact(id);
-
-CREATE TABLE contact_inq (
-    id serial NOT NULL,
-    header text,
-       pos integer,
-    description text,
-    image text,
-    groupid integer
-);
-REVOKE ALL ON TABLE contact_inq FROM PUBLIC;
-GRANT ALL ON TABLE contact_inq TO nobody;
-REVOKE ALL ON TABLE contact_inq_id_seq FROM PUBLIC;
-GRANT ALL ON TABLE contact_inq_id_seq TO nobody;
-ALTER TABLE ONLY contact_inq
-    ADD CONSTRAINT contact_inq_pkey PRIMARY KEY (id);
-
-CREATE TABLE inq_group (
-    id SERIAL PRIMARY KEY,
-    name text
-);
-GRANT ALL ON inq_group TO nobody;
-GRANT ALL ON inq_group_id_seq TO nobody;
-
-INSERT INTO inq_group (name) VALUES ('Areas of Interest');
index aec6264..553fd32 100755 (executable)
@@ -1,14 +1,37 @@
 <?php
 require_once '../../setup.phtml';
 require_once 'contact_setup.inc';
+unset($data);
+/*
+ob_start();
+require(BASE."bottomlinks.inc");
+$data['bottomlinks'] = ob_get_contents();
+ob_end_clean();
+*/
 
-$query = "SELECT * FROM news_response WHERE id = {$_REQUEST['id']}";
-$res = $DB->db_auto_get_data($query);
-$data['url'] = MEDIA_BASE_URL;
+$query = "SELECT * FROM news_response WHERE id = 1";
+$res = db_auto_get_data($query, CONN_STR);
+$data['url'] = URL_BASE;
 $data['subject'] = $res[0]["subject"];
 $response = $res[0]["response"];
+$response = str_replace("COUPON","<!-- coupon -->",$response);
+$response = str_replace("IMAGE1","<!-- image -->",$response);
+$response = str_replace("IMAGE2","<!-- image2 -->",$response);
+$response = str_replace("IMAGE3","<!-- image3 -->",$response);
 $data['response'] = $response;
-
-$page = GLM_TOOLBOX::explode_template(NEWSLETTER_PROTOTYPE,$data);
+$data['coupon'] = add_image($res[0]["coupon"],"right",$res[0]["coupon_link"]);
+$data['image'] = add_image($res[0]["image"],"right",$res[0]["image_link"]);
+$data['image2'] = add_image($res[0]["image2"],"left",$res[0]["image2_link"]);
+$data['image3'] = add_image($res[0]["image3"],"right",$res[0]["image3_link"]);
+$data['year'] = date("Y");
+$data['bailout'] = "<br clear=\"all\"><br>-------------------------------------------------------------------<br>";
+$data['bailout'] .= "You are receiving this message because you have expressed an interest in<br>";
+$data['bailout'] .= "receiving specials and information from ".SITENAME.". If you do not<br>";
+$data['bailout'] .= "wish to receive future items of this nature, please reply to this e-mail<br>";
+$data['bailout'] .= "with the word \"CANCEL\" on the subject line. You will then be removed <br>";
+$data['bailout'] .= "from future mailings.  ";
+$data['bailout'] .= "<a href=\"".URL_BASE."\"><B> ".SITENAME."</b></a><br>";
+$data['bailout'] .= "-------------------------------------------------------------------<br>";
+$page = explode_template(NEWSLETTER_PROTOTYPE,$data);
 echo $page;
 ?>
index fd553cb..79a9f36 100755 (executable)
 <?php
 session_start();
+/* Includes  */
 require_once '../../setup.phtml';
 require_once 'contact_setup.inc';
-/* Includes  */
 extract($_POST);
+$_SESSION['sess_vars'] = $_REQUEST['sess_vars'];
+//session_register("sess_vars");
 function clean_array(&$array){
-       if (is_array($array)){
-               $counter = 0;
-               foreach ($array as $key=>$value){
-                       if ($value == ""){
-                               unset($array[$counter]);
-                       }
-                       $counter++;
-               }
-       }
+    if(is_array($array)){
+        $counter = 0;
+        foreach($array as $key=>$value){
+            if($value == ""){
+                unset($array[$counter]);
+            }
+            $counter++;
+        }
+    }
 }
-$sess_vars = $_POST;
-$_SESSION['sess_vars'] = $sess_vars;
-if (!isset($query_no)) {
-       /* The fields array is sent as a string 
-               explode it out using : as delimiter */
-       $fvalue = preg_replace("/^:/","",$fvalue);
-       $fields = explode(":",$fvalue);
-       $rfvalue = preg_replace("/^:/","",$rfvalue);
-       $return_fields = explode(":",$rfvalue);
-       $dates = preg_replace("/^:/","",$rdvalue);
-       $dates = explode(":",$dates);
-
-       clean_array($return_fields);
-       clean_array($dates);
-       if (!isset($search)) {
-               header("Location: index.phtml");
-       }
-       /* Chop off whitespaces spaces */
-       $search = chop(trim($search));
-    $search = preg_replace("/\\\|\"/", "", $search);
-       if (!$search && (count ($fields) == 1 && $fields[0] == '')) {
-               $ALL = TRUE;
-       }
-
-       function getKeywords($keywords) {
-               /* Replace the whitespace with a , */
-               $keywords = str_replace(" ",",",$keywords);
-               $keywords = str_replace(",,",",",$keywords);
-               $seperated = explode(",",$keywords);
-               /* Return exploded string */
-               return $seperated;
-       }
-
-       switch($search_type) {
-    case "1":
-        $keywords = $search;
-        $compare = "OR";
+$sess_vars = $HTTP_POST_VARS;
+if(!isset($query_no)) {
+    /* The fields array is sent as a string
+        split it out using : as delimiter */
+    $fvalue        = preg_replace("%^:%","",$fvalue);
+    $fields        = preg_split("%:%",$fvalue);
+    $rfvalue       = preg_replace("%^:%","",$rfvalue);
+    $return_fields = preg_split("%:%",$rfvalue);
+    $dates         = preg_replace("%^:%","",$rdvalue);
+    $dates         = preg_split("%:%",$dates);
+    clean_array($return_fields);
+    clean_array($dates);
+    if(!isset($search)) {
+        header("Location: index.phtml");
+    }
+    /* Chop off whitespaces spaces */
+    $search = chop(trim($search));
+    if( !$search && ( count( $fields ) == 1 && $fields[0] == '' ) )
+    {
+        $ALL = TRUE;
+    }
+
+    function getKeywords($keywords) {
+        /* Replace the whitespace with a , */
+        $keywords = preg_replace("% %",",",$keywords);
+
+        while(preg_match("%,,%",$keywords)) {
+        /* Replace the ,, with a , */
+            $keywords = preg_replace("%,,%",",",$keywords);
+        }
+        $seperated = explode(",",$keywords);
+        /* Return exploded string */
+        return $seperated;
+    }
+
+    switch($search_type) {
+        case "1":
+            $keywords = $search;
+            $compare = "OR";
         break;
 
-    case "2":
-        $keywords = getKeywords($search);
-        $compare = "AND";
+        case "2":
+            $keywords = getKeywords($search);
+            $compare = "AND";
         break;
 
-    case "3":
-        $keywords = getKeywords($search);
-        $compare = "OR";
+        case "3":
+            $keywords = getKeywords($search);
+            $compare = "OR";
         break;
 
-    case "4":
-        $keywords = getKeywords($search);
-        $compare = "AND";
-        $NOT = TRUE;
+        case "4":
+            $keywords = getKeywords($search);
+            $compare = "AND";
+            $NOT = TRUE;
         break;
 
-    default:
-        echo "not valid";
+        default:
+            echo "not valid";
         break;
-       }
-
-       if (is_array($keywords)) {
-               for ($rip=0;$rip<count($keywords);$rip++) {
-                       $keywords[$rip] = trim($keywords[$rip]);
-                       /* if * is at the begging the replace with .* */
-                       $keywords[$rip] = preg_replace("/[\x2a]/",".*",$keywords[$rip]);
-                       $keywords[$rip] = preg_replace("/[\x3f]/",".?",$keywords[$rip]);
-                       $keywords[$rip] = preg_replace("/[\x2b]/",".+",$keywords[$rip]);
-               }
-       } else {
-               $keywords = trim($keywords);
-               /* if * is at the begging the replace with .* */
-               $keywords = preg_replace("/[\x2a]/",".*",$keywords);
-               $keywords = preg_replace("/[\x3f]/",".?",$keywords);
-               $keywords = preg_replace("/[\x2b]/",".+",$keywords);
-       }
-       
-       switch($alter) {
-    /* $alter defines where to look in fields */
-    case "1":
-        $begin = "^";
-        $end = "";
+    }
+
+    if(is_array($keywords)) {
+        for($rip=0;$rip<count($keywords);$rip++) {
+            $keywords[$rip] = trim($keywords[$rip]);
+            /* if * is at the begging the replace with .* */
+            $keywords[$rip] = preg_replace("%[\x2a]%",".*",$keywords[$rip]);
+            $keywords[$rip] = preg_replace("%[\x3f]%",".?",$keywords[$rip]);
+            $keywords[$rip] = preg_replace("%[\x2b]%",".+",$keywords[$rip]);
+        }
+    }
+    else {
+        $keywords = trim($keywords);
+        /* if * is at the begging the replace with .* */
+        $keywords = preg_replace("%[\x2a]%",".*",$keywords);
+        $keywords = preg_replace("%[\x3f]%",".?",$keywords);
+        $keywords = preg_replace("%[\x2b]%",".+",$keywords);
+    }
+
+    switch($alter) {
+        /* $alter defines where to look in fields */
+        case "1":
+            $begin = "^";
+            $end = "";
         break;
 
-    case "2":
-        $begin = "";
-        $end = " *$";
+        case "2":
+            $begin = "";
+            $end = " *$";
         break;
 
-    default:
-        $begin = "";
-        $end = "";
+        default:
+            $begin = "";
+            $end = "";
         break;
-       }
-       
-       $operator = " ";
-       if ($NOT) {
-               $operator .= "!~";
-       } else {
-               $operator .= "~";
-       }
-       if ($case == "OFF") {
-               $operator .= "*";
-       }
-       if ($search == "" && ! (count ($fields)  == 1 && $fields[0] == '') )  {
-               $operator = "=";
-       }
-       $operator .= " ";
-
-       /* finally, build the query string from string or array $keywords */
-       $query_string = "SELECT ".ID.",";
-       $totali = count($return_fields)-1;
-       for ($i=0;$i<count($return_fields);$i++) {
-               $query_string .= $return_fields[$i];
-               if ($i != $totali) {
-                       $query_string .= ",";
-               }
-               if ($i == 8) {
-                       $query_string .= "\n";
-               }
-       }
-       $totald = count($dates)-1;
-       for ($i=0;$i<count($dates);$i++) {
-               if ($dates[$i] != " " && $dates[$i] != "") {
-                       if ($i == 0) {
-                               $query_string .= ",";
-                       }
-               }
-               $query_string .= $dates[$i];
-               if ($i != $totald) {
-                       $query_string .= ",";
-               }
-       }
-       if (!$ALL) {    
-               $query_string .= "\nFROM\t".TABLE." \nWHERE\t".WHERE."\nAND\t";
-               $query_string .= "(";
-               for ($b=0;$b<count($fields);$b++) {
-                       $totalb = count($fields)-1;
-                       if (is_array($keywords)) {
-                               for ($c=0;$c<count($keywords);$c++) {
-                                       $totalc = count($keywords)-1;
-                                       $query_string .= $fields[$b].$operator."'".
-                                               $begin.$keywords[$c].$end."'";
-                                       if ($c != $totalc) {
-                                               $query_string .= " \n$compare\t";
-                                       }
-                               }
-                       } else {
-                               $query_string .= $fields[$b].$operator."'".
-                                       $begin.$keywords.$end."'";
-                       }
-                       if ($b != $totalb) {
-                               $query_string .= " \n$compare\t";
-                       }
-               }
-               $query_string .= ")";
-       } else {
-               $query_string .= "\nFROM\t".TABLE." \nWHERE\t".WHERE."\n";
-       }
-       if (is_array ($boolean) ) {
-               foreach ($boolean as $bool_key => $bool_val) {
-                       if ($_POST[$bool_key] == "1") {
-                               $bstring[] = " $bool_key = 't'";
-                       } elseif ($_POST[$bool_key] == "0") {
-                               $bstring[] = " $bool_key = 'f'";
-                       }
-               }
-               if (is_array($bstring)) {
-                       $query_string .= ' and ('.implode(" $compare ",$bstring) .')  ';
-               }
-       }
-       if( is_array( $dropdowns ) ) {
-               foreach( $dropdowns as $drop_key => $drop_val ) {
-                       if( is_array( $_POST[$drop_key] ) ) {
-                               foreach( $_POST[$drop_key] as $mdrop_key => $mdrop_val ){
-                                       if( $mdrop_val != '' ){
-                                               $dstring[] = " $drop_key $operator ':".$mdrop_val.":'";
-                                       }
-                               }
-                       }elseif( !is_array( $_POST[$drop_key] ) ) {
-                               if( $_POST[$drop_key] != '' ){
-                                       $dstring[] = " $drop_key = '".$_POST[$drop_key]."'";
-                               }
-                       }
-               }
-               if( is_array($dstring) ) {
-                       $query_string .= ' and ('.implode(" $compare ",$dstring).' ) ';
-               }
-       }
-       if (is_array ($cols) ) {
-               foreach ($cols as $ikey => $ival) {
-                       $cstring[] = " interest $operator ':$ival:'";
-               }
-               if (is_array($cstring)) {
-                       $query_string .= ' and ('.implode(" $compare ",$cstring).')  ';
-               }
-       }
-       if (isset($fp_month)) {
-               $fp_str = mktime(0,0,0,$fp_month,$fp_day,$fp_year);
-               $tp_str = mktime(0,0,0,$tp_month,$tp_day,$tp_year);
-               $fa_str = mktime(0,0,0,$fa_month,$fa_day,$fa_year);
-               $ta_str = mktime(0,0,0,$ta_month,$ta_day,$ta_year);
-               
-               if ($fp_str<$tp_str) {
-                       $fp_date = $fp_month."/".$fp_day."/".$fp_year;
-                       $tp_date = $tp_month."/".$tp_day."/".$tp_year;
-                       $query_string .= " AND purch_date >= '$fp_date'
-                                                          AND purch_date <= '$tp_date'";
-               }
-               if ($fa_str<$ta_str) {
-                       $fa_date = $fa_month."/".$fa_day."/".$fa_year;
-                       $ta_date = $ta_month."/".$ta_day."/".$ta_year;
-                       $query_string .= " AND access_date >= '$fa_date'
-                                                          AND access_date <= '$ta_date'";
-               }
-               if ($fp_str>$tp_str) {
-                       $fp_date = $fp_month."/".$fp_day."/".$fp_year;
-                       $tp_date = $tp_month."/".$tp_day."/".$tp_year;
-                       $query_string .= " AND purch_date <= '$tp_date'";
-               }
-               if ($fa_str>$ta_str) {
-                       $fa_date = $fa_month."/".$fa_day."/".$fa_year;
-                       $ta_date = $ta_month."/".$ta_day."/".$ta_year;
-                       $query_string .= " AND access_date <= '$ta_date'";
-               }
-       }
-       if (isset($fc_month)) {
-               $fc_str = mktime(0,0,0,$fc_month,$fc_day,$fc_year);
-               $tc_str = mktime(0,0,0,$tc_month,$tc_day,$tc_year);
-               
-               if ($fc_str<$tc_str) {
-                       $fc_date = $fc_month."/".$fc_day."/".$fc_year;
-                       $tc_date = $tc_month."/".$tc_day."/".$tc_year;
-                       $query_string .= " AND create_date >= '$fc_date'
-                                                          AND create_date <= '$tc_date'";
-               }
-               if ($fc_str>$tc_str) {
-                       $fc_date = $fc_month."/".$fc_day."/".$fc_year;
-                       $tc_date = $tc_month."/".$tc_day."/".$tc_year;
-                       $query_string .= " AND create_date <= '$tc_date'";
-               }
-       }
-} else {
-//     if (!$dbd = db_connect()) html_error(DB_ERROR_MSG,0);
-
-       $qs = "SELECT   query_name,query,delimiter,file 
-                  FROM         query_db
-                  WHERE        id = $query_no";
-
-       if (!$res = $DB->db_exec($qs)) GLM_TOOLBOX::html_error(DB_ERROR_MSG.$qs,0);
-       $row = $DB->db_fetch_array($res,0,PGSQL_ASSOC);
-       $query_name = $row[query_name];
-       $query_string = $row[query];
-       $file = $row[file];
-       $delimiter = $row[delimiter];
+    }
+
+    $operator = " ";
+    if($NOT) {
+        $operator .= "!~";
+    }
+    else {
+        $operator .= "~";
+    }
+    if($case == "OFF") {
+        $operator .= "*";
+    }
+    if($search == "" && !( count( $fields ) == 1 && $fields[0] == '' ) )
+    {
+        $operator = "=";
+    }
+    $operator .= " ";
+
+    /* finally, build the query string from string or array $keywords */
+    $query_string = "SELECT ".ID;
+    if(count($return_fields)>0){
+        $rf = implode(",",$return_fields);
+        $query_string .= ", $rf";
+    }
+    if(count($dates)>0){
+        $rd = implode(",",$dates);
+        $query_string .= ", $rd";
+    }
+    if(!$ALL) {
+        $query_string .= "\nFROM\t".TABLE." \nWHERE\t".WHERE."\nAND\t";
+        for($b=0;$b<count($fields);$b++) {
+            $totalb = count($fields)-1;
+            if(is_array($keywords)) {
+                for($c=0;$c<count($keywords);$c++) {
+                    $totalc = count($keywords)-1;
+                    $query_string .= $fields[$b].$operator."'".
+                        $begin.$keywords[$c].$end."'";
+                    if($c != $totalc) {
+                        $query_string .= " \n$compare\t";
+                    }
+                }
+            }
+            else {
+                $query_string .= $fields[$b].$operator."'".  $begin.$keywords.$end."'";
+            }
+            if($b != $totalb) {
+                $query_string .= " \n$compare\t";
+            }
+        }
+    }
+    else {
+        $query_string .= "\nFROM\t".TABLE." \nWHERE\t".WHERE."\n";
+    }
+    if( is_array( $dropdowns ) ) {
+        foreach( $dropdowns as $drop_key => $drop_val ) {
+            if( is_array( $_POST[$drop_key] ) ) {
+                foreach( $_POST[$drop_key] as $mdrop_key => $mdrop_val ){
+                    if( $mdrop_val != '' ){
+                        $dstring[] = " $drop_key $operator ':".$mdrop_val.":'";
+                    }
+                }
+            }elseif( !is_array( $_POST[$drop_key] ) ) {
+                if( $_POST[$drop_key] != '' ){
+                    $dstring[] = " $drop_key = '".$_POST[$drop_key]."'";
+                }
+            }
+        }
+        if( is_array($dstring) ) {
+            $query_string .= ' and ('.implode(" $compare ",$dstring).' ) ';
+        }
+    }
+    if($mail_ok == "1") {
+        $query_string .= " AND mail_ok = 't'";
+    }
+    if($mail_ok == "0") {
+        $query_string .= " AND mail_ok = 'f'";
+    }
+
+    if($contestant == "1") {
+        $query_string .= " AND contestant = 't'";
+    }
+    if($contestant == "0") {
+        $query_string .= " AND contestant = 'f'";
+    }
+
+    if(is_array($unit)){
+        $query_string .= " AND (";
+        foreach($unit as $ukey=>$uval){
+            $unit_qs[] = " unit_size = $uval";
+        }
+        $query_string .= implode(" OR ",$unit_qs);
+        $query_string .= " )";
+    }
+
+    if(is_array($referred)){
+        $query_string .= " AND (";
+        foreach($referred as $rkey=>$rval){
+            $referred_qs[] = " referred_by = $rval";
+        }
+        $query_string .= implode(" OR ",$referred_qs);
+        $query_string .= " )";
+    }
+
+    if( is_array( $cols ) )
+    {
+        foreach( $cols as $ikey => $ival )
+        {
+            $query_string .= " AND interest $operator ':$ival:'";
+        }
+    }
+
+    if(isset($fp_month)) {
+        $fp_str = mktime(0,0,0,$fp_month,$fp_day,$fp_year);
+        $tp_str = mktime(0,0,0,$tp_month,$tp_day,$tp_year);
+        $fa_str = mktime(0,0,0,$fa_month,$fa_day,$fa_year);
+        $ta_str = mktime(0,0,0,$ta_month,$ta_day,$ta_year);
+
+        if($fp_str<$tp_str) {
+            $fp_date = $fp_month."/".$fp_day."/".$fp_year;
+            $tp_date = $tp_month."/".$tp_day."/".$tp_year;
+            $query_string .= " AND arrive_date >= '$fp_date'
+                               AND arrive_date < '$tp_date'";
+        }
+        if($fa_str<$ta_str) {
+            $fa_date = $fa_month."/".$fa_day."/".$fa_year;
+            $ta_date = $ta_month."/".$ta_day."/".$ta_year;
+            $query_string .= " AND depart_date >= '$fa_date'
+                               AND depart_date < '$ta_date'";
+        }
+        if($fp_str>$tp_str) {
+            $fp_date = $fp_month."/".$fp_day."/".$fp_year;
+            $tp_date = $tp_month."/".$tp_day."/".$tp_year;
+            $query_string .= " AND arrive_date < '$tp_date'";
+        }
+        if($fa_str>$ta_str) {
+            $fa_date = $fa_month."/".$fa_day."/".$fa_year;
+            $ta_date = $ta_month."/".$ta_day."/".$ta_year;
+            $query_string .= " AND depart_date < '$ta_date'";
+        }
+    }
+    if(isset($fc_month)) {
+        $fc_str = mktime(0,0,0,$fc_month,$fc_day,$fc_year);
+        $tc_str = mktime(0,0,0,$tc_month,$tc_day,$tc_year);
+
+        if($fc_str<$tc_str) {
+            $fc_date = $fc_month."/".$fc_day."/".$fc_year;
+            $tc_date = $tc_month."/".$tc_day."/".$tc_year;
+            $query_string .= " AND create_date >= '$fc_date'
+                               AND create_date < '$tc_date'";
+        }
+        if($fc_str>$tc_str) {
+            $fc_date = $fc_month."/".$fc_day."/".$fc_year;
+            $tc_date = $tc_month."/".$tc_day."/".$tc_year;
+            $query_string .= " AND create_date < '$tc_date'";
+        }
+    }
+}
+else {
+    if(!$dbd = db_connect()) html_error(DB_ERROR_MSG,0);
+
+    $qs = "SELECT   query_name,query,delimiter,file
+           FROM     query_db
+           WHERE    id = $query_no";
+
+    if(!$res = db_exec($dbd,$qs)) html_error(DB_ERROR_MSG.$qs,0);
+    $row = db_fetch_array($res,0,PGSQL_ASSOC);
+    $query_name = $row[query_name];
+    $query_string = $row[query];
+    $file = $row[file];
+    $delimiter = $row[delimiter];
 }
 
 /* Thought the customer would like to see what's in the query */
 $showq = str_replace("SELECT","Return\n",$query_string);
-$showq = str_replace ("\nFROM\t".TABLE." \nWHERE\t".WHERE."\nAND\t",
+$showq = str_replace"\nFROM\t".TABLE." \nWHERE\t".WHERE."\nAND\t",
 " \nfrom the contact database \nwhere ",$showq);
-$showq = str_replace ("\nFROM\t".TABLE." \nWHERE\t".WHERE."\n",
+$showq = str_replace"\nFROM\t".TABLE." \nWHERE\t".WHERE."\n",
 " \nfrom the contact database",$showq);
 $showq = str_replace("fname","first name",$showq);
 $showq = str_replace("cust_id,","",$showq);
@@ -291,123 +304,113 @@ $showq = str_replace("$"," in the ending ",$showq);
 $showq = str_replace("OR","or",$showq);
 $showq = str_replace("AND","and",$showq);
 $showq = str_replace("'","",$showq);
-if (!$ALL) {
-       if ($case == "OFF") {
-               $showq .= "\n(case insensitive match)";
-       } else {
-               $showq .= "\n(case sensitive match)";
-       }
-}
-if (isset($file) && $file != "") {
-       $showq .= "\noutput 1 file in ";
-       if ($file == "rpt") {
-               $showq .= "text";
-       }elseif ($file == "gz") {
-               $showq .= "tar ball";
-       }else {
-               $showq .= "zip";
-       }
-       if ($delimiter == "csv") {
-               $showq .= " format using ".$delimiter;
+if(!$ALL) {
+    if($case == "OFF") {
+        $showq .= "\n(case insensitive match)";
     } else {
-               $showq .= " format using ".$delimiter." as delimiter";
+        $showq .= "\n(case sensitive match)";
     }
 }
+if(isset($file) && $file != "") {
+    $showq .= "\noutput 1 file in ";
+    if($file == "rpt") {
+        $showq .= "text";
+    }elseif($file == "gz") {
+        $showq .= "tar ball";
+    }else {
+        $showq .= "zip";
+    }
+    if($delimiter == "csv")
+        $showq .= " format using ".$delimiter;
+    else
+        $showq .= " format using ".$delimiter." as delimiter";
+}
 $showq .= ".";
+
+
 $query = addslashes($query_string);
 
-GLM_TOOLBOX::top("QUERY BUILDER PAGE","");
-GLM_TOOLBOX::html_nav_table($nav,$navWidth);
+top("QUERY BUILDER PAGE","");
+html_nav_table($nav,3);
 ?>
-<script src="<?echo MEDIA_BASE_URL."admin/wm.js"?>"></script>
-<script src="<?echo MEDIA_BASE_URL."admin/msg.js"?>"></script>
+<script src="<?echo URL_BASE."admin/wm.js"?>"></script>
+<script src="<?echo URL_BASE."admin/msg.js"?>"></script>
 
 <table id="admin-list-table">
 <tr>
-  <th bgcolor="#2f4f4f" class="theader">
-       Submit Query
+  <th>
+    Submit Query
   </th>
   </tr>
-       <tr>
-       <td><a href="index.phtml">Go Back to Query page</a></td>
-       </tr>
+    <tr>
+    <td><a href="index.phtml">Go Back to Query page</a></td>
+    </tr>
   <tr>
   <td>
-       <?echo nl2br($showq)?>
+    <?echo nl2br($showq)?>
     <br>
-       <?if (isset($query_name)) {
-       echo "Query ".$query_name." Recalled";
-       }?>
-       
-       <form action="list_contact.phtml" method="POST">
-       <input type="hidden" name="delimiter" value="<?echo $delimiter?>">
-       <input type="hidden" name="file" value="<?echo $file?>">
-       <?php
-       if (!$_GET['query_no']) {
-       ?>
-       <input type="hidden" name="query_string" value="<?echo $query_string?>">
-       <?php
-       } else {
-       ?>
-       <input type="hidden" name="query_no" value="<?php echo $_GET['query_no'];?>">
-       <?php
-       }
-       ?>
-       <input type="hidden" name="Submit" value="Submit Query">
-       <center>
-       <input type="submit" value="Send Query">
-       </form>
-       </center>
-       </td>
+    <?if(isset($query_name)) {
+    echo "Query ".$query_name." Recalled";
+    }?>
+
+    <form action="list_contact.phtml" method="POST">
+    <input type="hidden" name="delimiter" value="<?echo $delimiter?>">
+    <input type="hidden" name="file" value="<?echo $file?>">
+    <input type="hidden" name="query_string" value="<?echo $query_string?>">
+    <input type="hidden" name="Submit" value="Submit Query">
+    <center>
+    <input type="submit" value="Send Query">
+    </form>
+    </center>
+    </td>
   </tr>
-</table>
-<script lang="javascript">
-       var o_save = new Object();
-       o_save.url = 'query_save.phtml';
-       o_save.name = 'savewin';
-       o_save.width = 510;
-       o_save.height = 150;
-</script>
-<table>
   <tr>
-  <th bgcolor="#2f4f4f" class="theader">
-       Do you wish to save this query for future use?
+  <th>
+    Do you wish to save this query for future use?
   </th>
   </tr>
   <tr>
     <td>
-       <a href="#" onClick="
-       glm_open(o_save);
-       return(false);
-       ">Save This Report</a>
-       </td>
+    <a href="" onClick="
+    glm_open(o_save);
+    return(false);
+    ">Save This Query</a>
+    </td>
 </tr>
 </table>
-
-<?php
+<script lang="javascript">
+    var o_save = new Object();
+    o_save.url = 'query_save.phtml';
+    o_save.name = 'savewin';
+    o_save.width = 510;
+    o_save.height = 150;
+</script>
+<?
 /* Save the query with (current) as query_name */
-$qs = "SELECT id
-            FROM query_db 
-           WHERE query_name = '(current)'";
+if(!$dbd = db_connect()) html_error("Cant connect",0);
 
-if (!$res = $DB->db_exec($qs)) {
-    GLM_TOOLBOX::html_error(DB_ERROR_MSG.$qs,0);
-}
+$qs = "SELECT   id
+       FROM     query_db
+       WHERE    query_name = '(current)'";
 
-if (!$row = $DB->db_fetch_array($res,0,PGSQL_ASSOC)) {
-       $qs = "INSERT 
-                  INTO         query_db
-                                       (query_name,query,file,delimiter)
-                  VALUES       ('(current)','$query','$file','$delimiter')";
-} else {
-       $qs = "UPDATE   query_db 
-                  SET          query = '$query',
-                                       file = '$file',
-                                       delimiter = '$delimiter'
-                  WHERE        id = $row[id]";
+if(!$res = @db_exec($dbd,$qs)) html_error(DB_ERROR_MSG.$qs,0);
+
+if(!$row = @db_fetch_array($res,0,PGSQL_ASSOC)) {
+    $qs = "INSERT
+           INTO     query_db
+                    (query_name,query,file,delimiter)
+           VALUES   ('(current)','$query','$file','$delimiter')";
 }
-if (!$DB->db_auto_exec($qs)) {
-    GLM_TOOLBOX::html_error(DB_ERROR_MSG.$qs,0);
+else {
+    $qs = "UPDATE   query_db
+           SET      query = '$query',
+                    file = '$file',
+                    delimiter = '$delimiter'
+           WHERE    id = $row[id]";
 }
-GLM_TOOLBOX::footer();
+@db_close($dbd);
+
+if(!db_auto_exec($qs)) html_error(DB_ERROR_MSG.$qs,0);
+
+footer();
 ?>
index 3134464..e23ed41 100755 (executable)
@@ -5,15 +5,14 @@ require_once 'contact_setup.inc';
 if(!isset($file)) $file = "";
 if(!isset($delimiter)) $delimiter = "";
 
-$qs = "INSERT 
-          INTO         query_db (query_name,query,file,delimiter) 
-         (select '$query_name',query,file,delimiter from query_db where query_name = '(current)' limit 1 offset 0)";
-if(!$DB->db_auto_exec($qs)) 
-       {
-               html_error(DB_ERROR_MSG.$qs,1);
-       }
-GLM_TOOLBOX::html_header("Saving Query","Saved","");
+$qs = "UPDATE   query_db
+       SET      query_name = '$query_name'
+       WHERE    query_name = '(current)'";
+
+if(!db_auto_exec($qs)) html_error(DB_ERROR_MSG.$qs,1);
+
+html_header("Saving Query","Saved","");
 ?>
 Query is saved as <?echo $query_name?>
-<center><a href="#" onClick="window.close();return(false);">Close This
+<center><a href="" onClick="window.close();return(false);">Close This
 Window</a></center>
index 61c4a0d..6ae09ae 100755 (executable)
@@ -1,17 +1,22 @@
 <html>
-<body bgcolor=white>
-<table bgcolor="#e0e0e0" width=500 cellpadding=4 cellspacing=0 border=0>
+<body>
+<table width=500 cellpadding=4 cellspacing=0 border=0>
   <tr>
-    <td>Name of Report
-       
-       <form name="form2" action="query_db.phtml" method="POST">
-       <input type="hidden" name="query" value="<?echo $query_string?>">
-       <input type="hidden" name="delimiter" value="<?echo $delimiter?>">
-       <input type="hidden" name="file" value="<?echo $file?>">
-       <input name="query_name">
-       <input type="submit" name="Submit" value="Save">
-       </form>
-       </td>
+  <th>
+    Do you wish to save this query for future use?
+  </th>
+  </tr>
+  <tr>
+    <td>Name of query
+
+    <form name="form2" action="query_db.phtml" method="POST">
+    <input type="hidden" name="query" value="<?echo $query_string?>">
+    <input type="hidden" name="delimiter" value="<?echo $delimiter?>">
+    <input type="hidden" name="file" value="<?echo $file?>">
+    <input name="query_name">
+    <input type="submit" name="Submit" value="Save">
+    </form>
+    </td>
 </tr>
 </table>
 </body>
diff --git a/admin/Contact/report.csv b/admin/Contact/report.csv
new file mode 100644 (file)
index 0000000..22f012e
--- /dev/null
@@ -0,0 +1,7106 @@
+"Mark","Simon","204 Lake St.","Evanston","IL","60201","312-902-5301","mark.simon@kmzr.com","5","9","","","2003-08-17","2003-08-19","2003-08-06"
+"Tereesa","Bailey","","Pleasant Ridge","MI","48069","","tbailey@comcast.net","","","","","2003-08-08","2003-08-08","2003-08-08"
+"Kellie","Albright","","Oxford","MI","48371","","tigger77@sprintmail.com","","9","","","2003-08-07","2003-08-07","2003-08-07"
+"Ed and Diane","Alef","","Troy","MI","48085","","eddan68@comcast.net","","9","","","2003-08-07","2003-08-07","2003-08-07"
+"Elizabeth","Amato","","Grand Blanc","MI","48439","","eaamato@yahoo.com","","4","","","2003-08-07","2003-08-07","2003-08-07"
+"Marvin","Asnus","","Macomb","MI","48042","","barb.w@netzero.net","","4","","","2003-08-07","2003-08-07","2003-08-07"
+"Prasath","Balakrishnan","","Novi","MI","48375","","balakrp@ntcna.nissan-usa.com","","","","","2003-08-08","2003-08-08","2003-08-08"
+"Brian","Ball","","Royal Oak","MI","48067","","just4kx@yahoo.com","","","","","2003-08-08","2003-08-08","2003-08-08"
+"","","","","","","","morlows2@wowway.com","","","","","2010-01-20","2010-01-20","2010-01-20"
+"Stuart","Beckwith","","West Bloomfield","MI","48322","","imgcptreps@aol.com","","","","","2003-08-08","2003-08-08","2003-08-08"
+"Tim","Belanger","","South Lyon","MI","48178","","supib@aol.com","","","","","2003-08-08","2003-08-08","2003-08-08"
+"Frances","Bell","","Orchard Lake","MI","48324","","jfarbell@aol.com","","","","","2003-08-08","2003-08-08","2003-08-08"
+"Robert and Christie","Benson","","Flint","MI","48532","","chrisheide@aol.com","","","","","2003-08-08","2003-08-08","2003-08-08"
+"Topher","DePoy","","","","","","depoych@hotmail.com","","9","$1,050 for 3 nights in a 2 bed/1bath?  Are you kidding?  My wife and I were regular guests every year until approx. 5 years ago and the same stay would have been $450.00.  Love the surroundings, but can't validate that cost with 2 kids at private colleges.","","","","2009-11-23"
+"Charles","Gerwin","","","","","","cmgerwin@hotmail.com","","","","","2009-02-07","2009-02-07","2009-02-07"
+"Adam","Boushie","","Royal Oak","MI","48067","","boushieadam@hotmail.com","","","","","2003-08-10","2003-08-10","2003-08-10"
+"Laura","Boyle","","Troy","MI","48098","","coffeewithlaura@aol.com","","","","","2003-08-10","2003-08-10","2003-08-10"
+"Nancy","Burch","","St. Joseph","MI","49085","","nancy_burch@hotmail.com","","","","","2003-08-10","2003-08-10","2003-08-10"
+"Laurie","Burgoyne","","Grosse Pte. Park","MI","48230","","burgoyne@comcast.net","","","","","2003-08-10","2003-08-10","2003-08-10"
+"Sharon","Cox","","Pinckney","MI","48169","","coxfam@chartermi.net","","9","","","2003-08-13","2003-08-13","2003-08-13"
+"Craig","Cabble","","Auburn Hills","MI","48326","","craigcabble@comcast.net","","","Zoo-de-Mack","","2003-08-13","2003-08-13","2003-08-13"
+"Liz","Careathers","","Detroit","MI","48223","","elizabeth.careathers@detroitdiesel.com","","9","","","2003-08-13","2003-08-13","2003-08-13"
+"Janet","Carpenter","","Brighton","MI","48114","","rajcarpenter@msn.com","","9","","","2003-08-13","2003-08-13","2003-08-13"
+"Kim","Chaney","","Bryan","OH","43506","","cchaney@cityofbryan.net","","9","","","2003-08-13","2003-08-13","2003-08-13"
+"Jamie","Close","","Marquette","MI","49855","","jclose8@hotmail.com","","9","","","2003-08-13","2003-08-13","2003-08-13"
+"Julie","Cohout","","Napoleon","OH","43545","","jak2@bright.net","","9","","","2003-08-13","2003-08-13","2003-08-13"
+"Joanne","Cole","","New Boston","MI","48164","","larry45@chartermi.net","","9","","","2003-08-13","2003-08-13","2003-08-13"
+"Thomas","Constand","","Troy","MI","48098","","tconstand@comcast.net","","9","","","2003-08-13","2003-08-13","2003-08-13"
+"Gerry","Couglin","","Windsor","Ontario","N9E 1W7","","coggs@sympatico.ca","","9","","","2003-08-13","2003-08-13","2003-08-13"
+"Jane","Steele","","","","","","jesteele1@charter.net","","","","","2009-04-24","2009-04-24","2009-04-24"
+"Karen","de Loys","345 Dickens Street","Northfield","IL","60093","847-441-5433","kdeloys@comcast.net","0","7","","","2003-12-26","2003-12-30","2003-08-12"
+"Deborah","Otenbaker","","","","","","5oats@comcast.net","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Thomas ","Creek","","Clinton Township","MI","48038","","moosaman@comcast.net","","2","","","2003-08-13","2003-08-13","2003-08-13"
+"Nancy","Depaolo","","Riverside","IL","60546","","depaolo@uhc.edu","","6","","","2003-08-13","2003-08-13","2003-08-13"
+"Robert","Damon","","Lagrange","OH","44050","","rjdamon1967@yahoo.com","","6","","","2003-08-13","2003-08-13","2003-08-13"
+"Debbie","Deaton","","Rochester Hills","MI","48307","","debbiedeaton@wideopenwest.com","","9","","","2003-08-13","2003-08-13","2003-08-13"
+"Scott","Martyniak","","","","","","martyniak@comcast.net","","","","","2009-02-03","2009-02-03","2009-02-03"
+"Micheal","Dekoning","","Libertyville","IL","60048","","mike.dekoning@kingstreetrading.com","","9","","","2003-08-13","2003-08-13","2003-08-13"
+"Daniel","Dewindt","","Rhode Island","MI","02842","","danieldewindt@ussailing.org","","4","","","2003-08-13","2003-08-13","2003-08-13"
+"Laura","Dickerson","","Bloomfield Hills","MI","48302","","ldickerson@comcast.net","","7","","","2003-08-13","2003-08-13","2003-08-13"
+"Diane","Doran","","Ferndale","MI","48220","","dianemdoran@hotmail.com","","4","","","2003-08-13","2003-08-13","2003-08-13"
+"Pam","Landes","","","","","","think_again@comcast.net","","","","","2009-02-25","2009-02-25","2009-02-25"
+"Marcel","Durot","","Lincolnshire","IL","60069","","marcel@prodigy.net","","4","","","2003-08-13","2003-08-13","2003-08-13"
+"Pam","Duvall","","Southfield","MI","48034","","pamduvallgifts@aol.com","","","Zoo-de-Mack","","2003-08-13","2003-08-13","2003-08-13"
+"Barbara","Daly","","","","","","barbara.daly@comcast.net","","","","","2008-09-22","2008-09-22","2008-09-22"
+"","","","","","","","dfthompson3@msn.com","","","","","2009-05-22","2009-05-22","2009-05-22"
+"Douglas A.","Hasler","","","","","","DKHasler@aol.com","5","6","","I am interested in knowing if you have vacancies for the dates indicated, as well as the applicable rate.","2003-10-16","2003-10-18","2003-08-13"
+"Micheal","Edwartowski","","Rochester","MI","48306","","mjeguitar@ameritech.net","","9","","","2003-08-14","2003-08-14","2003-08-14"
+"Walter","Elliot","","Beverly Hills","MI","48025","","yordan2@aol.com","","9","","","2003-08-14","2003-08-14","2003-08-14"
+"Gail","Esker","","Commerce Twp.","MI","48382","","geesker@hotmail.com","","9","","","2003-08-14","2003-08-14","2003-08-14"
+"Maura","Feaheny","","Chicago","IL","60646","","mmfeahen@earthlink.net","","2","","","2003-08-14","2003-08-14","2003-08-14"
+"","","","","","","","dmthom@kalcounty.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Colleen","Stertz","","","","","","colleen6236@yahoo.com","","","","","2009-02-07","2009-02-07","2009-02-07"
+"Donald","Ford","","Kalamazoo","MI","49048","","centralc@earthlink.net","","7","","","2003-08-16","2003-08-16","2003-08-16"
+"Nancy ","Partridge","","","","","","nancylpartridge@aol.com ","","","","","2009-10-26","2009-10-26","2009-10-26"
+"Lynne","Lesky ","","","","","","l.c.k.lesky@gmail.com","","","","","2009-04-24","2009-04-24","2009-04-24"
+"Elizabeth","Vasher","","","","","","lizvasher@sbcglobal.net","","","","","2009-02-25","2009-02-25","2009-02-25"
+"Carol","Gibbon","","Bay City","MI","48706","","thisgirls@chartermi.net","","0","","","2003-08-17","2003-08-17","2003-08-17"
+"Richard","Gibbs","","Warren","MI","48089","","sales@gibbsmachinery.com","","7","","","2003-08-17","2003-08-17","2003-08-17"
+"Scott","Goss","","Clarkston","MI","48346","","sgoss@judge.com","","9","","","2003-08-17","2003-08-17","2003-08-17"
+"Dean","Gould","","Farmington Hills","MI","48331","","dean219@aol.com","","9","","","2003-08-17","2003-08-17","2003-08-17"
+"Phil","Grammatico","","Livonia","MI","48154","","pgrammatico@earthlink.net","","8","Trout Creek Sign","","2003-08-17","2003-08-17","2003-08-17"
+"Mary","Granger","","Washington ","DC","20003","","granger@gwu.edu","","6","","","2003-08-17","2003-08-17","2003-08-17"
+"Kathleen","Greenleaf","","Chelsea","MI","48118","","kgree0429@aol.com","","8","Boyne","","2003-08-17","2003-08-17","2003-08-17"
+"Sally","Grumbine","","St. Joseph","MI","49085","","grumbine@sbcglobal.net","","9","","","2003-08-17","2003-08-17","2003-08-17"
+"Roger","Gumz","","Rochester Hills","MI","48309","","rgwgo@comcast.net","","8","Trout Creek Sign","","2003-08-17","2003-08-17","2003-08-17"
+"Aimee","Guthat","","Grosse Pte. Farms","MI","48236","","aguthat@fragomen.com","","4","","","2003-08-17","2003-08-17","2003-08-17"
+"Jennifer","Hamlin","","Holland","MI","49423","","jhamlin@zeeland.k12.mi.us","","8","Zoo-de-Mack","","2003-08-17","2003-08-17","2003-08-17"
+"M","Sherbow","","","","","","sherbowm@co.oakland.mi.us","","","","","2009-05-22","2009-05-22","2009-05-22"
+"","","","","","","","pfurrugia@twmi.rr.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"","","","","","","","shaaron.hogan@sorin-na.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Micheal","Henk","","Fenton","MI","48430","","henksailor@aol.com","","9","","","2003-08-17","2003-08-17","2003-08-17"
+"Larry ","Henney","","Livonia","MI","48154","","lhenney@twmi.rr.com","","9","","","2003-08-17","2003-08-17","2003-08-17"
+"Paul","Jacques","","Rochester","MI","48306","","pjpj15@aol.com","","4","","","2003-08-18","2003-08-18","2003-08-18"
+"Tony","Herman","","Topton","IN","46702","","tony.herman@pioneer.com","","9","","","2003-08-17","2003-08-17","2003-08-17"
+"Leslie","Hill","","Fraser","MI","48026","","rlhill@wideopenwest.com","","6","","","2003-08-17","2003-08-17","2003-08-17"
+"Thomas","Hitch","","East Lansing","MI","48823","","tmhitch@aol.com","","9","","","2003-08-17","2003-08-17","2003-08-17"
+"Thomas","Hollander","","Ann Arbor","MI","48104","","hollanders@earthlink.net","","5","","","2003-08-17","2003-08-17","2003-08-17"
+"Matthew","Hopkins","","Chesterfield","MI","48047","","hopkinsf16@aol.com","","6","","","2003-08-17","2003-08-17","2003-08-17"
+"Robert ","Horner","","Dexter","MI","48130","","bob.horner@softhome.net","","4","","","2003-08-17","2003-08-17","2003-08-17"
+"","","","","","","","thechallas@mac.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Michelle","Jefferson","","Dewitt","MI","48820","","mrjusa@aol.com","","4","","","2003-08-18","2003-08-18","2003-08-18"
+"Micheal and Karen","Jones","","Farmington Hills","MI","48331","","karenmikejones@aol.com","","9","","","2003-08-18","2003-08-18","2003-08-18"
+"Andrea","Kahn","","Bloomfield Hills","MI","48301","","lillykahn@aol.com","","9","","","2003-08-18","2003-08-18","2003-08-18"
+"Dennis","Kavanagh","","Bloomfield Hills","MI","48304","","thekavanaghs@yahoo.com","","4","","","2003-08-18","2003-08-18","2003-08-18"
+"","","","","","","","wkushler@comcast.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Jim","Kelly","","Auburn Hills","MI","48326","","james.a.kelly@gm.com","","9","","","2003-08-18","2003-08-18","2003-08-18"
+"Janet","Kemink","","Ann Arbor","MI","48105","","jamk114@aol.com","","4","","","2003-08-18","2003-08-18","2003-08-18"
+"Debbie","Kinney","","Ada","MI","49301","","Ddawnkin@aol.com","","4","","","2003-08-18","2003-08-18","2003-08-18"
+"David and Ann","Knooihuizen","","East Grand Rapids","MI","49506","","dknooihuizen@finsvcs.com","","4","","","2003-08-18","2003-08-18","2003-08-18"
+"St. Johns Group","","","","","","","w.dowling@comcast.net","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Adam","Walsh","","","","","","acwalsh1@yahoo.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Suzanne","Mantey","","Ann Arbor","MI","48108","","smantey@ford.com","","4","","","2003-08-19","2003-08-19","2003-08-19"
+"Craig","Koch","","Shelby Twp.","MI","48315","","KochCraigMI@aol.com","","9","","","2003-08-18","2003-08-18","2003-08-18"
+"Melissa","Kovaleski","","Royal Oak","MI","48067","","mkavaleski@meemic.com","","6","","","2003-08-18","2003-08-18","2003-08-18"
+"Mark","Kuhn","","West Bloomfield","MI","48323","","mark911@aol.com","","9","","","2003-08-18","2003-08-18","2003-08-18"
+"Eric and Kristen","Lajoie","","Sandusky","MI","48471","","snuggy1967@yahoo.com","","6","","","2003-08-19","2003-08-19","2003-08-19"
+"Ray","LaMarche","","Escanaba","MI","49829","","rlcpa@hotmail.com","","4","","","2003-08-19","2003-08-19","2003-08-19"
+"Donna","Larson","","Laporte","IN","46350","","tdlarson@comcast.net","","4","","","2003-08-19","2003-08-19","2003-08-19"
+"Dorothy","Latchana","","Linden","MI","48451","","dorothylatchana@yahoo.com","","6","","","2003-08-19","2003-08-19","2003-08-19"
+"Robert","Line","","Clarkston","MI","48348","","robbarb@aol.com","","9","","","2003-08-19","2003-08-19","2003-08-19"
+"Mary","Long","","Shelby Twp.","MI","48316","","mldl@wideopenwest.com","","8","Michigan Vacation Guide","","2003-08-19","2003-08-19","2003-08-19"
+"Nick","Love","","Traverse City","MI","49686","","loveshawb@netscape.net","","9","","","2003-08-19","2003-08-19","2003-08-19"
+"Arden ","Lundin","","Bellmont","MI","49306","","ardie_lundin@spartanstores.com","","6","","","2003-08-19","2003-08-19","2003-08-19"
+"Jenny","Ogline","","Walled Lake","MI","48390","","fojo63@att.net","","6","","","2003-08-19","2003-08-19","2003-08-19"
+"Lee","Manduzzi","","Troy","MI","48098","","drw919@comcast.net","","9","","","2003-08-19","2003-08-19","2003-08-19"
+"Elaine","Margolis","","Ypsilanti","MI","48918","","midler2@aol.com","","9","","","2003-08-19","2003-08-19","2003-08-19"
+"Anne","Markkula","","Sault Ste. Marie ","Ontario","P6A 4L7","","amarkkula@sault.ymca.ca","","4","","","2003-08-19","2003-08-19","2003-08-19"
+"Robert","Massey","","Chicago","IL","60620","","snowmassey@aol.com","","4","","","2003-08-19","2003-08-19","2003-08-19"
+"James","Mclellan","","Clarkston","MI","48348","","jwmclellan@comcast.net","","4","","","2003-08-19","2003-08-19","2003-08-19"
+"Gary ","Miller","","Jenison","MI","49428","","millmed@iserv.net","","6","","","2003-08-19","2003-08-19","2003-08-19"
+"Natalia","Milz","","Brighton","MI","48116","","nnsmirnova@yahoo.com","","4","","","2003-08-19","2003-08-19","2003-08-19"
+"Donald","Mitzel","","Northville","MI","48167","","don@graphicolor.com","","9","","","2003-08-19","2003-08-19","2003-08-19"
+"Erich","Molitor","","Midland","MI","48640","","erichmolitor@yahoo.com","","6","","","2003-08-19","2003-08-19","2003-08-19"
+"Beth ","Nowak","","Ferndale","MI","48220","","beth.nowak@bbdodetroit.com","","9","","","2003-08-19","2003-08-19","2003-08-19"
+"Ernie","Neumayr","","Macomb","MI","48044","","ernie.g.neumayr@us.abb.com","","9","","","2003-08-19","2003-08-19","2003-08-19"
+"James","Newberry","","Edwardsburg","MI","49112","","jnewb2148@aol.com","","6","","","2003-08-19","2003-08-19","2003-08-19"
+"Matthew ","Holt","","","","","","mattholt1980@yahoo.com ","","","","","2009-02-03","2009-02-03","2009-02-03"
+"Tim","Noble","","Ida","MI","48140","","catcn40@aol.com","","4","","","2003-08-19","2003-08-19","2003-08-19"
+"Kathy","Norris","","Pinkney","MI","48169","","cnorris@intra-corp.net","","4","","","2003-08-19","2003-08-19","2003-08-19"
+"Tom and Margie","Ogden","","Grosse Pte. Farm","MI","48236","","tdogden@comerica.com","","4","","","2003-08-19","2003-08-19","2003-08-19"
+"Gerald","Pickett","","Detroit","MI","48223","","gpicket1@ford.com","","4","","","2003-08-20","2003-08-20","2003-08-20"
+"Mitch","Oncea","","Windsor","Ontario","N8S 3M2","","moncea@cogeco.ca","","4","","","2003-08-19","2003-08-19","2003-08-19"
+"Alicia","Pearlman","","West Bloomfield","MI","48324","","bpearl8411@aol.com","","9","","","2003-08-20","2003-08-20","2003-08-20"
+"Christina","Perros","","Ann Arbor","MI","48103","","cperros@comcast.net","","4","","","2003-08-20","2003-08-20","2003-08-20"
+"Nancy","Peters","","Sault Ste Marie","Ontario","P6A 6A5","","nancybert@shaw.ca","","9","","","2003-08-20","2003-08-20","2003-08-20"
+"Nina","Picco","","Sault Ste. Marie","Ontario","P6B 5N3","","ninapicco@hotmail.com","","9","","","2003-08-20","2003-08-20","2003-08-20"
+"Angela","Pickens","","Bloomfield Hills","MI","48304","","apickens@comcast.net","","4","","","2003-08-20","2003-08-20","2003-08-20"
+"Lori","Price","","Carmel","IN","46033","","pricel@firestoneindustrial.com","","9","","","2003-08-20","2003-08-20","2003-08-20"
+"Rudy","Pulido","","Holt","MI","48842","","jpulido@mimillers.com","","4","","","2003-08-20","2003-08-20","2003-08-20"
+"Kevin","Rice","","Fraser","MI","48026","","kevin_a_rice@msn.com","","4","","","2003-08-20","2003-08-20","2003-08-20"
+"Dave","Rich","","Grand Rapids","MI","49504","","spank_79@hotmail.com","","4","","","2003-08-20","2003-08-20","2003-08-20"
+"Cherie and Thomas","Ritter","","Bloomfield Hills","MI","48302","","tcritter@msn.com","","9","","","2003-08-20","2003-08-20","2003-08-20"
+"Shelly","Robertson","","Bloomfield Hills","MI","48301","","robertsonedshell@aol.com","","9","","","2003-08-20","2003-08-20","2003-08-20"
+"Carrie","Roeder","","Ferndale","MI","48220","","carrieroeder@yahoo.com","","9","","","2003-08-20","2003-08-20","2003-08-20"
+"Jennifer","Rose","","Redford","MI","48239","","jennrose85@hotmail.com","","4","","","2003-08-20","2003-08-20","2003-08-20"
+"","","","","","","","lesky.lk.t@petoskeyschools.org","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Douglas","Roselle","","Chattanooga","TN","37411","","roselld@mindspring.com","","9","","","2003-08-20","2003-08-20","2003-08-20"
+"Sheryl","Roth","","Grand Blanc","MI","48439","","rarssr@aol.com","","4","","","2003-08-20","2003-08-20","2003-08-20"
+"Louise","Salciccioli","","Commerce Twp.","MI","48382","","dsalcicc@ford.com","","9","","","2003-08-20","2003-08-20","2003-08-20"
+"Dr. Robert","Rubin","","Bloomfield Hills","MI","48301","","lrubin1217@aol.com","","9","","","2003-08-20","2003-08-20","2003-08-20"
+"Michelle","Short","","Sterling Heights","MI","48312","","mshort34@comcast.net","","9","","","2003-08-21","2003-08-21","2003-08-21"
+"William","Shroeger","","Northville","MI","48167","","wshroeger@aol.com","","6","","","2003-08-21","2003-08-21","2003-08-21"
+"Dave","Sias","","South Lyon","MI","48178","","davesias@aol.com","","9","","","2003-08-21","2003-08-21","2003-08-21"
+"Maryanne and Ted","Simon","","Bloomfield Hills","MI","48302","","tjsgoblue@aol.com","","0","","","2003-08-21","2003-08-21","2003-08-21"
+"Cynthia","Schoenfeldt","","Grand Rapids","MI","49546","","schoen14@comcast.net","","6","","","2003-08-21","2003-08-21","2003-08-21"
+"","","","","","","","donna@raylfamily.net","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Leon","Smit","","Battle Creek","MI","49017","","leon@oribisystems.com","","4","","","2003-08-21","2003-08-21","2003-08-21"
+"Jasen","Snelling","","Cincinnati","OH","45255","","ctyfnd1@fuse.net","","9","","","2003-08-21","2003-08-21","2003-08-21"
+"Karen","Soderholm","","Glen Arbor","MI","49636","","karen@lindylazar.com","","7","","","2003-08-21","2003-08-21","2003-08-21"
+"Sheri","Stav","","West Bloomfield","MI","48323","","stav5@aol.com","","4","","","2003-08-21","2003-08-21","2003-08-21"
+"tom","","","","","","","twilcor@gmail.com","","7","","looking at purchase opportunities, but do not see that section on the web site.","","","2009-09-11"
+"Brenda","Stewart","","Detroit","MI","48203","","iambookie@aol.com","","6","","","2003-08-21","2003-08-21","2003-08-21"
+"Joy","Strawser","","Ypsilanti","MI","48198","","joystrawser@hotmail.com","","6","","","2003-08-21","2003-08-21","2003-08-21"
+"Ron and Nellie","Stronks","","Chatham","Ontario","N7M 5J3","","stronks@ciaccess.com","","4","","","2003-08-21","2003-08-21","2003-08-21"
+"John","Hendershot","","Howell","MI","48855","","johender@ameritech.net","","7","","","2003-08-21","2003-08-21","2003-08-21"
+"Alez","Swaneck","","Royal Oak","MI","48073","","aswaneck@yahoo.com","","9","","","2003-08-21","2003-08-21","2003-08-21"
+"Sue","Taomino","","Clarkston","MI","48348","","susantaormino@aol.com","","2","","","2003-08-21","2003-08-21","2003-08-21"
+"Marguerite","Thomas","","Albuquerque","NM","87122","","margueritejt@hotmail.com","","6","","","2003-08-21","2003-08-21","2003-08-21"
+"Maura","Topper","","","","","","mauratoppe@wowway.com","","","","","2009-02-03","2009-02-03","2009-02-03"
+"Collette","Spring","","","","","","cr_spring@msn.com","","","","","2009-02-07","2009-02-07","2009-02-07"
+"Pam","Vanderlip","","Davison","MI","48423","","pamvlip@msn.com","","7","","","2003-08-21","2003-08-21","2003-08-21"
+"Nancy","VanNoord","","Lowell","MI","49331","","nancy@vannoord.net","","9","","","2003-08-21","2003-08-21","2003-08-21"
+"Rebecca","Vanwalleghem","","Grosse Pte. Farms","MI","48236","","rebvan100@aol.com","","9","","","2003-08-21","2003-08-21","2003-08-21"
+"Mary Anne","Veneri","","Grosse Pte. Woods","MI","48236","","mveneri@comcast.net","","9","","","2003-08-21","2003-08-21","2003-08-21"
+"","","","","","","","jjp59691@yahoo.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Anne","Villani","","Grosse Pte. Woods","MI","48236","","annevillani@aol.com","","9","","","2003-08-21","2003-08-21","2003-08-21"
+"Dudley","Bush","","Wetherby","","","","dudleybush@mac.com","","9","","","2003-08-21","2003-08-21","2003-08-21"
+"Bernard","Vrijburg","","","","","","berrox@hotmail.com","","","","","2009-02-25","2009-02-25","2009-02-25"
+"Tom","Waun","","Grand Blanc","MI","48439","","teewaun@aol.com","","9","","","2003-08-21","2003-08-21","2003-08-21"
+"Doug","Weber","","Canton","MI","48187","","dougweber@wideopenwest.com","","4","","","2003-08-21","2003-08-21","2003-08-21"
+"Philippa","Wheeler","","Rochester Hills","MI","48309","","d_wheeler_2000@yahoo.com","","4","","","2003-08-21","2003-08-21","2003-08-21"
+"Sheri","White","","Dryden","MI","48428","","slewis6842@aol.com","","6","","","2003-08-21","2003-08-21","2003-08-21"
+"Richard","Williams","","Winchester","IN","47394","","marpaw10@aol.com","","4","","","2003-08-21","2003-08-21","2003-08-21"
+"Kent","Wise","","Temperance","MI","48182","","kent.wise@sun.com","","6","","","2003-08-21","2003-08-21","2003-08-21"
+"Lorrie","Wolowich","","Sault Ste. Marie","Ontario","P64 645","","lwolowich@shaw.ca","","2","","","2003-08-21","2003-08-21","2003-08-21"
+"Andrea ","McNamara","","","","","","andrearae2006@yahoo.com","","","","","2009-04-24","2009-04-24","2009-04-24"
+"Lynette","Wurstner","","Waterford","MI","48328","","lwurstner@brownrigg.com","","4","","","2003-08-21","2003-08-21","2003-08-21"
+"Louis","Zasuwa","","New Hudson","MI","48165","","lzasuwa@comcast.net","","9","","","2003-08-21","2003-08-21","2003-08-21"
+"","","","","","","","leslie_stoner@kellyservices.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Judy","Kohn","","Adrian","MI","49221","","jkohn@tc3net.com","","9","","","2003-08-21","2003-08-21","2003-08-21"
+"Tim","Missler","","Elida","OH","45807","","timmissler@yahoo.com","","8","Guest of Owner","","2003-08-21","2003-08-21","2003-08-21"
+"","","","","","","","pnprpket@aol.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"","","","","","","","shanemac_444@hotmail.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"","","","","","","","the-deters@excite.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"","","","","","","","wmaryelle@yahoo.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Eric","Rood","","Charlotte","NC","28209","","rooderic@hotmail.com","","4","","","2003-08-21","2003-08-21","2003-08-21"
+"Lynn and Ronald ","Rycus","","East Lansing","MI","48823","","lkr9647@aol.com","","4","f","","2003-08-21","2003-08-21","2003-08-21"
+"Walter","Smith","","Northville","MI","48167","","jolinewalt@comcast.net","","9","","","2003-08-21","2003-08-21","2003-08-21"
+"juan","zapata","28811 w. king william dr","farmington hills","mi","48331","248-489-1293","zapataj@michigan.gov","4","6","","","2003-10-17","2003-10-18","2003-09-19"
+"Marilyn","MacKool","5269 Navajo Tr","Pinckney","Mi","48169","810-231-3089","m_mackool@yahoo.com","0","6","","","2003-10-10","2003-10-12","2003-09-21"
+"Wendy","Kilwabi","","","","","","cilver33@hotmail.com","","","","","2003-09-22","2003-09-22","2003-09-22"
+"Paul","Doherty","Grosse Pointe","MI","48230","","","pdoherty@morris-dohertypc.com","","9","","","2003-08-13","2003-08-13","2003-08-13"
+"Brian","Barker","","","","","","brian@flexlite.net","","","","","2003-09-25","2003-09-25","2003-09-25"
+"Elizabeth","Enders","","Gross Point","MI","48230","3138819474","betsyenders@comcast.net","","","","","2003-09-25","2003-09-25","2003-09-25"
+"Brad","Griffin","","","","","","bgriffin@griffinrealtygroup.com","3","9","","","","","2003-09-26"
+"Linda","Fleming","","Sellersville","PA","18960","2152577603","linda_fleming51@yahoo.com","","","","","2003-09-25","2003-09-25","2003-09-25"
+"Micheal","Graham","","Bloomifield Hills","MI","48301","2486260632","kimmiegraham@yahoo.com","","","","","2003-09-25","2003-09-25","2003-09-25"
+"James","Hart","","Farmington Hills","MI","48331","","hart3808@sbcglobal.net","","4","","","2003-09-26","2003-09-26","2003-09-26"
+"Karen","Lemanske","","Grosse Pointe Woods","MI","48236","","kaml214@aol.com","","4","","","2003-09-26","2003-09-26","2003-09-26"
+"George","Liddell","","San Diego","CA","92109","","jliddell@san.rr.com","","4","","","2003-09-26","2003-09-26","2003-09-26"
+"Lisa and Chris","Montague","","Grand Rapids","MI","49845","","montaguegr@aol.com","","9","","","2003-09-26","2003-09-26","2003-09-26"
+"Jeff","Nyquist","","East Lansing","MI","48826","","jnyquist@messa.org","","9","","","2003-09-26","2003-09-26","2003-09-26"
+"Norman","Orr","","Royal Oak","MI","48067","","norman.orr@kkue.com","","4","","","2003-09-26","2003-09-26","2003-09-26"
+"James","Potter","","Caledonia","MI","49316","","lpotter@egrps.org","","9","","","2003-09-26","2003-09-26","2003-09-26"
+"Jason","Schnelker","","Grand Rapids","MI","49503","","jasonandwindy@comcast.net","","9","","","2003-09-26","2003-09-26","2003-09-26"
+"Alan","Schram","","West Bloomfield","MI","48322","","footdoc@comcast.net","","9","","","2003-09-26","2003-09-26","2003-09-26"
+"Susan","Steffe","","East Lansing","MI","48823","","ssteffe@yahoo.com","","9","","","2003-09-26","2003-09-26","2003-09-26"
+"","","","","","","","downriversmiles@hotmail.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Jill & Mike ","Rowley","","Washington","MI","48095","","mjrowley10@comcast.net","","4","","","2003-10-15","2003-10-15","2003-10-15"
+"Sharon","Wolak","","Sterling Heights","MI","48312","","dsjwolak@wideopenwest.com","","4","","","2003-09-26","2003-09-26","2003-09-26"
+"Elena","Marin","","","","","","emmarin00@yahoo.com","0","6","","I am looking to accomodate 8 person (4 couples).","2003-12-29","2004-01-01","2003-10-14"
+"Colin","Bartos","","","Chesterfield","MI","48047","cbartos@comcast.net","","4","","","2003-10-15","2003-10-15","2003-10-15"
+"Mary","Robinson","","South Lyon","MI","48178","","mrobinson@dia.org","","6","","","2003-10-15","2003-10-15","2003-10-15"
+"Margret","Bryant","","Allendale","MI","49401","","danbryant2@aol.com","","9","","","2003-10-15","2003-10-15","2003-10-15"
+"Jeraldine","Dorris","","Marco Island","MI","34145","","geridorris@comcast.net","","9","","","2003-10-15","2003-10-15","2003-10-15"
+"Karon","Jackson","","Bloomfield","MI","48301","","karonjack16@comcast.net","","4","","","2003-10-15","2003-10-15","2003-10-15"
+"John","Klemke","","Glenview","IL","60025","","klemke@att.net","","9","","","2003-10-15","2003-10-15","2003-10-15"
+"Robert","Knust","","Farmington Hills","MI","48331","","RJ31L48@aol.com","","6","","","2003-10-15","2003-10-15","2003-10-15"
+"Judy","Kosick","","St. Joseph","MI","49085","","kosick123@msn.com","","9","","","2003-10-15","2003-10-15","2003-10-15"
+"Kenneth","Kron","","West Bloomfield","MI","48323","","skron@comcast.net","","9","","","2003-10-15","2003-10-15","2003-10-15"
+"Becky","Murray","","Westerville","OH","43082","","rbm1006@aol.com","","9","","","2003-10-15","2003-10-15","2003-10-15"
+"Ben and Karen","Robinson","","Grosse Pte. Farms","MI","48236","","kar0312@aol.com","","9","","","2003-10-15","2003-10-15","2003-10-15"
+"Daniel","Martin","","","","","","craiglush@charter.net","","","","","2009-02-07","2009-02-07","2009-02-07"
+"Judy","Simcina","","Huntington Woods","MI","48070","","jsimcina@aol.com","","9","","","2003-10-15","2003-10-15","2003-10-15"
+"Daniel","Tosch","","Bloomfield Hills","MI","48302","","pai@progressiveassociates.com","","9","","","2003-10-15","2003-10-15","2003-10-15"
+"Todd","White","","Bloomfield","MI","48301","","twhite243115MI@comcast.net","","9","","","2003-10-15","2003-10-15","2003-10-15"
+"Paul","Wright","","Taylor","MI","48180","","wrightm@oakwood.org","","9","","","2003-10-15","2003-10-15","2003-10-15"
+"John and Nan","Strickler","","","","","","johnandnanstrick@aol.com","","","","","2003-10-16","2003-10-16","2003-10-16"
+"Jane","Sowell","1110 South Brys Drive","Grosse Pointe Woods","MI","48236","313-882-7659","jsowell@bsdd.com","4","9","","As a frequent visitor, can I get a discount?","2003-12-19","2003-12-22","2003-10-16"
+"Karen","Nagher","","","","","","karenanne626@aol.com","","","","","2003-10-17","2003-10-17","2003-10-17"
+"Cathy","Nagy","","","","","","nagyc@atlastechnologies.com","","","","","2003-10-17","2003-10-17","2003-10-17"
+"Shannon","Cunningham","","","","","","zmcsmc1@hotmail.com","","","","","2003-10-21","2003-10-21","2003-10-21"
+"Linda","Duane","","","","","","mlduane@wideopenwest.com","","","","","2003-11-29","2003-11-29","2003-11-29"
+"Janice","Horne","","","","","","jhornemsu@comcast.net","","","","","2003-10-21","2003-10-21","2003-10-21"
+"","Garling","","","","","","telcen@wowway.com","","","","","2003-10-21","2003-10-21","2003-10-21"
+"Henry","Mistele","","","","","","hmistele@comlawone.com","","","","","2003-10-21","2003-10-21","2003-10-21"
+"Angela","Carson","","","","","","acarsonpho@aol.com","","","","","2003-10-21","2003-10-21","2003-10-21"
+"L.F.","Einheuser","","","","","","larryeinheuser@aol.com","","","","","2003-10-21","2003-10-21","2003-10-21"
+"Robert","Rubin","","","","","","rrubin8045@aol.com","","","","","2003-10-21","2003-10-21","2003-10-21"
+"Carl","Naghtin","","","","","","mkeeyn@aol.com","","","","","2003-10-21","2003-10-21","2003-10-21"
+"Henry ","Nickol","","","","","","hanickol@aol.com","","","","","2003-10-21","2003-10-21","2003-10-21"
+"Todd","Kofler","","","","","","thk30@yahoo.com","","","","","2003-10-21","2003-10-21","2003-10-21"
+"Diana Sharer","Diana Sharer","2840 Amberly Rd.b","Bloomfield Hills","Michigan","48301","248.646.5027","djsharer@comcast.net","3","9","","","2003-12-26","2003-12-30","2003-10-22"
+"Allyn","Adrian","112 North Maple","Onsted","MI","49265","5174672991","AJJSAdrian@aol.com","5","9","Hardwood Solutions/Jeff Hardcastle owns a unit - that's where we stay at,  as part owners.","","2003-11-28","2003-11-30","2003-10-24"
+"Paul","Joiner","","","","","","pjoiner@ruf.org","4","6","","","2003-11-24","2003-11-26","2003-11-05"
+"Steve","Flechsig","5344 Washakie Tr.","Brighton","MI","48116","810 227 7984","mackinawad@aol.com","0","9","LOOKING TO BUY","We are interested on what is on the market to buy","","","2003-11-16"
+"Frank and Kris ","Earley","","","","","","frankandkris@aol.com","","","","","2003-11-17","2003-11-17","2003-11-17"
+"Lesleigh","Milanowski","1112 Marion","Grand Haven","Michigan","49417","616-847-3970","lesleighmilanowski@hotmail.com","1","9","","","2003-12-31","2004-02-01","2003-11-17"
+"Maxine","Derstine","","","","","","mderstine@generationsonline.com","","","","","2003-11-29","2003-11-29","2003-11-29"
+"Chris","Sdregas","","","","","","csdregas@msn.com","","","","","2009-02-07","2009-02-07","2009-02-07"
+"Paul","Burall","","","","","","hlelbach@aol.com","","","","","2003-11-29","2003-11-29","2003-11-29"
+"Todd","Burk","","","","","","tburk@wwnet.net","","","","","2003-11-29","2003-11-29","2003-11-29"
+"Alexandra","Fodell","","","","","","fodellgang@aol.com","","","","","2003-11-29","2003-11-29","2003-11-29"
+"Gary and Mary","Deneszczuk","","","","","","mldeneszczuk@comcast.net","","","","","2003-11-29","2003-11-29","2003-11-29"
+"Micheal","Donahue","","","","","","donahuemf@aol.com","","","","","2003-11-29","2003-11-29","2003-11-29"
+"","","","","","","","driefe@prologis.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Nate","Fink","","","","","","npfink@aol.com","","","","","2003-11-29","2003-11-29","2003-11-29"
+"Jay & Karen","Dubrinsky","8346 Huntington Road","Huntington Woods","MI","48070","248-582-9296","gratefulgardener@wideopenwest.com","3","9","","","2004-01-16","2004-01-19","2003-12-01"
+"Carol","Grammatico","","","","","","cgrammatic@hotmail.com","","","","","2003-11-29","2003-11-29","2003-11-29"
+"Linda","Griggs","","","","","","lgriggs243766mi@comcast.net","","","","","2003-11-29","2003-11-29","2003-11-29"
+"kathy","schalter","1424 Ambassador Dr.","Okemos","mi","48864","517-347-8670","schalter@comcast.net","2","6","2 person jacuzzi","","2003-02-13","2003-02-19","2003-12-01"
+"Angelo","Grosso","","","","","","upusedtobe@aol.com","","","","","2003-11-29","2003-11-29","2003-11-29"
+"Diane","Leathers","6627 Tree Knoll","","","","","sleathers@wideopenwest.com","0","6","","","2003-12-28","2004-01-01","2003-12-01"
+"Roger and Janet","Holm","","","","","","holmhome@juno.com","","","","","2003-11-29","2003-11-29","2003-11-29"
+"Julie","Izzard","","","","","","jizzard@charter.net","","","","","2003-11-29","2003-11-29","2003-11-29"
+"Shelly","Jacobson","","","","","","shelleykj@aol.com","","","","","2003-11-29","2003-11-29","2003-11-29"
+"Tom and Sue ","Johnson","","","","","","wtjsnowmass@yahoo.com","","","","","2003-11-29","2003-11-29","2003-11-29"
+"Jean","Kelly","","","","","","rk711@comcast.net","","","","","2003-11-29","2003-11-29","2003-11-29"
+"Micheal","Limas","","","","","","mlima@comcast.net","","","","","2003-11-29","2003-11-29","2003-11-29"
+"Ronald","Michalzuk","","","","","","rpmichal@aol.com","","","","","2003-11-29","2003-11-29","2003-11-29"
+"Carl","Oosterhouse","","","","","","coosterhou@sbcglobal.net","","","","","2003-11-29","2003-11-29","2003-11-29"
+"Larry ","Parks","","","","","","laparks@wideopenwest.com","","","","","2003-11-29","2003-11-29","2003-11-29"
+"Lori","Pogoda","","","","","","mpogoda@comcast.net","","","","","2003-11-29","2003-11-29","2003-11-29"
+"Stephen","Pronger","","","","","","steve@maintservices.com","","","","","2003-11-29","2003-11-29","2003-11-29"
+"Kathy","Regnier","","","","","","regnier39@atc-enviro.com","","","","","2003-11-29","2003-11-29","2003-11-29"
+"Graham","Compton","","","","","","graham.compton@us.army.mil","","","","","2009-02-25","2009-02-25","2009-02-25"
+"Frank","Zenere","","","","","","frankpatzenere@comcast.net","","","","","2008-11-05","2008-11-05","2008-11-05"
+"Kurt","Tesnow","","","","","","kltesnow@aol.com","","","","","2003-11-29","2003-11-29","2003-11-29"
+"Dave and Amy","Tratt","","","","","","tratts@comcast.net","","","","","2003-11-29","2003-11-29","2003-11-29"
+"Micheal","Trist","","","","","","tworbeach@hotmail.com","","","","","2003-11-29","2003-11-29","2003-11-29"
+"Gil","Urban","","","","","","gilurban@aol.com","","","","","2003-11-29","2003-11-29","2003-11-29"
+"Dorene","VanStrein","","","","","","vstrien@qtm.net","","","","","2003-11-29","2003-11-29","2003-11-29"
+"Ken and Marla","Velick","","","","","","kindmom54@aol.com","","","","","2003-11-29","2003-11-29","2003-11-29"
+"Paul","Wellman","","","","","","paul@homesbywellman.com","","","","","2003-11-29","2003-11-29","2003-11-29"
+"","","","","","","","drmain5@gmail.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Margaret","Zureich","","","","","","mzure@aol.com","","","","","2003-11-29","2003-11-29","2003-11-29"
+"Kalee","Bugman","","","","","","kalee8@hotmail.com","","6","","Do you have anything available for Dec. 30th - Jan4th?","","","2003-12-06"
+"Barb","Schreuder","","","","","","Schreuderjjjj@aol.com","","9","","","","","2003-12-07"
+"Brian","Snodgrass","","","","","","snods99@hotmail.com","","","","","2003-12-11","2003-12-11","2003-12-11"
+"Kjell","Kristiansen","","","","","","jo1402@hotmail.com","","","","","2003-12-11","2003-12-11","2003-12-11"
+"Steve","Sutton","120 Lake ","Petoskey","MI","49770","","steve@gaslightmedai.com","","","","","2003-12-12","2003-12-12","2003-12-12"
+"Daniel","Baker","","","","","","dbaker578@aol.com","","","","","2003-12-11","2003-12-11","2003-12-11"
+"Brian","saha","","","","","","brian@pinconningcheese.com","","","","","2003-12-11","2003-12-11","2003-12-11"
+"David","Bricault","","","","","","dbrica@yahoo.com","","","","","2003-12-11","2003-12-11","2003-12-11"
+"Catherine","Harte","","","","","","catherine.l.harte@gm.com","","","","","2003-12-11","2003-12-11","2003-12-11"
+"Sharon","McKinzie","","","","","","smcki48214@aol.com","","","","","2003-12-20","2003-12-20","2003-12-20"
+"Cheryl","McCaron","","","","","","chermc56@yahoo.com","","","","","2003-12-20","2003-12-20","2003-12-20"
+"Michael","McGowan","7354 Copperwood","Sylvania","OH","43560","419-824-3092","msm6453@buckeye-express.com","4","9","","","2004-01-01","2004-01-04","2003-12-20"
+"Barry","Simescu","1375 William","Plymouth","Mi","48170","734-453-2369","ibasemi@aol.com","3","6","","","2004-01-01","2004-03-01","2003-12-28"
+"Kathy","Ling","","","","","","kaling@comcast.net","","","","","2004-01-01","2004-01-01","2004-01-01"
+"Annette","Raddatz","","","","","","annette.m.raddatz@chi.frb.org","","","","","2004-01-01","2004-01-01","2004-01-01"
+"Maxine","Goodman","","","","","","maxie820@aol.com","","","","","2004-01-01","2004-01-01","2004-01-01"
+"Joseph","Panetta","41452 Waterfall","Northville","Mi","48167","248 347-9814","Panettafamily@comcast.net","5","9","","","2004-02-19","2004-02-22","2004-01-01"
+"michael","whiteley","1240 east broomfield rd","mount pleasant","mi","48858","(586)944-9584","white1mj@cmich.edu","5","6","","","2004-02-13","2004-02-15","2004-01-05"
+"Denise","Johnson","8415 Carriage Lane","Portland","MI","48875","313-268-1247","denise.c.johnson@gm.com","4","4","","","2004-01-31","2004-01-02","2004-01-08"
+"Jennifer","Wilkie","12019 Gatwick View Drive","Fishers","IN ","46038","3179024402","jwilkie28@yahoo.com","4","7","","I already made a reservation for a 2 bedroom, 1 bath condo and was given a price which I believe was around $513.00 for the two nights.  I am wondering why I am being charged more than the posted rates on this website.  I would like to get the rate you have advertised for that condo.  I see that it should be $226/night. Please contact me. Thank you. ","2004-01-23","2004-01-25","2004-01-09"
+"Artem","Koronkevitch","","","","","","koromkevitch@insightbb.com","","","","","2004-01-15","2004-01-15","2004-01-15"
+"Dede ","Briggs","4340 Saturn Drive","Dorr","Michigan","49323","","dlbriggs@att.net","","","Do you have any restaraunts on site?","","","","2009-02-26"
+"Ken","Demps","","","","","","kendemps@comcast.net","","","","","2004-01-27","2004-01-27","2004-01-27"
+"Nancy","Weinert","","","","","","egaw@comcast.net","0","9","","","2004-02-16","2004-02-18","2004-01-21"
+"Stephen","Dow","2768 Homewood Drive","Troy","MI","48098","2489525178","stevedow@comcast.net","5","4","","","2004-02-19","2004-02-21","2004-01-22"
+"Mary","Taylor","","","","","","mjtaylor1228@comcast.net","","","","","2004-01-27","2004-01-27","2004-01-27"
+"Anne Marie","Udell","","","","","","atudell@ameritech.net","","","","","2004-01-27","2004-01-27","2004-01-27"
+"carol","lis","6913 rosemont","detroit","Michigan","48228","313-593-1286","carol.lis@tm.net","5","9","hot tub","","2004-02-20","2004-02-21","2004-01-27"
+"Nena","Shaw ","","","","","","nenashaw@hughes.net","","","","","2009-04-24","2009-04-24","2009-04-24"
+"Pam","Barton","","","","","","pbarton@ncresa.org","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Amy","Cole","28519 Beste","St. Clair Shores","MI","48081-1004","586-774-3663","anicole327@aol.com","5","9","","","2004-02-13","2004-02-15","2004-01-29"
+"Renee and Rick","Christen","","Whitehouse","OH","43571","","reneechristen@aol.com","","","","","2004-03-29","2004-03-29","2004-03-29"
+"Allison","Cofone","","Hopkinton","MA","01748","","allison_cofone@waters.com","","","","","2004-03-29","2004-03-29","2004-03-29"
+"James","Culver","","Linden","MI","48451","","jcculvermd@aol.com","","","","","2004-03-29","2004-03-29","2004-03-29"
+"Nancy","Dulmage","","Orchard Lake","MI","48324","","ned1213@comcast.net","","","","","2004-03-29","2004-03-29","2004-03-29"
+"","","","","","","","jjtuba@earthlink.net","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Kevin","Ferguson","","Portage","IN","46368","","tracyf2386@aol.com","","","","","2004-03-29","2004-03-29","2004-03-29"
+"Jim","Foulds","","Midland","MI","48640","","jefoulds@aol.com","","","","","2004-03-29","2004-03-29","2004-03-29"
+"Micheal","Friedman","","Lake Orion","MI","48630","","mcfhome@comcast.net","","","","","2004-03-29","2004-03-29","2004-03-29"
+"Mary and Ted","Gedra","","Grand Rapids","MI","49506","","gedrate@wwwinc.com","","","","","2004-03-29","2004-03-29","2004-03-29"
+"Yumiko","Vanderlugt","","Troy","MI","48098","","yvanderl@ford.com","","","","","2004-03-29","2004-03-29","2004-03-29"
+"Lucifur","Greve","","Bay City","MI","48709","","rgreve7939@aol.com","","","","","2004-03-29","2004-03-29","2004-03-29"
+"","","","","","","","lgkochanowski@comcast.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"","","","","","","","pokorskij@yahoo.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Paul","Hoying","","Anna","OH","45302","","phoying@hhbonline.net","","","","","2004-03-29","2004-03-29","2004-03-29"
+"Greg","Labun","","Homer","MI","49245","","glabun@hotmail.com","","","","","2004-03-29","2004-03-29","2004-03-29"
+"Kathlene","Lamarre","","Hudson","OH","44236","","lamarres@adelphia.net","","","","","2004-03-29","2004-03-29","2004-03-29"
+"Peter","MacKinnon","","Chatham","Ontario","N7M2B2","","p.mackinnon@sympatico.ca","","","","","2004-03-29","2004-03-29","2004-03-29"
+"Todd","Maddox","","Kalamazoo","MI","49004","","maddox6@aol.com","","","","","2004-03-29","2004-03-29","2004-03-29"
+"Mark and Mary ","Malnor","","Rapid River","MI","49878","","mcmalnor@chartermi.net","","","","","2004-03-29","2004-03-29","2004-03-29"
+"Kathy","Mikolajczak","","Toledo","OH","43614","","mikol@buckeye-express.com","","","","","2004-03-29","2004-03-29","2004-03-29"
+"Deborah","Mustard","","Fort Wayne","IN","46845","","mdmustard@aol.com","","","","","2004-03-29","2004-03-29","2004-03-29"
+"","","","","","","","drogers@b-vconstruction.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Nicole","Quist","","Saline","MI","48176","","nquist@comcast.net","","","","","2004-03-29","2004-03-29","2004-03-29"
+"Jason","Ratledge","","Royal Oak","MI","48068","","jrat0015@yahoo.com","","","","","2004-03-29","2004-03-29","2004-03-29"
+"Nancy","Shannon","","Rochester Hills","MI","48309","","nancygf@aol.com","","","","","2004-03-29","2004-03-29","2004-03-29"
+"Andrea","Termini","","Chicago","IL","60612","","andrea.termini@comcast.net","","","","","2004-03-29","2004-03-29","2004-03-29"
+"Kurt and Joann","Vonmach","","Birmingham","MI","48009","","jvonmach@aol.com","","","","","2004-03-29","2004-03-29","2004-03-29"
+"Linda","Wicker","","Lansing","MI","48917","","finetuned13@yahoo.com","","","","","2004-03-29","2004-03-29","2004-03-29"
+"Laura","Wilczynski","","Ypsilanti","MI","48197","","johnlauraw@yahoo.com","","","","","2004-03-29","2004-03-29","2004-03-29"
+"Carrie","Zandbergen","","Grand Rapids","MI","49505","","tddzan@aol.com","","","","","2004-03-29","2004-03-29","2004-03-29"
+"Dilip","Paul","3080 Idlewild Ct.","Ann Arbor","MI","48105","734-332-0064","dkpaul@yahoo.com","2","9","","","2004-04-30","2004-02-05","2004-04-13"
+"Stacey","Miller","23060 Brentwood","Brownstown","Mi","48183","734 837 7430","smille36@comcast.net","3","4","","","2004-05-21","2004-05-22","2004-04-30"
+"Sheri","Queen","10110 Creekwood","Plymouth","MI","48170","734-416-9177","rhuetters@aol.com","4","8","Been there before","","2004-08-02","2004-08-07","2004-05-05"
+"Katie","McGinnis","2619 Cascade Place Dr.","Grand Rapids","MI","49546","","katherinemcginnis@hotmail.com","5","4","","","2004-06-25","2004-06-28","2004-05-10"
+"April","Wilder","5609 Happy Hollow Rd. apt 11","Milford","Ohio","45150","","jonnothon1975@yahoo.com","","","WMTA Travel Advisor","","2004-06-17","2004-06-17","2004-06-17"
+"Denise","Rea","30050 Beechwood Ave","garden City","Michigan","48135","","rndrea@aol.com","","","","","2004-06-17","2004-06-17","2004-06-17"
+"Kathy","DeVries","1401 Fremont N.W.","Grand Rapids","Michigan","49504","","kathy_devries@hotmail.com","","","","","2004-06-17","2004-06-17","2004-06-17"
+"Lynn","Doneff","7833 Dock Road","Egg Harbor","Wi","54209","","lynndel@hotmail.com","","","","","2004-06-17","2004-06-17","2004-06-17"
+"Marc ","Scherschel","3533 N. 76th St. #8","Milwaukee","Wi","53222","","mrscherschel@yahoo.com","","","","","2004-06-17","2004-06-17","2004-06-17"
+"Mark","VanKley","2427 Thornton rd","Lansing","IL","60827","","spongebob9498@aol.com","","","","","2004-06-17","2004-06-17","2004-06-17"
+"","","","","","","","jmarenti@ford.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Patricia ","Lane","7181 E. St. road 64","Birdseye","IN","47513","","pat5lane@aol.com","","","","","2004-06-17","2004-06-17","2004-06-17"
+"Betsey","Hemm","207 Muirfield Circle","North Prairie","WI","53153","","betsyhemm@wi.rr.com","","","","","2004-06-17","2004-06-17","2004-06-17"
+"","","","","","","","libby.crabb@gmail.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Bill","Pepper","5050 Hidden View Drive","Hilliard","OH","43026","","bpepper55@hotmail.com","","","","","2004-06-17","2004-06-17","2004-06-17"
+"carolyn ","Silber","3052 Montequma Drive","Cincinnati","Oh","45251","","seadrift@cinci.rr.com","","","","","2004-06-17","2004-06-17","2004-06-17"
+"Chad","Wilkin","2136 Edwardsville Galena Road","Georgetown","IN","47122","","wilkin97@yahoo.com","","","","","2004-06-17","2004-06-17","2004-06-17"
+"Cindy ","Torraco","754 Warwick Court","Carol Stream","IL","60188","","cjtorraco@msn.com","","","","","2004-06-17","2004-06-17","2004-06-17"
+"Dan ","Hofland","3602 21st Street South","Fargo","ND","58104","","bepo@cableone.net","","","","","2004-06-17","2004-06-17","2004-06-17"
+"Dann","Boland","7317 Catalpa Avenue ","Woodridge","IL","60517","","dboland30@comcast.net","","","","","2004-06-17","2004-06-17","2004-06-17"
+"Dave","Carriere","4509 Brady Street","Davenport","IA","52748","","david.carriere@erac.com","","","","","2004-06-17","2004-06-17","2004-06-17"
+"rhonda","donnay","","","","","","rpda@hbci.com","","6","","","","","2004-06-18"
+"Jim","Frisinger","2969 Lakeshore Dr","Muskegon","MI","49441","231-759-2532","jim@blufftonbaysails.com","3","6","","","2004-07-29","2004-08-01","2004-06-25"
+"Celia","Wagner","","","","","","cwagner@bex.net","","","","","2009-02-07","2009-02-07","2009-02-07"
+"Jeff","Goetzman","","","","","","kgoetzman2662@charter.net","","","","","2004-07-05","2004-07-05","2004-07-05"
+"Mark","Ammann","","Kalamazoo","MI","49009","269-353-3860","familyammann@yahoo.com","","","","","2004-07-09","2004-07-09","2004-07-09"
+"Christine","Simone","","","","","","casimone@yahoo.com","","","","","2009-02-25","2009-02-25","2009-02-25"
+"","","","","","","","prcrutch23@comcast.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Linda","Anderson","","Grand Rapids","MI","49546","616-942-1337","linnielou@comcast.net","","","","","2004-07-09","2004-07-09","2004-07-09"
+"Shigeki","Arymodo","","Auburn Hills","MI","48326","248-299-9375","shigeki_arimoto@hi-lex.com","","","","","2004-07-09","2004-07-09","2004-07-09"
+"Dan","Baines","","Grand Rapids","MI","49509","616-532-1886","dbaines@mpcu.org","","","","","2004-07-09","2004-07-09","2004-07-09"
+"Hak-Sun","Bak","","Fort Wayne","IN","46814","260-625-6088","hsbak@hotmail.com","","","","","2004-07-09","2004-07-09","2004-07-09"
+"Tiffanie","Barackman","","Plymouth","MI","48170","734-414-9960","liltif7@wideopenwest.com","","","","","2004-07-09","2004-07-09","2004-07-09"
+"","","","","","","","drolentwins@att.net","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Mary Ellen","Claypool","","","","","","meclaypool@wow.com","","","","","2009-02-03","2009-02-03","2009-02-03"
+"Anthony","Agrusa","","","","","","dagrusa@dsddance.com","","","","","2009-02-07","2009-02-07","2009-02-07"
+"Mike","Beda","","Brunswick","OH","44212","330-220-9870","Kathleen.beda@ey.com","","","","","2004-07-09","2004-07-09","2004-07-09"
+"Edward","Barry","","Bay City","MI","48706","989-648-3797","sharon.a.barry@delphi.com","","","","","2004-07-09","2004-07-09","2004-07-09"
+"Donna","Berger","","Farmington Hills","MI","48331","248-661-3729","dsberger@comerica.com","","","","","2004-07-09","2004-07-09","2004-07-09"
+"Erin","Bishop","","South Lyon","MI","48178","248-486-8926","ebishop65@sbcglobal.net","","","","","2004-07-09","2004-07-09","2004-07-09"
+"Raymond","Blaszczak","","Troy","MI","48083","248-730-2504","rfblazeroffice@sbcglobal.net","","","","","2004-07-09","2004-07-09","2004-07-09"
+"Jane","Blaze","","Saginaw","MI","48609","989-865-6370","jmblaze@chartermi.net","","","","","2004-07-09","2004-07-09","2004-07-09"
+"Robert","Bleyaert","","Petoskey","MI","49770","231-439-5010","bob_bleyaert@bankofnorthernmichigan.com","","","","","2004-07-09","2004-07-09","2004-07-09"
+"Mark","Bloom","","Northville","MI","48167","248-730-2504","markrbl@hotmail.com","","","","","2004-07-09","2004-07-09","2004-07-09"
+"Kreshnik","Boshnjaku","","Chicago","IL","60660","773-552-2097","nikgjakovari@yahoo.com","","","","","2004-07-09","2004-07-09","2004-07-09"
+"James and Virgi","Bowers","","Alva","FL","33920","239-693-4670","vkayh@aol.com","","","","","2004-07-09","2004-07-09","2004-07-09"
+"Bill","Bowling","","Grand Rapids","MI","49503","269-795-1633","bill.bowling@paramountprop.com","","","","","2004-07-09","2004-07-09","2004-07-09"
+"Una","Boyd","","Crystal Lake","IL","60014","815-444-8847","unaboyd@sbcglobal.net","","","","","2004-07-09","2004-07-09","2004-07-09"
+"Mike","Grant","809 Loyola","Ann Arbor","MI","48103","734-994-4665","mdgrant@comcast.net","1","4","","Would like to know the price before make a reservation.  Thanks.","2009-05-15","2009-05-15","2009-04-25"
+"Douglas and Teri","Brown","","Grosse Pointe","MI","48230","313-882-3567","dbrown230@comcast.net","","","","","2004-07-09","2004-07-09","2004-07-09"
+"James","Brown","","Connersville","IN","47331","765-825-1382","jebrown@aol.com","","","","","2004-07-09","2004-07-09","2004-07-09"
+"Robert ","Brown","","Corunna","CD","NON 1GO","519-862-2115","rbrown9@cogeco.ca","","","","","2004-07-09","2004-07-09","2004-07-09"
+"Barb ","Galvin","","","","","","galgrif2@aol.com","","","","","2004-07-12","2004-07-12","2004-07-12"
+"Bruce ","McLean","","","","","","bamclean@bellsouth.net","","","","","2004-07-12","2004-07-12","2004-07-12"
+"John","Porter","","","","","","jwporter203@msn.com","","","","","2004-07-12","2004-07-12","2004-07-12"
+"Karen","Pierce","","","","","","karenpierce@charter.net","","","","","2004-07-12","2004-07-12","2004-07-12"
+"Kari","Crumley","","","","","","fairiegirl72@yahoo.com","","","","","2004-07-12","2004-07-12","2004-07-12"
+"Lisa","McCoy","","","","","","Iamccov@texaschildrenshospital.org","","","","","2004-07-12","2004-07-12","2004-07-12"
+"Marge ","Ohlman","","","","","","mohlman@rbc.org","","","","","2004-07-12","2004-07-12","2004-07-12"
+"Mary Jo","Laymon","","","","","","mjnhorn@hotmail.com","","","","","2004-07-12","2004-07-12","2004-07-12"
+"Melissa","Storch","","","","","","melbock@hotmail.com","","","","","2004-07-12","2004-07-12","2004-07-12"
+"Anne","Salter","","","","","","asalter@ameritech.net","","","","","2004-07-12","2004-07-12","2004-07-12"
+"Brenda ","Davis","","","","","","bdavis1252@aol.com","","","","","2004-07-12","2004-07-12","2004-07-12"
+"C. Paul","Thompson","","","","","","Tpaul447@aol.com","","","","","2004-07-12","2004-07-12","2004-07-12"
+"Dale","Frank","","","","","","dalewf57@comcast.net","","","","","2004-07-12","2004-07-12","2004-07-12"
+"","","","","","","","jmjoliet@yahoo.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Robert","Brady","","","","","","rb4owat@wsdmi.org","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Bob","Carden","","","","","","bcarden@activeaero.com","","","","","2004-07-13","2004-07-13","2004-07-13"
+"George ","Gundry","1109 Hathaway Rising","Rochester Hills","MI","48306","248-608-0519","george.t.gundry@gm.com","3","6","","Would be open for any unit size that sleeps 5.  Weekend dates are flexible - arrive Sunday and leave Sunday, arrive Sat and leave Sat","2004-08-07","2004-08-14","2004-07-13"
+"Lowel","Derdiger","","","","","","derdiger@earthlink.net","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Christina","Brewer","","","","","","cmb2@uakron.edu","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Dina","Buckley","","","","","","buckleyb5@aol.com","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Susan","Burns","","","","","","sburns@mpro.org","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Dan","Cavanaugh","","","","","","dvantong@yahoo.com","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Paul","Cavanaugh","","","","","","pjcavanaugh@yahoo.com","","","","","2004-07-13","2004-07-13","2004-07-13"
+"","","","","","","","libby.irby@cw50detroit.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"","","","","","","","prosttim@yahoo.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"TETSUHIRO ","TOMITA","20134 NORTHVILE PLACE DR.APT 3316","NORTHVILLE","MI","48167","734-536-0040","tomita_okazaki@yahoo.co.jp","4","8","Person is four adult. We are friends. (No children.) Only male. ","Today Feb/27 am, I talked with Ms.Chris(Kris?) about my reservation.  She gave me much information. Then usually we can not stay in just one night, but she agree that we stay in just one night. I appriciate her. Thanks of her information, I decided to stay in your hotel. let me confirm. My understanding is rent fee is $222/room for only one night Mar/6th Friday.  If I heve misunderstanding, please tell me by e-mail.  Then I would like you to send me a confirmation of my reservation. Thank you !! ","2009-06-03","2009-07-03","2009-02-27"
+"Darlene","Peterson","","","","","","dakepete@comcast.net","","","","","2009-02-07","2009-02-07","2009-02-07"
+"Rosalie","Clark","","","","","","rclark9@indy.rr.com","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Patricia","Claypool","","","","","","pmclaypool@hotmail.com","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Keith","Nyboer","3420 Maple Gate Dr.","Saugatuck","MI","49453","2698572190","tknyboer@verizon.net","3","1","","Do you allow pets?","","","2009-09-05"
+"Jennifer","Constand","","","","","","j_constand@yahoo.com","","","","","2004-07-13","2004-07-13","2004-07-13"
+"James ","Cooper","","","","","","jcooper@hpsk12.net","","","","","2004-07-13","2004-07-13","2004-07-13"
+"","","","","","","","sueanndykman@gmail.com","","","","","","","2013-10-11"
+"Mike","Czarniecki","","","","","","mczarniecki@ameritech.net","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Susan","Davis","","","","","","tadavis@chartermi.net","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Todd","Davis","","","","","","tdavis@wilbursmith.com","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Roland","Day","","","","","","deziner77@aol.com","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Debra","Dean","","","","","","DEBD29@msn.com","","","","","2004-07-13","2004-07-13","2004-07-13"
+"","","","","","","","linda.e.johnson@us.pwc.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Susan","DeMaris","","","","","","pdemaris@comcast.net","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Chris","Depoy","","","","","","depoych@hotmail.com","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Brian","Derisley","","","","","","BADERISLEY@aol.com","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Belinda","Dokic","","","","","","bsalkovic@hotmail.com","","","","","2004-07-13","2004-07-13","2004-07-13"
+"David and Kim","Duhaime","","","","","","dvduh@aol.com","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Sid","Durham","","","","","","cherryme@msu.edu","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Ruth","Halter","","","","","","rahhalter@aol.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Greg","Eifert","","","","","","laura.eifert@eds.com","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Mary Ellen","Ehlke","","","","","","plehlke@aol.com","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Corinna","England","","","","","","cengland@hlecpa.com","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Bruce","Fershtman","","","","","","bfershtman@yahoo.com","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Michelle","Fisher","","","","","","michelle.t.fisher@gm.com","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Tim","Fralick","","","","","","tfralick@oiles.com","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Carole and Jerry","Frank","","","","","","csrhf1947@comcast.net","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Ann","Gallagher","","","","","","annkgallagher@yahoo.com","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Susan","Galloup","","","","","","bryan@galloupguitars.com","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Sue","Gawel","","","","","","suehg@comcast.net","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Chris","Goliver","","","","","","firefightmd@yahoo.com","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Tim","Grady","","","","","","tgrady@cablers.com","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Thomas","Graham","","","","","","taa911@aol.com","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Amy","Green","","","","","","aigreen@comcast.net","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Tom ","Grimes","","","","","","tom@grimesassociates.com","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Donna","Grooms","","","","","","djgrooms@hotmail.com","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Michael","Gualdoni","","","","","","mhgualdoni@yahoo.com","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Dianne","Guenin-Lelle","","","","","","dgueninlelle@albion.edu","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Pam","Hughes","","","","","","pam.hughes@eds.com","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Dan","Hansen","","","","","","dehansen@us.ibm.com","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Margaret and John","Hawkins","","","","","","hawkinsjohnr@yahoo.ca","","","","","2004-07-13","2004-07-13","2004-07-13"
+"William","Hess","","","","","","mikeh@pagelithoinc.com","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Louise","Hicken","","","","","","netmom3@juno.com","","","","","2004-07-13","2004-07-13","2004-07-13"
+"","Holy Cross Lutheran","","","","","","jimskibum@comcast.net","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Ken and Mary","Hoover","","","","","","khoover99@yahoo.com","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Robert","Hopper","","","","","","wrhopper@yahoo.com","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Paul","Hosack","","","","","","kahosack@msn.com","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Dennis","Howell","","","","","","dennishowell@comcast.net","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Mark","Howison","","","","","","mehowison@dow.com","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Lyn","Bloink","","","","","","nsoap1@verizon.net","","0","","Are there any employment opportunities?","","","2009-04-26"
+"Barbara","Hunter","","","","","","barbarahunter104@hotmail.com","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Robert and Sharon","Huth","","","","","","rhuth.eshb@hobbs-black.com","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Joyce","Imhoff","","","","","","sales@spikelawrence.com","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Nicole","Ingle","","","","","","pthomps1@yahoo.com","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Elizabeth","Jackson","","","","","","betsy.jackson@gm.com","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Cathy","Janowiak","","","","","","cathy@region3cussa.org","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Phil","Jansen","","","","","","pjlj99@aol.com","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Amy","Melrose ","","","","","","melrose@att.com ","","","","","2009-02-03","2009-02-03","2009-02-03"
+"Nancy","Crawford","","","","","","nancy.crawford@kla-tencor.com","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Christopher","Horlacher","","","","","","chris.horlacher@sanfordcorp.com","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Brent","Kellis","","","","","","brentk@charter.net","","","","","2004-07-14","2004-07-14","2004-07-14"
+"Walter","Jurewicz","","","","","","wrepair@aol.com","","","","","2004-07-14","2004-07-14","2004-07-14"
+"Mike","Kajfasz","","","","","","thekajman@aol.com","","","","","2004-07-14","2004-07-14","2004-07-14"
+"Richard","Keiden","","","","","","keiden@comcast.net","","","","","2004-07-14","2004-07-14","2004-07-14"
+"Bruce","Kennedy","","","","","","lbjk123@juno.com","","","","","2004-07-14","2004-07-14","2004-07-14"
+"Thomas ","Kimbro","","","","","","tkimbro@e-bbk.com","","","","","2004-07-14","2004-07-14","2004-07-14"
+"Robert","Kirkman","","","","","","rek@kirksauto.com","","","","","2004-07-14","2004-07-14","2004-07-14"
+"Penny","Kiss","","","","","","pennykiss@hotmail.com","","","","","2004-07-14","2004-07-14","2004-07-14"
+"Brenda","Knipp","","","","","","bk_401@msn.com","","","","","2004-07-14","2004-07-14","2004-07-14"
+"Patricia","Kolowich","","","","","","pkolowich@aol.com","","","","","2004-07-14","2004-07-14","2004-07-14"
+"Steve ","Koshar","","","","","","skoshar@aol.com","","","","","2004-07-14","2004-07-14","2004-07-14"
+"Mike","Kulczycki","","","","","","dakota1994@hotmail.com","","","","","2004-07-14","2004-07-14","2004-07-14"
+"Alissa","Rademacher","1020 Cass Street","Traverse City","MI","49684","","alissa_r@sbcglobal.net","","6","We are looking for a place to have our wedding reception where our guests can stay the night too.  Please send us some information regarding pacakages and rates.  Thank you!","","2007-05-17","2007-05-19","2005-06-08"
+"Daniel","Kuzdzal","","","","","","dankuz2001@yahoo.com","","","","","2004-07-14","2004-07-14","2004-07-14"
+"Donna","Johns","3867 Bald Mountain Road","Lake Orion","Michigan","48360","248-373-9181","parris_apt@yahoo.com","5","4","Please reserve a room with Rob Hopper LOBOS 92 Soccer Team.","Please call me to confirm this registration, I left a message with Debbie's voice mail.","","","2004-07-15"
+"Catherine","Huntley","113 N. State St.","Gobles","MI","49055","269-628-5318","catherineh@hotmail.com","5","6","","","2004-09-05","2004-09-06","2004-07-22"
+"Max","Balden","4312 Braun Rd.","Saline","Michigan","48176","734- 429-9476","treescape@hotmail.com","","6","I am interested in purchase of condo for investment and retirement. ","","","","2004-08-11"
+"George","Bednarik","","","","","","geoshari@comcast.net","","","","","2004-08-11","2004-08-11","2004-08-11"
+"Shari","Pollesch","","","","","","oberon1266@sbcglobal.net","","","","","2009-02-07","2009-02-07","2009-02-07"
+"Tom","Carr","","","","","","spartans1fan@aol.com","","","","","2004-08-11","2004-08-11","2004-08-11"
+"susanne","Kullen","","","","","","blessedru@comcast.net","","","","","2004-07-14","2004-07-14","2004-07-14"
+"Donald","Clark","","","","","","clark.don@verizon.net","","","","","2004-08-11","2004-08-11","2004-08-11"
+"Pam","Copp","","","","","","mcdtenn@aol.com","","","","","2004-08-11","2004-08-11","2004-08-11"
+"Faye","Enders","","","","","","traders@salvagegroups.com","","","","","2004-08-11","2004-08-11","2004-08-11"
+"Norman","Erickson","","","","","","norson1@aol.com","","","","","2004-08-11","2004-08-11","2004-08-11"
+"Todd","Grieb","","","","","","tgrieb@wowway.com","","","","","2004-08-11","2004-08-11","2004-08-11"
+"Annette","Helmkay","","","","","","Anmohe@aol.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"","","","","","","","jmvmsw@yahoo.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Philip and Cynthia","Hosay","","","","","","hosay@lehman.cuny.edu","","","","","2004-08-11","2004-08-11","2004-08-11"
+"Brian","Hudock","","","","","","thehudocks@msn.com","","","","","2004-08-11","2004-08-11","2004-08-11"
+"","","","","","","","lindermanmark@yahoo.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Peter","Kallgren","","","","","","pkallgren@prestolitewire.com","","","","","2004-08-11","2004-08-11","2004-08-11"
+"Ann","Amodei","36632 Park Place","Sterling Heights","MI","48310","586-264-6113","annamodei@yahoo.com","3","9","","","","","2004-08-12"
+"David","Crawford","6582 Sawgrass Dr., SE","Kentwood","MI","49508","616-554-2079","kcdcslmc@hotmail.com","5","8","","Spoke w/ someone at main desk at 7:45pm on 8/12/04. Said 1 bdrm unit was available for my husband who hasn't had a break from our autistic son for more than 10 yrs. Said total would be $370.60 & that 1 bdrm unit was available. PLEASE call to confirm reservation. He REALLY needs this!","2004-08-13","2004-08-15","2004-08-12"
+"Charles","Hess","4098 Nearbrook","Bloomfield Hills","MI","48302","248 577-5100","hess@funtech.com","0","","Looking for a season rental.  Family of 5 plus weekend guests.","Please call me to discuss options.","2004-12-01","2005-04-01","2004-10-10"
+"Thomas","Barnes","","","","","","tbarnes@cfl.rr.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Karen and Ted","Bradley","","","","","","smeyer65@yahoo.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Gaylon","Brooks","","","","","","gnjbrooks@msn.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Carl and Patti","Goeckel","","","","","","goeckelinc@aol.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Ronnie ","Cantrell","","","","","","ron952@hotmail.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Alan","Chandross","","","","","","achandross@excite.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Christianna","Close","","","","","","clegs3@msn.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Paula","D'Angela","","","","","","pd_angela@hotmail.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Carol","Dulgar","","","","","","cjdulgar@earthlink.net","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Tami","","","","","","","tami.sneller@disherdesign.com","","4","","Do you have gift certificates?  If so, do they ever expire?","","","2011-11-22"
+"Paul","Favero","","","","","","phfavero@msn.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Mary","Stasek","","","","","","mestasek@cablespeed.com","","","","","2009-02-03","2009-02-03","2009-02-03"
+"Jill","Gallagher","","","","","","jmbenivegna@hotmail.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Debra","Gardner","","","","","","dgscrip@msn.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Diane","Giancarlo","","","","","","giancarlofamily@juno.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Cathy","Great Lakes Gas","","","","","","cpaulus@glgt.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Lori","Hachenski","","","","","","hawkins_lori@hotmail.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Ruth","Hofmeyer","","","","","","rhofmeyer@chartermi.net","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Aaron","Peterson","","","","","","susiehamblingpeterson@verizon.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Nancy","Hutsenpiller","","","","","","nmstar@ameritech.net","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Jennifer","","","","","","","jenniferphone@hotmail.com","0","6","","What is a fax number? ","2009-07-18","2009-08-03","2009-03-05"
+"Kathleen","Johnston","","","","","","kbbj2000@hotmail.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Dan","Kelley","","","","","","dan@dankelley.net","","","","","2004-10-22","2004-10-22","2004-10-22"
+"John and Amy","Ireland","","","","","","irelands.7.00@comcast.net","","","","","2004-10-22","2004-10-22","2004-10-22"
+"James","Kidwell","","","","","","theresa.kidwell@insightbb.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Roger","Kohn","","","","","","rogerwkohn@aol.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Don","Kooima","","","","","","donkooima@yahoo.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Bob","Schodowski","","","","","810-667-8940","bob@elitecleanroom.com","","","","","2009-04-28","2009-04-28","2009-04-28"
+"Lynn","Kosinski","","","","","","KosinL01@wsdmi.org","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Ed","Kowalski","","","","","","ekowalski@nhav.misd.net","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Andrea","Landwer","","","","","","alandwer@comcast.net","","","","","2004-10-22","2004-10-22","2004-10-22"
+"John","Latimer","","","","","","juanes4@yahoo.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Kenneth","Leupp","","","","","","skipliz@adelphia.net","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Debbie","Lewis","","","","","","bndlewis@wideopenwest.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Steven","Lins","","","","","","stevelins@aol.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Lisa","Loridas","","","","","","sillycourt81@aol.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"","Engler","","","","","","englerandcompany@hotmail.com","","","","","2009-05-22","2009-05-22","2009-05-22"
+"David","Lydy","","","","","","dblydy@ksrint.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"William ","Mack","","","","","","suemack123@comcast.net","","8","","","2004-10-22","2004-10-22","2004-10-22"
+"Timothy","Morgan","","","","","","tim.morgan@mindspring.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Dutch","Mandel","","","","","","dmandel@crain.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Michael","Morris","","","","","","littleredwing24@comcast.net","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Dan","Marus","","","","","","djmarus@ctchome.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"James","Maxwell","","","","","","max4dogs@aol.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"","","","","","","","jody.ole@sbcglobal.net","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Marguerite","McDonald","","","","","","sfisher@techgroupinc.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Caroline","McHugh","","","","","","cjmch@comcast.net","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Tim","McIntire","","","","","","tmcintire@indy.rr.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Mark and Barb","McNally","","","","","","mcnally@chartermi.net","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Hardwood","Mendoza","","","","","","jdh@hardwoodsolutions.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Carol","Miller","","","","","","Carol@Greenleafrealty.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Joyce","Mills","","","","","","joymil@voyager.net","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Kristijan","Minanov","","","","","","kdminanov@comcast.net","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Cindy","Miner","","","","","","cminor@comcast.net","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Susan","Mongrue","","","","","","suemongrue@chartermi.net","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Thomas","Monnich","","","","","","brandesroy@yahoo.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Lisa","Nash","","","","","","llnash18@aol.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Alison","Morgan","","","","","","alisonamorgan@yahoo.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Peggy","Morrow","","","","","","peggy@peggymorrow.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Janice","Morse","","","","","","janmorse@aol.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Frances","Murphy","","","","","","fmurphy@fmurphyassoc.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Helen","Myers","","","","","","hemyers09@aol.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Orest","Mykolenko","","","","","","mykolenk@umich.edu","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Sherrell","Najman","","","","","","drnajman@aol.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Bethany","Nanzer","","","","","","mikeandbethnanzer@yahoo.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Frank","Nardoni","","","","","","fnardoni@acromag.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Don","Naughton","","","","","","dsnaughton@aep.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Cristina","Negrut","","","","","","cnegrut@umich.edu","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Charles","Nichols","","","","","","Chasmary1@adelphia.net","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Elaine","Nowak","","","","","","enowak@umich.edu","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Gary","Oats","","","","","","skibumm56@yahoo.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Steve","Olmstead","","","","","","olmsteadsteve@aol.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Jodi","Olsen","","","","","","jodiann_73@yahoo.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Robert","Olson","","","","","","robolson@comcast.net","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Mike and Kay","Olthoff","","","","","","kayolth@aol.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Carol and Park","Owens","","","","","","cowens5579@yahoo.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Pat","Palguta","","","","","","ppalguta@woh.rr.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Virginia","Pelton","","","","","","vmpelton@hotmail.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Ryan","Perkins","","","","","","ryanperkins160@hotmail.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"","","","","","","","duakins@comcast.net","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Mike","Plague","","","","","","mplague@ameritech.net","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Lorraine","Polik","","","","","","lwpolik@hotmail.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Carl","Shimbo","","","","","","carl.shimbo@earthlink.net","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Kim","Haynak","630 cunningham","Clare","Mi","48617","989-386-8084","loweryhaynak@yahoo.com","4","6","","<p>information on weekend scrapbook in oct</p>","2009-10-24","","2009-07-19"
+"Laura","Przekop","","","","","","laura_przekop@urscorp.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"","","","","","","","lisa.goetz@verizon.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Rachel","Reid","","","","","","rachelmreid@hotmail.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Susan ","Reynolds","","","","","","Toosie115@aol.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Marilyn ","Guathier","","","","","","mgauthier59@comcast.net","","","","","2009-02-03","2009-02-03","2009-02-03"
+"Kelly","Rigney","","","","","","rigneykj@aol.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"James and Diane","Rikkers","","","","","","jdrikkers@charter.net","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Robert","Payne ","","","","","","olliep80@sbcglobal.net","","","","","2009-02-07","2009-02-07","2009-02-07"
+"Michael","Sanborn","","","","","","msjanborn@dcmi.net","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Steve","Sauer","","","","","","stsauer@plastridge.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Janice","Schiffer","","","","","","socljerker@aol.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Andrea","Schiller","","","","","","schillerhome@comcast.net","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Mark","Schimming","","","","","","schimmingm@aol.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Steve","Schlesinger","","","","","","mfschlesinger@yahoo.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Robert","Schramm","","","","","","BartSchram@aol.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Tim","Secord","","","","","","skiman10@juno.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Banpote","Poosuthasee","","","","","","banpoos@yahoo.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Suzanne","Sharkey","","","","","","sjsharkey@comcast.net","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Jane","Short","","","","","","jshort@goshenschools.org","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Ingrid","Siggaard","","","","","","esiggaard@excite.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Robert","Simon","","","","","","simonstein@comcast.net","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Kevin","Skotzke","","","","","","jas6565@aol.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Dan","Slotsema","","","","","","djs@vwlst.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Mark","Slotwinski","","","","","","mslotwinski@genchem.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Christine","Smiggen","","","","","","csmiggen@sbcglobal.net","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Linda and William","Solomon","","","","","","dok1bill@aol.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Wayne","Sorenson","","","","","","wsorenson@earthlink.net","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Debra","Sparrow","","","","","","dsparrow@crosshuller.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Ken and Karen","Spaulding","","","","","","kspaulding@transmatic.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Gary","Stevenson","","","","","","gstevens2@yahoo.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"sue","neil","385 Stone Falls Dr., #203","Ada","MI","49301","616-822-9486","sueneil9486@gmail.com","","9","Hi Mindy!\r
+\r
+Please email me.  The group wants to come up this year.  No scheduling conflicts finally!\r
+\r
+Thanks,\r
+Sue","","2009-05-15","2009-05-17","2009-03-05"
+"Kathy","Partridge","","","","","","kathyapartridge@aol.com ","","","","","2009-10-26","2009-10-26","2009-10-26"
+"David and Melinda","Stone","","","","","","mctaggartstone@yahoo.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Victoria","Stump","","","","","","stumpvb@yahoo.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Maria","Lacopelli-Barker","","","","","","miacopel@yahoo.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"David and Barb","Sturtz","","","","","","bqsturtz@comcast.net","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Renee","Suchara","","","","","","rsuchara@comcast.net","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Doug","Suna","","","","","","DSuna@msn.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Gregory","Swanson","","","","","","rmsgregory@optonline.net","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Myrna","Sweetland","","","","","","sweetlandmj@aol.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Todd","Taliaferro","","","","","","ttaliaferro@comcast.net","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Naimei","Tang","","","","","","ah2106@wayne.edu","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Maya","Pitts ","","","","","","olsonml@yahoo.com","","","","","2009-02-07","2009-02-07","2009-02-07"
+"Theodore","Taylor","","","","","","andreajtaylor@yahoo.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Sharon","Thayer","","","","","","jaythay@aol.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Leslie","Thomas","","","","","","leslie9591@sbcglobal.net","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Maureen","Thomas","","","","","","maureenthomas123@hotmail.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Jon","Nies","","","","","","jon.nies@lewan.com","","9","","We have reservations with Nies group in June.  I live in Denver and fly in.  The past serveral years I have been able to gain access to Nies condo on a Tuesday evening (one day early) and pay about $100 extra.  Can I please do this again.  Thx.  Jon    ","","","2009-05-10"
+"Cathy","Tristant","","","","","","ctristant@fnf.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Laurel","Tyler","","","","","","laurel.tyler@att.net","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Ray","Ugoroski","","","","","","ugomom@aol.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Sue","Valdez","","","","","","suesail@juno.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Mary","Vandenberg","","","","","","mary_vdb@hotmail.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"David","Vanderweele","","","","","","melawd@aol.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Scott","VanDyken","","","","","","svandyken@vdminc.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Harry","Voss","","","","","","hrmimvoss@msn.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"david","Waller","","","","","","wallerdg@hotmail.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Lorraine","Walsh","","","","","","thewalshes@twmi.rr.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Lisa","Weir","","","","","","ehweir@umich.edu","","","","","2004-10-22","2004-10-22","2004-10-22"
+"David","Weissert","","","","","","jdweissert@aol.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Linda","Wojciechowicz","","","","","","linda_woj@godivachoc.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Louis","White","","","","","","louwhitemd@aol.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Sheryl","Hyman","","","","","","sth051692@comcast.net","","","","","2009-05-22","2009-05-22","2009-05-22"
+"","","","","","","","dvdbanach@yahoo.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Debbie","Wilkinson","","","","","","debawilk@yahoo.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Lesley ","Lawlor","1946 W Diversey  #G","Chicago","IL","60614","773-909-4992","lmlawlor@gcfd.org","0","6","","","2004-01-14","2004-01-17","2004-10-26"
+"Darlene","Witham","","","","","","dwitham320@comcast.net","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Michael","Hindmarsh","","","","","","onebowtie@gmail.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Joseph","Youngheim","","","","","","jbky2000@ameritech.net","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Scott","Bania","","","","","","scott.bania@detroitk12.org","","","","","2004-10-29","2004-10-29","2004-10-29"
+"Patricia","Cornell","","","","","","pcornell@deloitte.com","","","","","2004-10-29","2004-10-29","2004-10-29"
+"Carmen","Markstrom","","","","","","clmarkstrom@aol.com","","","","","2004-10-29","2004-10-29","2004-10-29"
+"Susan","Garrett","","","","","","bonzo1953@charter.net","","","","","2004-10-29","2004-10-29","2004-10-29"
+"Cheryl","Flox","","","","","","kobylakflox@yahoo.com","","","","","2004-10-29","2004-10-29","2004-10-29"
+"Bobbi","Cawley","","","","","","cawleybl@aol.com","","","","","2004-10-29","2004-10-29","2004-10-29"
+"Ashley","Olinghouse","","","","","","ashley_olinghouse@hotmail.com","","","","","2004-10-29","2004-10-29","2004-10-29"
+"Tim ","Dykstra","","","","","","tpdykstra@yahoo.com","","","","","2008-09-29","2008-09-29","2008-09-29"
+"Tyann","Crawford","","","","","","ttl76@aol.com","","","","","2004-10-29","2004-10-29","2004-10-29"
+"Lisa","Ackerly","","","","","","lisa1323@msn.com","","","","","2004-10-29","2004-10-29","2004-10-29"
+"Kathryn","Shupe","","","","","","kathy.shupe@ymp.gov","","","","","2004-10-29","2004-10-29","2004-10-29"
+"Chris","Hohenberger","","","","","","chrish@ceoexpress.com","","","","","2004-10-29","2004-10-29","2004-10-29"
+"Carol","Steenbergh","","","","","","steenpat@comcast.net","","","","","2004-10-29","2004-10-29","2004-10-29"
+"Lynda","Kerns","1332 Ivywood","Okemos","MI","48864","517-347-4623","lskerns@gmail.com","","9","","","2009-07-18","2009-07-25","2009-05-10"
+"Joe","King","","","","","","jking1704@aol.com","","","","","2004-10-29","2004-10-29","2004-10-29"
+"Lori Ann","Dickerson","","","","","","dicker22@msu.edu","","","","","2004-10-29","2004-10-29","2004-10-29"
+"John","Mangum","","","","","","sixtimesadad@aol.com","","","","","2004-10-29","2004-10-29","2004-10-29"
+"Ann","Benson","","","","","","bensonfamily@comcast.net","","","","","2004-10-29","2004-10-29","2004-10-29"
+"Robert","Smith","","","","","","rasmith17@yahoo.com","","","","","2004-10-29","2004-10-29","2004-10-29"
+"Helen","Clarren","","","","","","sclarren@comcast.net","","","","","2004-10-29","2004-10-29","2004-10-29"
+"Leah","Tai","","","","","","leahtai@umich.edu","","","","","2004-10-29","2004-10-29","2004-10-29"
+"Anne","Lohnes","","","","","","annelohnes@yahoo.com","","","","","2004-10-29","2004-10-29","2004-10-29"
+"Julia","Busik","","","","","","busik@msu.edu","","","","","2004-10-29","2004-10-29","2004-10-29"
+"Jeff","Hoogstra","","","","","","jeffhoogstra@yahoo.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Craig","Tomai","","","","","","craigtomai@comcast.net","","","","","2004-10-29","2004-10-29","2004-10-29"
+"Jason","Ritter","","","","","","racinjitter@aol.com","","","","","2004-10-29","2004-10-29","2004-10-29"
+"Ron","Nelson","","","","","","priorn@juno.com","","","","","2004-10-29","2004-10-29","2004-10-29"
+"Joette","Gulbis","","","","","","jovility1@yahoo.com","","","","","2004-10-29","2004-10-29","2004-10-29"
+"Mark","George","","","","","","georgegroup@comcast.net","","","","","2004-10-29","2004-10-29","2004-10-29"
+"Gard","Adams","","","","","","aadams4512@comcast.net","","","","","2004-10-29","2004-10-29","2004-10-29"
+"Eric","Fischer","629 Fischer Hammock RD.","Sebastian","Florida","32958-8303","772-589-3159","ecf1@bellsouth.net","4","6","snowmobile trip","","2005-01-23","2005-01-27","2004-11-10"
+"Teresa ","Dwyer","25202 Sullivan Lane","Novi","MI","48375","(248)380-8478","dwyerte@student.gvsu.edu","1","7","Reccommended by Kathy Bartlett from Nub's Nob.","I would just like to request a brouchere at this time.","2005-01-28","2005-01-30","2004-12-21"
+"Julie","Deppen","3218 Wains Way","Oakland","MI","48363","248-814-9315","mandjdep@aol.com","2","7","Also Could Do a 2 Bed, 2 Bath.  Would Like to be close to our friends that have reservations under Tim Walsh","","2005-02-15","2005-02-18","2004-12-22"
+"George","McCroskey","131 Jakway Ave","Benton Harbor","Michigan","49022","269 926-1035","gcmccros@aol.com","5","9","","","2005-07-27","2005-07-31","2004-12-22"
+"Len","Bartoszewicz","","","","","","doclendo@yahoo.com","","","","","2004-12-23","2004-12-23","2004-12-23"
+"Glenn","Berman","","","","","","gwb1865buy@mac.com","","","","","2004-12-23","2004-12-23","2004-12-23"
+"Robert","Hautamaki","","","","","","rkmaki@aol.com","1","7","","","2005-01-07","2004-01-09","2004-12-20"
+"Dean","Blair","","","","","","dblair@foremanblair.com","","","","","2004-12-23","2004-12-23","2004-12-23"
+"Shareen ","Brown","","","","","","shareen.j.brown@accenture.com","","","","","2004-12-23","2004-12-23","2004-12-23"
+"Izenson","Daniel","","","","","","dizenson@kmklaw.com","","","","","2004-12-26","2004-12-26","2004-12-26"
+"Diana","Carr","","","","","","kdgnkid@aol.com","","","","","2004-12-23","2004-12-23","2004-12-23"
+"Charles","Castle","","","","","","martycastle@hotmail.com","","","","","2004-12-23","2004-12-23","2004-12-23"
+"Sheldon","Cohn","","","","","","scohn@donerus.com","","","","","2004-12-23","2004-12-23","2004-12-23"
+"Tom","Kearly","","","","","","tdkearly@mtu.edu","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Jeff","Chores","","","","","","omegav7@aol.com","","","","","2009-02-07","2009-02-07","2009-02-07"
+"Sarah","Misener","819 Strong Avenue","Elkhart","IN","46514","574-293-4000","tom.misener@verizon.net","2","9","","","2005-01-21","2005-01-23","2004-12-25"
+"Steve ","Ford","","","","","","sgford@sbcglobal.net","","","","","2004-12-23","2004-12-23","2004-12-23"
+"Tony","Fry","","","","","","tcmcf4@yahoo.com","","","","","2004-12-23","2004-12-23","2004-12-23"
+"","","","","","","","dwilliams157@comcast.net","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Susan ","Remenapp","29906 Manhattan","Saint Clair Shores","MI","48082","586-774-7279","sremenapp@hotmail.com","0","0","","","2004-02-11","2004-02-15","2004-12-25"
+"Janet","Gole","","","","","","janet.l.gole@gm.com","","","","","2004-12-23","2004-12-23","2004-12-23"
+"Daniel","Graves","","","","","","dagraves@mapllc.com","","","","","2004-12-23","2004-12-23","2004-12-23"
+"Wade","Gyure","","","","","","wgyure@yahoo.com","","","","","2004-12-23","2004-12-23","2004-12-23"
+"David","Hagan","","","","","","dhsurg@comcast.net","","","","","2004-12-23","2004-12-23","2004-12-23"
+"Lorraine","Hart","","","","","","lulu_48116@yahoo.com","","","","","2004-12-23","2004-12-23","2004-12-23"
+"Sheila","Meiste","3331-48th Street","Hamilton","MI","49419","269-751-7085","sdmeiste@hotmail.com","0","6","Parents 50th Anniversary and want to take family away for weekend.","","2005-06-24","2005-06-26","2004-12-26"
+"Peggy ","Hutcheson","","","","","","peggyhutcheson@comcast.net","","","","","2004-12-26","2004-12-26","2004-12-26"
+"Dennis","Knoblock","","","","","","theknobbys@yahoo.com","","","","","2004-12-26","2004-12-26","2004-12-26"
+"Sheng-Ming","Kuo","","","","","","smkuo2@yahoo.com","","","","","2004-12-26","2004-12-26","2004-12-26"
+"Julie","Leto","","","","","","julieren141@aol.com","","","","","2004-12-26","2004-12-26","2004-12-26"
+"John","Lindow","","","","","","john_lindow@mascohq.com","","","","","2004-12-26","2004-12-26","2004-12-26"
+"Szymon","Machajewski","","","","","","morganbush@hotmail.com","","","","","2004-12-26","2004-12-26","2004-12-26"
+"John","Maier","","","","","","mastermaier@hotmail.com","","","","","2004-12-26","2004-12-26","2004-12-26"
+"Scott","Main","","","","","","scott.main@comcast.net","","","","","2004-12-26","2004-12-26","2004-12-26"
+"Roman","Krzyzanowski","","","","","","romank@abcgrp.com","","","","","2004-12-26","2004-12-26","2004-12-26"
+"Carolina","DeLuca","","","","","","c.deluca@att.net ","","","","","2009-10-26","2009-10-26","2009-10-26"
+"Ray","Martyniak","","","","","","rmartyniak1@comcast.net","","","","","2004-12-26","2004-12-26","2004-12-26"
+"Jeffrey","McWilliams","","","","","","jpmtmp01@yahoo.com","","","","","2004-12-27","2004-12-27","2004-12-27"
+"Oktavijan ","Minanov","","","","","","minanov@comcast.net","","","","","2009-02-03","2009-02-03","2009-02-03"
+"David","Sandlin","","","","","","quix@wowway.com","","","","","2004-12-28","2004-12-28","2004-12-28"
+"Kalpana","Nanda","","","","","","knanda64@hotmail.com","","","","","2004-12-27","2004-12-27","2004-12-27"
+"Cristina","Negrut","","","","","","cavrames@yahoo.com","","","","","2004-12-27","2004-12-27","2004-12-27"
+"Carrie","Newman","","","","","","carrieon@msn.com","","","","","2004-12-27","2004-12-27","2004-12-27"
+"Kathy","O'neil","","","","","","kdomad@aol.com","","","","","2004-12-27","2004-12-27","2004-12-27"
+"Nicole","Bartlett","18254 M32 W","Hillman","MI","49746","","bakeinmexico@yahoo.com","2","6","","We are looking for a place to scrapbook for a weekend during the summer.  I see you have something in April.  Would you be able to accommodate a small group at another time with a place to scrap?","","","2009-03-07"
+"Janice","Oneill","","","","","","clarelimerick@comcast.net","","","","","2004-12-27","2004-12-27","2004-12-27"
+"Lynn","Paskulovich","","","","","","lynnanddon@comcast.net","","","","","2004-12-27","2004-12-27","2004-12-27"
+"Amy","Phillips","","","","","","amygirl2020@yahoo.com","","","","","2004-12-27","2004-12-27","2004-12-27"
+"Melissa","Allen","","","","","","allen4994@comcast.net","","","","","2009-05-11","2009-05-11","2009-05-11"
+"Katherine ","Foy","1745 Andover Ln  S.E.","Grand Rapids","MI","49506","616949-4204","irishkfoy@comcast.net","5","9","","","2010-01-28","2010-01-30","2010-01-21"
+"Darrick","Puffer","","","","","","djpuffer@comcast.net","","","","","2004-12-28","2004-12-28","2004-12-28"
+"Stephanie","Reed","","","","","","rebelwab@columbus.rr.com","","","","","2004-12-28","2004-12-28","2004-12-28"
+"Dave","Rice","","","","","","healyrice@comcast.net","","","","","2004-12-28","2004-12-28","2004-12-28"
+"Janice","Rolls","","","","","","rollsj@comcast.net","","","","","2004-12-28","2004-12-28","2004-12-28"
+"Linda","Procida","1002 Somerset Avenue","Grosse Pointe Park","MI","48230","313 824 0527","lprocida3@comcast.net","5","9","","","2004-12-31","2005-01-02","2004-12-27"
+"Jim","Ross","","","","","","jamwross@hotmail.com","","","","","2004-12-28","2004-12-28","2004-12-28"
+"Alyson and Tom","Rozgowski","","","","","","therozgowskis@juno.com","","","","","2004-12-28","2004-12-28","2004-12-28"
+"charles","thomson","","","","","","thomson603@yahoo.com","1","5","","","","","2004-12-28"
+"Lorie","Sandercock","","","","","","blsandercock@comcast.net","","","","","2004-12-28","2004-12-28","2004-12-28"
+"Richard","Sanderson","","","","","","r2r3@aol.com","","","","","2004-12-28","2004-12-28","2004-12-28"
+"","","","","","","","e_youngdahl@hotmail.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Sartori","Robin","","","","","","ssartori@comcast.net","","","","","2004-12-28","2004-12-28","2004-12-28"
+"Sheri","Klein ","","","","","","valtt@aol.com ","","","","","2009-10-30","2009-10-30","2009-10-30"
+"Ray","Sesko","","","","","","marc@sindbadsdetroit.com","","","","","2004-12-28","2004-12-28","2004-12-28"
+"Heonwoo","Song","","","","","","ssong_79@hotmail.com","","","","","2004-12-31","2004-12-31","2004-12-31"
+"Jennifer","Stratton","","","","","","jennestratton@aol.com","","","","","2004-12-31","2004-12-31","2004-12-31"
+"Kathryn","Strobel","","","","","","xdavidstrobelx@aol.com","","","","","2004-12-31","2004-12-31","2004-12-31"
+"Susan","Sullivan","","","","","","sullisus@comcast.net","","","","","2004-12-31","2004-12-31","2004-12-31"
+"michelle","allread","","","","","","michlegal@sbcglobal.net","","9","","","","","2004-12-30"
+"Erika ","Temesy","","","","","","candicutie659@sbcglobal.net","","","","","2004-12-31","2004-12-31","2004-12-31"
+"Carol","Turkus","","","","","","turkuscr@comcast.net","","","","","2004-12-31","2004-12-31","2004-12-31"
+"Urban","Kris","","","","","","kurb987@comcast.net","","","","","2004-12-31","2004-12-31","2004-12-31"
+"Randal","Vaughn","","","","","","rrvaughn@comcast.net","","","","","2004-12-31","2004-12-31","2004-12-31"
+"Susan","Wagener","","","","","","allwags@comcast.net","","","","","2004-12-31","2004-12-31","2004-12-31"
+"John","Waker","","","","","","jwaker@msn.com","","","","","2004-12-31","2004-12-31","2004-12-31"
+"Michael","Walker","","","","","","mswalker@kwcom.net","","","","","2004-12-31","2004-12-31","2004-12-31"
+"Carol","Wallace","","","","","","rwallace@chartermi.net","","","","","2004-12-31","2004-12-31","2004-12-31"
+"Chris and Laura","Nyes","","","","","","nyesweb@sbcglobal.net","","","","","2009-05-11","2009-05-11","2009-05-11"
+"Avra","Williams","","","","","","avrawill@wideopenwest.com","","","","","2004-12-31","2004-12-31","2004-12-31"
+"John and Judy","Wavro","","","","","","jjwavro@msn.com","","","","","2004-12-31","2004-12-31","2004-12-31"
+"Mary","Waxer","","","","","","luvtolaugh123@yahoo.com","","","","","2004-12-31","2004-12-31","2004-12-31"
+"Malinda","Heidenreich","","","","","","mindymay@hotmail.com","","","","","2009-02-03","2009-02-03","2009-02-03"
+"Gerald","Wischer ","","","","","","jwischer@ovbank.com","","","","","2004-12-31","2004-12-31","2004-12-31"
+"Jason","Yaldoo","","","","","","donaldh@coslink.net","","","","","2004-12-31","2004-12-31","2004-12-31"
+"Jody","Zwyghuizen","","","","","","jlz38@hotmail.com","","","","","2004-12-31","2004-12-31","2004-12-31"
+"FRANK","MOURTOS","904 BLAIRMOOR CT.","GROSSE POINTE WOODS","MI","48236","313-220-2638","FMOURTOS@COMCAST.NET","0","9","","","2005-02-04","2005-02-06","2005-01-02"
+"nancy","herringshaw","14869 shady lane","shelby twp.","mi","48315","","nherringshaw@comcast.net","5","4","","","2005-01-21","2005-01-23","2005-01-04"
+"Rich ","Royer","","","","","","rich.royer@compuware.com","","9","","","","","2005-01-18"
+"Leigh","Kraushaar","3850 Ashbrook","Holt","MI","48842","","lkraushaar@comcast.net","","3","","This is our notice, we are cancelling our reservation #66680.  I can be reached at 517-887-1775.  Leigh Kraushaar","","","2005-02-10"
+"Suzanne","Adelman ","46 South Street","Holliston","MA","01746","508-893-9818","sueadel@comcast.net","2","","We are planning a family vacation to the area.  There will be three groupls traveling together ... Need to discuss various situations for housing. Especially interested in golf & the kids programs.  Thanks Suzanne","","2005-08-16","2005-08-31","2005-03-02"
+"Roberta","Combs","4050 Rockrose Lane","Zephyrhills","FL","33541","","dumdom@earthlink.net","5","9","","Can't seem to get thru on your link for info.\r
+What is your best deal for dates listed above or for June 8 thru June 13 or June 12 and 13.","2005-06-08","2005-06-10","2005-03-18"
+"Jason","Gilles","1557 S. Finn Rd.","Munger","Michigan","48747","989-659-2674","jason@steelefuneraldirectors.com","5","4"," Recently engaged couple,looking for a few days of relaxing out of the office and out of the house.","Is it possible to check in wednesday, march 30th earlier then 5pm?","2005-03-30","2005-04-01","2005-03-22"
+"Nick","","","","","","","MajorZero01@yahoo.com","","9","","I am planing a trip with some friends and family paid for buy me with my credit card. I am 18 years old is that a problem? Local hotels in metro Detroit require that you are 21.","","","2008-10-11"
+"deborah","miller","5850 westward passage","harbor springs","mi","49740 ","231 526 2533","djcmiller@Aol.com","","","interested in rec'vng information re: 4th of july art fair - application deadline?\r
+thanks","","","","2005-04-09"
+"Patricia","Parker","920 Hawthorne Street","Tallahassee","FL","32308","","parker726@aol.com","0","4","","Please send me any sales information you may have. Thank you!","","","2005-03-25"
+"Bob","Obert","","Toledo","","","","obert11@yahoo.com","5","6","","I am interested in visiting on Fri April 1st to view possible condos for sale.  thanks  Bob","2005-04-01","2005-04-02","2005-03-26"
+"Jim","Roman","","","","","","roman5@wowway.com","","","","","2005-05-27","2005-05-27","2005-05-27"
+"Debbie","Mathewson","3979 Foster","Mt Pleasant","MI  ","48858","9897747509","mathe1dl@cmich.edu","1","8","I'm unable to attend the scrapbooking weekend scheduled in late April.  Do you have scrapbooking retreats on a regular basis, is so do you have any future ones scheduled.  Please let me know the dates or keep me on your mailing list for future crops.  Thanks.","","","","2005-04-13"
+"Kris","Cook","","","","","","krispy40@aol.com","","","","","2005-05-27","2005-05-27","2005-05-27"
+"Rennee","Rudloff","","","","","","rrudloff@comcast.net","","","","","2005-05-27","2005-05-27","2005-05-27"
+"","Lawlor","","","","","","vllawlor@sympatico.ca","","","","","2005-05-27","2005-05-27","2005-05-27"
+"Tom","Lloyd","","","","","","telloyd@comcast.net","","","","","2005-05-27","2005-05-27","2005-05-27"
+"Andrew","Boyce","","","","","","aboyce@dickinsonwright.com","","","","","2005-05-27","2005-05-27","2005-05-27"
+"Reginald","Gomez","","","","","","pianoman1679@hotmail.com","","","","","2005-05-27","2005-05-27","2005-05-27"
+"julie","Moore","","","","","","jmoore@shrr.com","","","","","2005-05-27","2005-05-27","2005-05-27"
+"Holly","Hoadley","","","","","","hollytraver@comcast.net","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Joseph","Kiefer","","","","","","jkiefer580@aol.com","","","","","2005-06-02","2005-06-02","2005-06-02"
+"Martin","Quinn","","","","","","mquinnrcs@wideopenwest.com","","","","","2005-06-02","2005-06-02","2005-06-02"
+"Finz 1","Ghandhi","","","","","","fghandhi@yahoo.com","","","","","2005-06-02","2005-06-02","2005-06-02"
+"Joann","Doyle","","","","","","jdoyle420@sbcglobal.net","","","","","2005-06-02","2005-06-02","2005-06-02"
+"Ken","Rowe","","","","","","klrowe@comcast.net","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Andy","Washington","","","","","","kingqbbq@aol.com","","","","","2005-06-02","2005-06-02","2005-06-02"
+"Jennifer","Charon","","","","","","charonjenn@yahoo.com","","","","","2005-06-02","2005-06-02","2005-06-02"
+"Kim","Stencel","","","","","","kstencel@aol.com","","","","","2005-06-02","2005-06-02","2005-06-02"
+"Butch","Reber","","","","","","theskismith@copper.net","","","","","2005-06-02","2005-06-02","2005-06-02"
+"Griffin","Brown","","","","","","gdotbrown@yahoo.com","","","","","2005-06-02","2005-06-02","2005-06-02"
+"Jim","Floer","","","","","","jimfloer@competitiontire.com","","","","","2005-06-02","2005-06-02","2005-06-02"
+"Michella","Roche","","","","","","michella_r@hotmail.com","","","","","2005-06-02","2005-06-02","2005-06-02"
+"Gordon","Erley","","","","","","gorderley@aol.com","","","","","2005-06-02","2005-06-02","2005-06-02"
+"Julie","Stone","","","","","","jahstone22@yahoo.com","","","","","2005-06-02","2005-06-02","2005-06-02"
+"Maureen","Murray","","","","","","M.Murray1@comcast.net","","","","","2005-06-02","2005-06-02","2005-06-02"
+"Joyce","Imhoff","","","","","","robertimhoff@sbcglobal.net","","","","","2009-03-12","2009-03-12","2009-03-12"
+"Cynthia","Petricca","","","","","","bratilla57@wowway.com","","","","","2005-06-02","2005-06-02","2005-06-02"
+"Caroline","Fix","","","","","","csfix@sbcglobal.net","","","","","2005-06-03","2005-06-03","2005-06-03"
+"Michael ","Breen","","","","","","mfbreen1@yahoo.com","","","","","2005-06-03","2005-06-03","2005-06-03"
+"Patrice","Gage","","","","","","patricegage@hotmail.com","","","","","2005-06-02","2005-06-02","2005-06-02"
+"Cheryl","Scott","","","","","","cajcscott@msn.com","","","","","2005-06-02","2005-06-02","2005-06-02"
+"Fred","Flavell","","","","","","huntin55@aol.com","","","","","2008-10-15","2008-10-15","2008-10-15"
+"Erica","Kovacs","","","","","","evkovacs@yahoo.com","","","","","2005-06-02","2005-06-02","2005-06-02"
+"Shareen","Brown","","","","","","davidbr@cooperelliott.com","","","","","2005-06-02","2005-06-02","2005-06-02"
+"Stahley","Rykulski","","","","","","rye1949@msn.com","","","","","2005-06-02","2005-06-02","2005-06-02"
+"Robert","Olson","","","","","","rolson@comcast.net","","","","","2005-06-02","2005-06-02","2005-06-02"
+"Norman","Kolvoda","","","","","","rsanorm@aol.com","","","","","2005-06-02","2005-06-02","2005-06-02"
+"Amanda","Bohl","","","","","","amandabohl@hotmail.com","","","","","2005-06-02","2005-06-02","2005-06-02"
+"Brian","Duneske","","","","","","bduneske@yahoo.com","","","","","2005-06-02","2005-06-02","2005-06-02"
+"Kathy & Rich ","Bartlett","","","","","","bartletts@twmi.rr.com","","","","","2005-06-03","2005-06-03","2005-06-03"
+"","Sadiq","","","","","","bmamajones@aol.com","","","","","2005-06-02","2005-06-02","2005-06-02"
+"","Sadiq","","","","","","rajusadiq@aol.com","","","","","2005-06-02","2005-06-02","2005-06-02"
+"Zishan","Siddiqui","","","","","","zas2@hotmail.com","","","","","2009-05-11","2009-05-11","2009-05-11"
+"Sue","Aprill","","","","","","saprill@comcast.net","","","","","2005-06-03","2005-06-03","2005-06-03"
+"Richard","Hughes","","","","","","phughes@voyager.net","","","","","2005-06-03","2005-06-03","2005-06-03"
+"","Nosis","","","","","","sherbot15@lycos.com","","","","","2005-06-03","2005-06-03","2005-06-03"
+"Bill","VanCleve","","","","","","bvc@foto1.com","","","","","2005-06-03","2005-06-03","2005-06-03"
+"Tom","Crowe","","","","","","tom@relativeways.com","","","","","2005-06-03","2005-06-03","2005-06-03"
+"Brian & Kathy","Murphy","","","","","","kmurph1125@aol.com","","","","","2005-06-03","2005-06-03","2005-06-03"
+"Todd","Holmes","","","","","","teholmes@comcast.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"","Cliff","","","","","","spliff13@msn.com","","","","","2005-06-03","2005-06-03","2005-06-03"
+"Lorna","Garibian","2129 Nickelby Drive","Shelby Township","MI","48316","586.677.8101","alglmg@comcast.net","5","9","","","2005-08-03","2005-08-05","2005-07-11"
+"D","Onesi","","","","","","donesi@aespeo.com","","","","","2009-05-22","2009-05-22","2009-05-22"
+"","Gutschenritter","","","","","","jsar@hit.net","","","","","2005-06-03","2005-06-03","2005-06-03"
+"Marc","Brewer","","","","","","marcjulieb@yahoo.com","","","","","2005-06-03","2005-06-03","2005-06-03"
+"Steve & Meryl","Way","","","","","","steveway48054@yahoo.com","","","","","2005-06-03","2005-06-03","2005-06-03"
+"James","Lundie","","","","","","jlundie23@aol.com","","","","","2005-06-03","2005-06-03","2005-06-03"
+"Paul","Dufault","","","","","","pdufault@twmi.rr.com","","","Test of internet connection.  Sent from unit 5 @ 1:20 pm 6/19/05","","","","2005-06-19"
+"duncan","thomas","","","","","","dthomas@pbenet.com","","4","","Gentlemen, my son Nicholas Thomas has reserved a 5-bedroom condo beginning this saturday the 2nd for his wedding party.  I need the number of the condo to put into a directions sheet for those who are driving up there. can you kindly provide this?  thanks, duncan thomas 904-338-7668","","","2005-06-27"
+"Karen","Czarkowski","","","","","","kaczarkowski@yahoo.com","","","","","2005-07-07","2005-07-07","2005-07-07"
+"Kim","Hyames","","","","","","dkhyames@chartermi.net","","","","","2005-07-07","2005-07-07","2005-07-07"
+"Nancy","Zamiara","","","","","","nzamiara@comcast.net","","","","","2005-07-07","2005-07-07","2005-07-07"
+"","","","","","","","edwardrago@comcast.net","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Doug & Julie","Bunker","","","","","","jbkbunker@hotmail.com","","","","","2005-07-07","2005-07-07","2005-07-07"
+"Scott","Helmic","","","","","","helmics2@aol.com","","","","","2005-07-07","2005-07-07","2005-07-07"
+"Louis","Hallacy","","","","","","louii@hallacy.org","","","","","2005-07-07","2005-07-07","2005-07-07"
+"Dr.Milton","Gordon","","","","","","shergordon@aol.com","","","","","2005-07-07","2005-07-07","2005-07-07"
+"Robert","Soave","","","","","","r1soave@msn.com","","","","","2005-08-02","2005-08-02","2005-08-02"
+"Sandra","Lovell","","","","","","lovells@mi.gov","","","","","2005-07-07","2005-07-07","2005-07-07"
+"Herb ","Kummer","","","","","","kummerh@bellsouth.net","","","","","2005-07-12","2005-07-12","2005-07-12"
+"Karen","Listwan","","","","","","karenlistwan@aol.com","","","","","2005-07-14","2005-07-14","2005-07-14"
+"","","","","","","","ltouma@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"Sarah","Vandemark","","","","","","twizzle900@aol.com","","","","","2005-07-15","2005-07-15","2005-07-15"
+"Sheril","Escudero","","","","","","vahl222@hotmail.com","","","","","2005-07-15","2005-07-15","2005-07-15"
+"John H.","Nash","","","","","","jhnman1@sbcglobal.net","","","","","2005-08-02","2005-08-02","2005-08-02"
+"MARJORIE ","HARTKOPF","6861 Fredericksburg Dr.","Sylvania","Ohio","43560","419/882-4638","mlkh@sev.org","","","Mackinaw Island","I have 2 reservations for Condo's Aug. 8.9,10 & 11th.  Do you have packages to Mackinaw Island.  If so...how much is it for adults and also children?\r
+Thank You!","","","2005-07-18"
+"","Hayward","","","","","","hjhayward@comcast.net","","","","","2005-07-19","2005-07-19","2005-07-19"
+"Craig","Nelson","","","","","","jmyersnelson@sbcglobal.net","","","","","2005-07-19","2005-07-19","2005-07-19"
+"Mike","Sovel","","","","","","sovelmj@umich.edu","","","","","2005-07-21","2005-07-21","2005-07-21"
+"Bill","Grimshaw","","","","","","sgrimsha@bordersgroupinc.com","","","","","2005-08-02","2005-08-02","2005-08-02"
+"Dan","Mullen","","","","","","dan@plittco.com","","","","","2009-02-09","2009-02-09","2009-02-09"
+"Susan","Crowell","","","","","","jcsasc@aol.com","","","","","2005-07-22","2005-07-22","2005-07-22"
+"Micheal","Mack","","","","","","mmack43@comcast.net","","","","","2005-08-02","2005-08-02","2005-08-02"
+"Vanessa","Queen","","","","","","vqueen@twmi.rr.com","","","","","2005-08-02","2005-08-02","2005-08-02"
+"Michael","Sanborn","","","","","","mjsanborn@dcmi.net","","","","","2009-02-03","2009-02-03","2009-02-03"
+"Dr. & Mrs. Jack","Wayne","","","","","","JACKWAYNE8608@SBCGLOBAL.NET","","","","","2005-08-02","2005-08-02","2005-08-02"
+"","","","","","","","egeland1@msn.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"","Orfanos","","","","","","torfanos@cyberz.net","","","","","2005-08-02","2005-08-02","2005-08-02"
+"Janet A.","Wyatt","","","","","","tomtwo2@bellsouth.net","","","","","2005-08-02","2005-08-02","2005-08-02"
+"Tim","Eckerle","","","","","","mteckerle@prodigy.net","","","","","2005-07-21","2005-07-21","2005-07-21"
+"TC","Anderson","","","","","","tcanderson3@comcast.net","","","","","2005-08-10","2005-08-10","2005-08-10"
+"Natalia","Odish","3530 Warwick Drive","Rochester Hills","MI","48309","248-396-1521","nataliaodish@yahoo.com","","9","Can you please tell me what you have available for Labor Day weekend for approximately 6 people or just for 2 people......sizes and prices please?  ","You may e-mail me...that's the quickest way to respond to me.  Thank You very much!","2005-09-03","2005-09-05","2005-08-09"
+"Warren","Abbs","","","","","","warren.abbs@nationalcity.com","","","","","2005-08-10","2005-08-10","2005-08-10"
+"Catherine","Abellera","","","","","","kukla13@hotmail.com","","","","","2005-08-10","2005-08-10","2005-08-10"
+"Deborah","Adams","","","","","","ldjjadams@comcast.net","","","","","2005-08-10","2005-08-10","2005-08-10"
+"Scott","Adams","","","","","","scott@geoproductsinc.com","","","","","2005-08-10","2005-08-10","2005-08-10"
+"David","Allen","","","","","","mountaingremlin@comcast.net","","","","","2005-08-10","2005-08-10","2005-08-10"
+"Jennifer","Allen","","","","","","jjallen253@aol.com","","","","","2005-08-10","2005-08-10","2005-08-10"
+"","","","","","","","joliez@gmail.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Matthew","Barwick","","","","","","mbarwick@ford.com","","","","","2005-08-10","2005-08-10","2005-08-10"
+"Judy","Alfieri","","","","","","judy1@wideopenwest.com","","","","","2005-08-10","2005-08-10","2005-08-10"
+"James","Codo","802 Childers Loop","Brandon","Fl","33511-6105","813-689-6817","jcodo@msn.com","5","6","","","","","2005-08-04"
+"Jody","Glotfelty","","","","","","philjody@comcast.net","","","","","2005-07-15","2005-07-15","2005-07-15"
+"Michael","Areddy","","","","","","mareddy@travispointe.com","","","","","2005-08-10","2005-08-10","2005-08-10"
+"Jessica","Argyle","","","","","","jargyle1378@comcast.net","","","","","2005-08-10","2005-08-10","2005-08-10"
+"Anne","Armour","","","","","","aarmour5@emirates.net.ae","","","","","2005-08-10","2005-08-10","2005-08-10"
+"Kathleen & Randy","Aron","","","","","","aron@chartermi.net","","","","","2005-08-10","2005-08-10","2005-08-10"
+"Kimberly","Ashmore","","","","","","krashmore@msn.com","","","","","2005-08-10","2005-08-10","2005-08-10"
+"Aasma","Aziz","","","","","","aasma_aziz@hotmail.com","","","","","2005-08-10","2005-08-10","2005-08-10"
+"Patricia","Back","","","","","","backpatti@hotmail.com","","","","","2005-08-10","2005-08-10","2005-08-10"
+"Angela","Bainbridge","","","","","","pprsul@msn.com","","","","","2005-08-10","2005-08-10","2005-08-10"
+"Andrea","Bennett","","","","","","andrealbennett@comcast.net","","","","","2005-08-10","2005-08-10","2005-08-10"
+"Hank ","Bosley","","","","","","boz5602@yahoo.com","","9","","","","","2005-08-11"
+"Frank & Lynn","Barazsu","","","","","","lyndbear@aol.com","","","","","2005-08-10","2005-08-10","2005-08-10"
+"Pat & Larry","Barazsu","","","","","","pat.barazsu@sbcglobal.net","","","","","2005-08-10","2005-08-10","2005-08-10"
+"Mary","Bear","","","","","","merk.bear@jbtool.com","","","","","2005-08-10","2005-08-10","2005-08-10"
+"Michael","Belczynski","","","","","","mbelc1959@yahoo.com","","","","","2005-08-10","2005-08-10","2005-08-10"
+"Patty","Belew","","","","","","catb45@aol.com","","","","","2005-08-10","2005-08-10","2005-08-10"
+"Sarah","Bender","","","","","","s06.sbender@wittenberg.edu","","","","","2005-08-10","2005-08-10","2005-08-10"
+"Steve","Adams","","","","","","steve@tritecseal.com","","","","","2005-08-10","2005-08-10","2005-08-10"
+"William","Bennett","","","","","","mcolleenbennett@hotmail.com","","","","","2005-08-10","2005-08-10","2005-08-10"
+"Jerry and Chris ","Maiorano","","","","","","jmaiorano@comcast.net","","","","","2005-08-28","2005-08-28","2005-08-28"
+"Wendy","Palm","","","","","","wenandwill@aol.com","","","","","2005-08-28","2005-08-28","2005-08-28"
+"William ","Moody","","","","","","wmlarmoody@aol.com","","","","","2005-08-28","2005-08-28","2005-08-28"
+"Dan","Cohen","","","","","","danielandcari@comcast.net","","","","","2009-02-09","2009-02-09","2009-02-09"
+"David","Jolly","","","","","","jollyba@aol.com","","","","","2005-08-28","2005-08-28","2005-08-28"
+"Ellen and Todd","Mislan","","","","","","miz16@sbcglobal.net","","","","","2005-08-28","2005-08-28","2005-08-28"
+"Lori","Popis","","","","","","lori.popis@gm.com","","","","","2005-08-28","2005-08-28","2005-08-28"
+"Amy","Contrera","","","","","","317lewis@comcast.net","","","","","2005-08-28","2005-08-28","2005-08-28"
+"Alice","Hallman","","","","","","ahallman@wright-filippis.com","","","","","2005-08-29","2005-08-29","2005-08-29"
+"Suzan","Washegesic","","","","","","ronsumel@btc-bci.com","","","","","2005-08-28","2005-08-28","2005-08-28"
+"Patrick","Coveny","","","","","","arch.cm@att.net","","","","","2005-08-28","2005-08-28","2005-08-28"
+"Kim","Mitchell","","","","","","kahm2359@cablespeed.com","","","","","2008-11-13","2008-11-13","2008-11-13"
+"Chris and Mike","Valuck","","","","","","cvaluck@comcast.net","","","","","2005-08-28","2005-08-28","2005-08-28"
+"Daniel","Bloesch","","","","","","dsbdandy39@hotmail.com","","","","","2005-08-28","2005-08-28","2005-08-28"
+"Kristen","Hosni","","","","","","kjseryak@hotmail.com","","","","","2005-08-28","2005-08-28","2005-08-28"
+"Courtney","McCreadie","","","","","","cemccreadie@yahoo.com","","","","","2005-08-28","2005-08-28","2005-08-28"
+"Wendy","Gosney","","","","","","gosneys@comcast.net","","","","","2005-08-28","2005-08-28","2005-08-28"
+"Mark","Logan","","","","","","shellogan@sbcglobal.net","","","","","2005-08-28","2005-08-28","2005-08-28"
+"Ken","Merritt","","","","","","kenneth.merritt@ceflawyers.com","","","","","2005-08-28","2005-08-28","2005-08-28"
+"John","Birchmeier","","","","","","johnbirchmeier@hotmail.com","","","","","2005-08-28","2005-08-28","2005-08-28"
+"Phil","Guastella","","","","","","philg1@comcast.net","","","","","2005-08-28","2005-08-28","2005-08-28"
+"Ronald","Kuyper","","","","","","kuypermr@alliancecom.net","","","","","2005-08-28","2005-08-28","2005-08-28"
+"Elizabeth","Gawin","","","","","","bgawin@cinci.rr.com","","","","","2005-08-28","2005-08-28","2005-08-28"
+"Karl","Brunsman","","","","","","4kjs@comcast.net","","","","","2005-08-29","2005-08-29","2005-08-29"
+"Anthony","Nestor","","","","","","a.nestor@worldnet.att.net","","","","","2005-08-29","2005-08-29","2005-08-29"
+"Linda","Bedell-Kucway","","","","","","m.bedell@sbcglobal.net","","","","","2009-03-12","2009-03-12","2009-03-12"
+"Al","Butler","","","","","","abutler@nucalgon.com","","","","","2005-08-29","2005-08-29","2005-08-29"
+"Allan","Ebert","","","","","","aebert@genesyspho.com","","","","","2005-08-29","2005-08-29","2005-08-29"
+"Adam","Hyers","","","","","","ahyers@hotmail.com","","","","","2005-08-29","2005-08-29","2005-08-29"
+"Alissa","Lusky","","","","","","alusky@sbcglobal.net","","","","","2005-08-29","2005-08-29","2005-08-29"
+"Janet","Schromke","","","","","","jschromke4@gmail.com ","","","","","2009-10-26","2009-10-26","2009-10-26"
+"Micheal","Goodman","","","","","","anav95@aol.com","","","","","2005-08-29","2005-08-29","2005-08-29"
+"Anne","Chilingirian","","","","","","annetrap@comcast.net","","","","","2005-08-29","2005-08-29","2005-08-29"
+"","Mackey","","","","","","themacadoos@aol.com","","","","","2009-05-22","2009-05-22","2009-05-22"
+"Anne","Vara","","","","","","avara921@comcast.net","","","","","2005-08-29","2005-08-29","2005-08-29"
+"Tim and Ann","Marasco","","","","","","atmmarasco@yahoo.com","","","","","2008-09-29","2008-09-29","2008-09-29"
+"Mike","Shoemaker","","","","","","bashoemaker@hotmail.com","","","","","2005-08-29","2005-08-29","2005-08-29"
+"Megen","Hood","","","","","","mhood@eup.k12.mi.us","","","","","2008-11-13","2008-11-13","2008-11-13"
+"Beth ","Booth","","","","","","bbooth@rochester.k12.mi.us","","","","","2005-08-29","2005-08-29","2005-08-29"
+"Jeffrey","Bouwens","","","","","","bbttkkj@aol.com","","","","","2005-08-29","2005-08-29","2005-08-29"
+"Mary","Hunter","","","","","","golfergranny@wowway.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Bennett","Ruby","","","","","","bennettr1@aol.com","","","","","2005-08-29","2005-08-29","2005-08-29"
+"Beverly","Orban","","","","","","beverly.orban@gm.com","","","","","2005-08-29","2005-08-29","2005-08-29"
+"Thomas","Guimond","","","","","","bfguimond@hotmail.com","","","","","2005-08-29","2005-08-29","2005-08-29"
+"Gale","Wiec","","","","","","bgwiec@yahoo.com","","","","","2005-08-29","2005-08-29","2005-08-29"
+"Terry","Collins","","","","","","bigbow1270@msn.com","","","","","2005-08-29","2005-08-29","2005-08-29"
+"William","Mallory","","","","","","billm82@aol.com","","","","","2005-08-29","2005-08-29","2005-08-29"
+"Terry ","Peterson","","","","","","bjharvey@tds.net","","","","","2005-08-29","2005-08-29","2005-08-29"
+"David","Blaauw","","","","","","blaauw@umich.edu","","","","","2005-08-29","2005-08-29","2005-08-29"
+"Robert","MacFarland","","","","","","bobnholly@wowway.com","","","","","2005-08-29","2005-08-29","2005-08-29"
+"Herb","Storbeck","","","","","","abstorbeck@comcast.net","","","","","2005-08-29","2005-08-29","2005-08-29"
+"Martin","Salazar","","","","","","msalgolf@sbcglobal.net","","","","","2009-10-16","2009-10-16","2009-10-16"
+"Brenda","Soverinsky","","","","","","brsov@yahoo.com","","","","","2005-08-29","2005-08-29","2005-08-29"
+"Bob","Toohey","","","","","","btoohey@hrblock.com","","","","","2005-08-29","2005-08-29","2005-08-29"
+"Susan","Burch","","","","","","burchsu@yahoo.com","","","","","2005-08-29","2005-08-29","2005-08-29"
+"Robert","Vorpagel","","","","","","bvorpagel@goagile.net","","","","","2005-08-29","2005-08-29","2005-08-29"
+"Mary","Schlaff","","","","","","mjschlaff@aim.com","","","","","2009-02-03","2009-02-03","2009-02-03"
+"Robert","Carden","","","","","","carden@aaps.k12.mi.us","","","","","2005-08-29","2005-08-29","2005-08-29"
+"Fidel","Carino","","","","","","carinohomes@aol.com","","","","","2005-08-29","2005-08-29","2005-08-29"
+"Carol","Peterson","","","","","","carolncliff@yahoo.com","","","","","2005-08-29","2005-08-29","2005-08-29"
+"Carolyn","Stesney","","","","","","carolynstesney@ameritech.net","","","","","2005-08-29","2005-08-29","2005-08-29"
+"Jim","Carson","","","","","","carsonshop@sbcglobal.net","","","","","2005-08-29","2005-08-29","2005-08-29"
+"Chrysia","Stoneback","","","","","","castoneback@hotmail.com","","","","","2005-08-29","2005-08-29","2005-08-29"
+"Gregory","Depuydt","","","","","","cdepuydt@pathwaynet.com","","","","","2005-08-29","2005-08-29","2005-08-29"
+"Sheri","Klein","","","","","","roy.klein@chase.com ","","","","","2009-10-30","2009-10-30","2009-10-30"
+"Corinne","Elwert","","","","","","celwert@qcasa.com","","","","","2005-08-29","2005-08-29","2005-08-29"
+"Cathy","Flanders","","","","","","cflander@ford.com","","","","","2005-08-29","2005-08-29","2005-08-29"
+"","","","","","","","elizabeth.stickel@catherines.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Teryl","Watch","","","","","","chemtee717@aol.com","","","","","2005-08-29","2005-08-29","2005-08-29"
+"Daniel","Laughlin","","","","","","danlaughlin@gmail.com","","","","","2009-02-09","2009-02-09","2009-02-09"
+"Anthony","Javorka","","","","","","tjavorka@ecommunity.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Cynthia","Tate","","","","","","ctatetot3@aol.com","","","","","2005-08-29","2005-08-29","2005-08-29"
+"Cindy","Tomczak","","","","","","cindytomczak@aol.com","","","","","2005-08-29","2005-08-29","2005-08-29"
+"Christopher","Kok","","","","","","ckok@dow.com","","","","","2005-08-29","2005-08-29","2005-08-29"
+"Gary and Donna","Merrifield","","","","","","dhmerrifield@comcast.net","","","","","2005-08-29","2005-08-29","2005-08-29"
+"Robert","Moore","","","","","","club21@comcast.net","","","","","2005-08-29","2005-08-29","2005-08-29"
+"Mary Jo","Wilcox","","","","","","cmu82@sbcglobal.net","","","","","2005-08-29","2005-08-29","2005-08-29"
+"","","","","","","","mambocat007@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"Craig","Carrel","","","","","","craigcarrel@yahoo.com","","","","","2005-08-29","2005-08-29","2005-08-29"
+"Carl","Shubitowski","","","","","","crshuby@yahoo.com","","","","","2005-08-29","2005-08-29","2005-08-29"
+"Chris and Susan","Peters","","","","","","cspeters@ameritech.net","","","","","2005-08-29","2005-08-29","2005-08-29"
+"Joy","Cunningham","","","","","","cunning3@oakland.edu","","","","","2005-08-29","2005-08-29","2005-08-29"
+"John ","Byrd","","","","","","jbyrd@energyprod.com ","","","","","2009-10-16","2009-10-16","2009-10-16"
+"Anne and Don","Crites","","","","","","dacrites@wowway.com","","","","","2005-08-29","2005-08-29","2005-08-29"
+"Vanessa","Dale","","","","","","dalevcharge@comcast.net","","","","","2005-08-29","2005-08-29","2005-08-29"
+"Beth","Dawidiuk","","","","","","bethdawid@sbcglobal.net ","","","","","2009-10-20","2009-10-20","2009-10-20"
+"","","","","","","","jones.six@netzero.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Dan","Schreiber","","","","","","danielschreiber@lapeerind.com","","","","","2005-08-29","2005-08-29","2005-08-29"
+"Denise","Seyburn","","","","","","darnsmith@comcast.net","","","","","2005-08-29","2005-08-29","2005-08-29"
+"","","","","","","","lisa.sarkisian@mdiworldwide.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"","","","","","","","raineyd@meijer.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Julie","Deppen","","","","","","deppen@oakland.edu","","","","","2005-08-29","2005-08-29","2005-08-29"
+"","","","","","","","shari@beekalt.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"David","Johnson","","","","","","djohnson@isomedia.com","","","","","2005-08-29","2005-08-29","2005-08-29"
+"Donald","Kronig","","","","","","dkronig1@yahoo.com","","","","","2005-08-29","2005-08-29","2005-08-29"
+"","","","","","","","thomas.hilborn@gmail.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"David","Tarantino","","","","","","dltarantino@mmm.com","","","","","2005-08-29","2005-08-29","2005-08-29"
+"Michael","Mueller","","","","","","dmueller007@netzero.net","","","","","2005-08-30","2005-08-30","2005-08-30"
+"","","","","","","","wolschendorf@fev-et.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Donald","Manvel","","","","","","donmanvel@aol.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Jeff","Thompson","","","","","","jeffth9ompson51@yahoo.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Cheryl","Abbott","","","","","","golfubet2@sbcglobal.net","","","","","2009-07-17","2009-07-17","2009-07-17"
+"PJ ","Dolton ","","","","","","teddybear1209@hotmail.com ","","","","","2009-10-20","2009-10-20","2009-10-20"
+"Douglas","Reaume","","","","","","dreaume44@wowway.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Jennifer","Dreyer","","","","","","dreyerjen@comcast.net","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Donna","Driest","","","","","","driest5@comcast.net","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Lisa ","Dubois","","","","","","duboisrchd@aol.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Michael","Killian"," ","","","","","mkillian@comcast.net","","","","","2009-02-03","2009-02-03","2009-02-03"
+"Dave","Stoddard","","","","","","dxstodda@oaklandcc.edu","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Eann and Russ","Holland","","","","","","eanncholland@aol.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Elise","Brady","","","","","","ecbrady@comcast.net","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Edwin","Doyle","","","","","","ed.doyle@hp.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Ed and Jana","Joseph","","","","","","ejoseph@cbre.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Erin","Savinov","","","","","","eringp@hotmail.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"David","Ausman","","","","","","davidausman@billbrownford.com","","","","","2009-02-09","2009-02-09","2009-02-09"
+"Cathy","Szczepaniak","","","","","","eszcz@hotmail.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Kevin","Kozal","","","","","","evkozal@yahoo.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Pauline","Lajoie","","","","","","BL654@yahoo.com","","","","","2009-05-25","2009-05-25","2009-05-25"
+"Kathy","Fidziukiewicz","","","","","","fidz@charter.net","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Anthony","Ursitti","","","","","","anthonyursitti@hotmail.com","","","","","2008-04-29","2008-04-29","2008-04-29"
+"Susan","Frakes","","","","","","frakes@ameritech.net","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Fred","Ransford","","","","","","fred.ransford@sbcglobal.net","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Julie","Ament","","","","","","frnkamnt@aol.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Gail","Jenereaux","","","","","","gailjenerx@comcast.net","","","","","2005-08-30","2005-08-30","2005-08-30"
+"David","Garcia","","","","","","garciashize@aol.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Lee Ann","Smith","","","","","","geoffandleeann@yahoo.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Guy","Harper","","","","","","gharper256@aol.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Dr. Gary","Holbein","","","","","","gholbein2002@yahoo.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Greg","Humitz","","","","","","ghumitz@charter.net","","","","","2005-08-30","2005-08-30","2005-08-30"
+"","","","","","","","granthammer@hotmail.com","","","","","","","2011-05-13"
+"Steve","Nagel","4749 Pleasantview RD","Harbor Springs","Mich","49740","727 403 5803  5268758","stevennagel323@hotmail.com","","","Hi Guys,\r
+\r
+Teeri an I will be leaving next week if all goes well with her  back.  I ahve sent some packages forom Fl and most should have arrived.  I willpick them up at the office as soon as we get in town.","","","","2009-05-17"
+"Greg","Ochoa","","","","","","gochoa6100@aol.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Pauline","Stephens","","","","","","golfqueen1943@aol.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Roberto","Gonzalez","","","","","","gonbirdie@aol.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Barbara","Grabbe","","","","","","grabbes@ameritech.net","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Gregg","Young","","","","","","greggyoung05@comcast.net","","","","","2005-08-30","2005-08-30","2005-08-30"
+"","","","","","","","fjnoble48@sbcglobal.net","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Brenda","Freeman","","","","","","gsmfreeman@hotmail.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Frederick","Kahn","","","","","","guifred@aol.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Gustavo","Vallazza","","","","","","gvallazza@chartermi.net","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Susan","Harper","","","","","","gwhmsh@aol.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Jeffrey","Sweet","","","","","","jswy@umich.edu","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Heidi","Winter","","","","","","hcwinter@comcast.net","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Christine","Harris","","","","","","herouvis@aol.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Yvonne","Snyder","","","","","","yesnyder@yahoo.com ","","","","","2009-10-26","2009-10-26","2009-10-26"
+"Hal","Lentz","","","","","","hgang6@sbcglobal.net","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Paula","Leaym","","","","","","horizonext@chartermi.net","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Will","Johnson","","","","","","willj6@comcast.net","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Jocelyn","Muirhead","","","","","","info@jocelynm.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Jim and Sandy","White","","","","","","j.b.white@comcast.net","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Jackie","Herring","","","","","","j.herring@dowcorning.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Pam ","Asche","","","","","","deckedou04@yahoo.com ","","","","","2009-10-30","2009-10-30","2009-10-30"
+"James","Ulinski","","","","","","jau@wowway.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Janice","Whipple","","","","","","jawhip1@hotmail.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"David","Teal","","","","","","jdavidteal@msn.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"James","DeCarlo","","","","","","jdecarlo@peoplepc.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"John","Tonkovich","","","","","","jdtonkovich@yahoo.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Jeff","Bancroft","","","","","","jeffbancroft@scherer-trier-usa.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"","","","","","","","elwangler@gmail.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Gerard","Mlot","","","","","","jerence02@yahoo.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Jefferu","Feurt","","","","","","jfeurt@total-benefit-systems.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Joe","Grace","","","","","","jfgrace3@aol.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Jeff","Floyd","","","","","","jfloyd@wmfloydheating.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"James","Russ","","","","","","jfrlawdg@aol.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Jennifer","Hermes","","","","","","jhermes@ncusd203.org","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Mary Lou","Hume","","","","","","jhume@watchtv.net","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Janice","Denning","","","","","","jdenning@ford.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"James","Marks","","","","","","jim.marks@comcast.net","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Jeff","Rybak","","","","","","jeff.rybak@grc.nasa.gov","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Raymond","Walker","","","","","","jim@kdmullen.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Jason","Carter","","","","","","jjcarter@mindspring.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"John","Jeakle","","","","","","jjeakle@webtv.net","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Theresa","Scimemi","","","","","","jjt777_99@yahoo.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Jim","Kiesby","","","","","","jkiesby@mgh.org","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Lori","Bogart","","","","","","jlbogart@comcast.net","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Loretta","Harris","","","","","","jlcharris@comcast.net","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Susan","Ozimek ","","","","","","bozimek@twmi.rr.com","","","","","2009-03-18","2009-03-18","2009-03-18"
+"Joseph","Lubner","","","","","","jlubner@lubnerdesign.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"John","Malone","","","","","","jmalone@dmc.org","","","","","2005-08-30","2005-08-30","2005-08-30"
+"John","McCabe","","","","","","jmccabe@jpment.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Jill","Durham","","","","","","jmdliv@earthlink.net","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Cheryl","Fortner","","","","","","jodyp@williamsgunsight.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Patricia","Turk","","","","","","john.turk@mac.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"John","Welch","","","","","","john.welch@bronsonplating.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"John","Brink","","","","","","john@bkccpa.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"John","Copp","","","","","","johncopp@comcast.net","","","","","2005-08-30","2005-08-30","2005-08-30"
+"John","Shell","","","","","","johnshell@jimcausley.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"John","Sklarski","","","","","","johnsk60@hotmail.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"David","Jolly","","","","","","jollydavid@aol.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Joe","White","","","","","","joseph.white@wsj.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"","","","","","","","jonesy1969@msn.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Mary","Trejo","","","","","","jrtmcvt1@msn.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"John","Salgado","","","","","","jsalga01@comcast.net","","","","","2005-08-30","2005-08-30","2005-08-30"
+"","","","","","","","lkelly@tacworldwide.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Jeff","Nesmith","","","","","","jsnesmith@comcast.net","","","","","2005-08-30","2005-08-30","2005-08-30"
+"","","","","","","","RandyLPepper@eaton.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Jeff","Yule","","","","","","jspyule@hotmail.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Jana","Sawyer","","","","","","jtbl8120@comcast.net","","","","","2005-08-30","2005-08-30","2005-08-30"
+"John","Thompson","","","","","","jthompson@bdo.ca","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Joseph","Wolfe","","","","","","judithawolfe@aol.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"","","","","","","","sharonjaeckle@comcast.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"","","","","","","","thomas.renno@gm.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Elizabeth","Jackson","","","","","","juddjackson@comcast.net","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Edith","Norman","","","","","","judiep75@yahoo.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Julie","Pullin","","","","","","julespullin@aol.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Julie","Janusz","","","","","","juliejanusz@yahoo.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Julie","Landry","","","","","","julieland@twmi.rr.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"John","Waldvogel","","","","","","jwaldvogel@sbcglobal.net","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Janet","Walker","","","","","","jwalker5@twmi.rr.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Jane","Walsh","","","","","","jwalsh@rochester.k12.mi.us","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Jill","Whitehouse","","","","","","jwhiteho@med.wayne.edu","","","","","2005-08-30","2005-08-30","2005-08-30"
+"","","","","","","","Wood.vicki@det.sysco.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Margaret","Fraser","","","","","","mmfraser@brktel.on.ca","","","","","2009-02-03","2009-02-03","2009-02-03"
+"James","Wyniemko","","","","","","jwyniemko@ejourney.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Harry","Reinhardt","","","","","","karen_reinhardt@hotmail.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Karen","Gustafson","","","","","","karengustafson@charter.net","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Karen","Buchacz","","","","","","karenkbu@sbcglobal.net","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Ken","First","","","","","","kefirst@dow.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Karen","Ryan","","","","","","keryan@chartermi.net","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Christine","Grabowski","","","","","","kgrabowski@wowway.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Marc","Milkie","","","","","","mmilkie@steelcase.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Kimberly","Weaver","","","","","","kim.weaver@tenneco-automotive.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Kelly","McCarthy","","","","","","kjmkmc@earthlink.net","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Ruth","Kooima","","","","","","kkooima@hickorytech.net","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Anne","Hallberg","3906 Mark Dr.","Troy","ME","48083","248-229-6285","khallberg5@gmail.com","","","","","","","2013-08-02"
+"Kevin","DeLine","","","","","","kmdeline@dow.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Kevin","Royer","","","","","","kroyer@wowway.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Karen","Shaw","","","","","","kshawmi@comcast.net","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Michael","Sheldon","","","","","","ksmshe@aol.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Linda","Labadie","","","","","","mikelisalin@aol.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Kurt","Tesnow","","","","","","kurt.tesnow@gm.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Lisa","Boulter","","","","","","dbolts@twmi.rr.com","","","","","2009-02-09","2009-02-09","2009-02-09"
+"Kelly","Wilkie","","","","","","kwilkie2000@yahoo.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Helaine","Freed","","","","","","laini63@aol.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Larry","Raden","","","","","","larry@dnpe.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Lori","Shinney","","","","","","lashinney@yahoo.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Laura","Suwinski","","","","","","laurasuwinski@yahoo.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"","","","","","","","emilyschwartzdds@gmail.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Linda","Casterline","","","","","","lcaste9020a@charter.net","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Lisa","Clarke","","","","","","lclarke32@cogeco.ca","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Michelle","Leach","","","","","","leach62@charter.net","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Lee","Astrauckas","","","","","","lwastrauckas@aol.com","","","","","2009-05-21","2009-05-21","2009-05-21"
+"Vincent","Capron","","","","","","lenasmom@sbcglobal.net","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Les","McDonald","","","","","","lesndebi@buckeye-express.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Michael","Lewis","","","","","","lewism@royaloakschools.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Lysanne","Harma","","","","","","lharma@jasnetworks.net","","","","","2005-08-30","2005-08-30","2005-08-30"
+"John","Vangalen ","","","","","","jonvangalen@sbcglobal.net","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Lisa","Kuch","","","","","","lisakuch@ctravelc.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Steve","Salmon","","","","","","littlefishinmi@aol.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Elizabeth","Somerville","","","","","","liz@lizsomerville.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Laura","Odonnell","","","","","","ljodonnell@wideopenwest.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Tammy","Lagalo ","","","","","","tmlagalo@dow.com ","","","","","2009-10-26","2009-10-26","2009-10-26"
+"Lonnie","Loy","","","","","","llloy@loyhartley.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Kip and Laura","Meroz","","","","","","lmeroz@aol.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Lynn","Griggs","","","","","","lmpgriggs@aol.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Mark","Slayman","","","","","","lms1102956@sbcglobal.net","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Lori","McQueen","","","","","","lori.mcqueen@jus.gov.on.ca","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Scott","Anderson","","","","","","sanderson157@insightbb.com","","","","","2005-09-02","2005-09-02","2005-09-02"
+"John","Peterson","","","","","","jpeter2724@aol.com","","","","","2005-09-02","2005-09-02","2005-09-02"
+"Heidi","Klein-Line","","","","","","toetheline@msn.com","","","","","2005-09-02","2005-09-02","2005-09-02"
+"Marek","Lukacik","","","","","","m_lukacik@hotmail.com","","","","","2005-09-06","2005-09-06","2005-09-06"
+"Mark","Maraldo","","","","","","mamaraldo@sbcglobal.net","","","","","2005-09-06","2005-09-06","2005-09-06"
+"Christine","Malzahn","","","","","","malzahns@comcast.net","","","","","2005-09-06","2005-09-06","2005-09-06"
+"Kathy","Frieh","","","","","","mamakatmg@yahoo.com","","","","","2005-09-06","2005-09-06","2005-09-06"
+"Julia","Walter","","","","","","mandjwalter@provide.net","","","","","2005-09-06","2005-09-06","2005-09-06"
+"Margaret","Callaghan","","","","","","margaretcallaghan766@msn.com","","","","","2005-09-06","2005-09-06","2005-09-06"
+"Marilyn","Hall","","","","","","marilyn.hall@co.bell.tx.us","","","","","2005-09-06","2005-09-06","2005-09-06"
+"Mark","Levine","","","","","","mark.levine@ipaper.com","","","","","2005-09-06","2005-09-06","2005-09-06"
+"Tony","Christie","","","","","","tjschristie@peoplepc.com","","4","","Hello, I was in unit "147 the weekend of August 19th with my family, father Ken and step mother Carla. I may have left a large magazine size paperback book there in the large bedroom (by the magazine shelf) or in the living room. The book is called : Canoeing Michigan Rivers", its green. I have a log of the many trips I have taken in the back blank pages. Would you PLEASE check if my book is there and contact me by email or phone as soon as possible? 616-877-0283 Home, 616-394-1901 Work.","","","2005-09-05"
+"James","Marley","","","","","","marleyj@sbcglobal.net","","","","","2005-09-06","2005-09-06","2005-09-06"
+"Mary","Thornton","","","","","","mary.thornton@gm.com","","","","","2005-09-06","2005-09-06","2005-09-06"
+"Mary Beth","Bullen","","","","","","mary_beth_bullen@ajg.com","","","","","2005-09-06","2005-09-06","2005-09-06"
+"Steve","Mattler","","","","","","matts2243@aol.com","","","","","2005-09-06","2005-09-06","2005-09-06"
+"Veronica","Long","","","","","","maya329@comcast.net","","","","","2005-09-06","2005-09-06","2005-09-06"
+"Mark","Gigax","","","","","","mmgigax@charter.net","","","","","2009-02-03","2009-02-03","2009-02-03"
+"Margaret","Dalian","","","","","","mdalian@sbcglobal.net","","","","","2005-09-06","2005-09-06","2005-09-06"
+"Todd","Davis","","","","","","davisdewitt1@comcast.net","","","","","2009-02-09","2009-02-09","2009-02-09"
+"Robin","Crosby","","","","","","crosbyr05@hotmail.com","","","","","2005-09-13","2005-09-13","2005-09-13"
+"Meryl","Way","","","","","","MerylWay48054@yahoo.com","","","","","2005-09-13","2005-09-13","2005-09-13"
+"","","","","","","","aaronthill@yahoo.com","","","","","2009-06-03","2009-06-03","2009-06-03"
+"Sandy","Gray","","","","","","mgray5@woh.rr.com","","","","","2005-09-13","2005-09-13","2005-09-13"
+"Mary","Handley","","","","","","mhandley@wideopenwest.com","","","","","2005-09-13","2005-09-13","2005-09-13"
+"Barb","Pulte","","","","","","mike_barbie@hotmail.com","","","","","2005-09-13","2005-09-13","2005-09-13"
+"Melissa","Crowley","","","","","","missytimpaige@yahoo.com","","","","","2005-09-16","2005-09-16","2005-09-16"
+"Craig","Reed","","","","","","mjsail@comcast.net","","","","","2005-09-16","2005-09-16","2005-09-16"
+"Tom ","Schuneman ","","","","","","tschue@sbcglobal.net","","","","","2009-03-18","2009-03-18","2009-03-18"
+"Becky","McCaughey","","","","","","mmccaughey@woh.rr.com","","","","","2005-09-16","2005-09-16","2005-09-16"
+"Michelle","Merritt","","","","","","mmerritt57@comcast.net","","","","","2005-09-16","2005-09-16","2005-09-16"
+"Marla","Rondo","","","","","","mmrondo@hotmail.com","","","","","2005-09-16","2005-09-16","2005-09-16"
+"Michael","Nedley","","","","","","mnedley01@comcast.net","","","","","2005-09-16","2005-09-16","2005-09-16"
+"Debra","LaFontaine","","","","","","lafontaine5@wowway.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"","","","","","","","jratliffmoss@gmail.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"David","Langendorfer","","","","","","langendorferdavid@msn.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Tami","Leffingwell","","","","","","tami.leffingwell@raymondjames.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Rachelle Holloway","Rachelle Holloway","224  Lawrence Road","New York","New York","11111","000-000-0000","rachelle2311@gmail.com","6","0","Internet Marketing Services\r
+\r
+\r
+We would like to get your website on first page of Google.\r
+\r
+All of our processes use the most ethical "white hat" Search Engine Optimization techniques that \r
+will not get your website banned or penalized.\r
+\r
+Please reply and I would be happy to send you a proposal.\r
+","Internet Marketing Services\r
+\r
+\r
+We would like to get your website on first page of Google.\r
+\r
+All of our processes use the most ethical "white hat" Search Engine Optimization techniques that \r
+will not get your website banned or penalized.\r
+\r
+Please reply and I would be happy to send you a proposal.\r
+","","","2009-05-21"
+"Jason","Honeycutt","","","","","","motorcitycolors@comcast.net","","","","","2005-09-16","2005-09-16","2005-09-16"
+"Michael","Galasso","","","","","","mrgs10@yahoo.com","","","","","2005-09-16","2005-09-16","2005-09-16"
+"Matthew","Starr","","","","","","msgolions@yahoo.com","","","","","2005-09-16","2005-09-16","2005-09-16"
+"Connie","Braun","","","","","","cbraunmd@msn.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Michelle","Tripp","","","","","","mtripp@ameritech.net","","","","","2005-09-16","2005-09-16","2005-09-16"
+"Bobby","Schroeder","","","","","","bobbyschroeder@yahoo.com","","","","","2008-11-13","2008-11-13","2008-11-13"
+"Michelle","Weidenbenner","","","","","","mweidenbenner@comcast.net","","","","","2005-09-16","2005-09-16","2005-09-16"
+"James","Wheaton","","","","","","mwwheato@hotmail.com","","","","","2005-09-16","2005-09-16","2005-09-16"
+"Kathleen","Dawson","","","","","","nanakafy@adelphia.net","","","","","2005-09-16","2005-09-16","2005-09-16"
+"Pamela","Grigsby","17650 Lakevie Circle","Northville","Michigan","48168","248-348-3944","PGrigsby3338@yahoo.com","","","Just updating our address since our recent move.\r
+Look forward to visiting your resort this winter.\r
+The Grigsby's\r
+","","","","2005-10-01"
+"Carol","Neuman","","","","","","carol.neumann@delphi.com","","","","","2005-08-29","2005-08-29","2005-08-29"
+"Paul","Shaffstall","","","","","","pshaffst@aol.com","","","","","2009-05-22","2009-05-22","2009-05-22"
+"Gail","Altekruse","","","","","","gail.altekruse@parkview.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Graham","Andrews","","","","","","gandpat@aol.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"","","","","","","","jpgklein@aol.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Sylvia","Bashi","","","","","","sb91581@aol.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Bruce","Billes","","","","","","phbilles@comcast.net","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Steve","Black","","","","","","sblack01@comcast.net","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Bill","Blaine","","","","","","gramps925@yahoo.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Ron","Boisclair","","","","","","ron_boisclair@hotmail.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Lynell","Bussiere","","","","","","lynellb@traversemotors.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Nicholas","Bomber","","","","","","wmfb19@aol.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Joshua","Bova","","","","","","jjbova@hotmail.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Dorothy","Bridges","","","","","","rodesh@aol.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Ben","Brinks","","","","","","ben@distinctivehomesltd.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Loretta","Bruce","","","","","","lrbruce1001@sbcglobal.net","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Roma","Bugenhagen","","","","","","romabug@hotmail.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Steve","Carey","","","","","","nmugrad88@comcast.net","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Shawn","Carver","","","","","","pahalpin@charter.net","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Margaret","Chouinard","","","","","","plchouinard@aol.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Randy","Chudler","","","","","","rmchuds@aol.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Ugo","Cicchello","","","","","","ucicchello@shaw.ca","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Norm","Colamecco","","","","","","ncolameco@sympatico.ca","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Yvonne","Connelly","","","","","","yconnelly@comcast.net","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Carol","Connolly","","","","","","tomcon1@accesstoledo.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Susan","Conway","","","","","","sconway@suburbancollection.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Robert","Coppolino","","","","","","rjcoppol@zoominternet.net","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Cheryl","Costeiu","","","","","","ccosteiu@misd.net","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Mona","Beydoun","","","","","","mona_beydoun@hotmail.com","","","","","2009-02-03","2009-02-03","2009-02-03"
+"Kate","Dally","","","","","","info@wildswanspa.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Tolan","Danko","","","","","","ttdanko@hotmail.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Patty","Darin","","","","","","pdarin@comcast.net","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Steven ","Daudlin","","","","","","sdaudlin@wolverineoil.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Patricia","DeLang","","","","","","tdelang@wideopenwest.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Cathy","DeLave","","","","","","cdelave@wideopenwest.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Stephane","DiTullio","","","","","","sditullio@nyc.rr.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Susan","Duncan","","","","","","sue.duncan@charter.net","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Suzanne and Glen","Dykas","","","","","","s_dykas@yahoo.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Brian","Dykema","","","","","","travelwb1@aol.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Scott","Fairty","","","","","","scottfairty@yahoo.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"John","Ferres","","","","","","ferres@msu.edu","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Tom","Foster","","","","","","tomfoster@comcast.net","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Renny","Franceschi","","","","","","rennyf@umich.edu","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Jill ","Fuller","","","","","","rob.fuller@shaw.ca","","","","","2005-10-26","2005-10-26","2005-10-26"
+"","","","","","","","ab.golder@shaw.ca","","","","","2009-06-03","2009-06-03","2009-06-03"
+"Melissa","Dawes","","","","","","dawes_m@stjohns.edzone.net","","","","","2009-02-09","2009-02-09","2009-02-09"
+"Jo Ellen","Gauche","","","","","","thegauches@comcast.net","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Terry","Geisler","","","","","","t_geisler@msn.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Henry ","Werksma ","","","","","","lnw@iserv.net","","","","","2009-03-18","2009-03-18","2009-03-18"
+"Wendy ","Stewart","","","","","","jwstew61@charter.net ","","","","","2009-10-26","2009-10-26","2009-10-26"
+"Ron","Hayes","","","","","","ron.hayes@jus.gov.on.ca","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Cynthia","Janis","","","","","","spartans11@prodigy.net","","","","","2005-10-26","2005-10-26","2005-10-26"
+"","","","","","","","eric@theprescriptionstore.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Robin","Inscho","","","","","","rinscho@comcast.net","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Bernadette","Issa","","","","","","nadettemj@bigfoot.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Daniel","Izenson","","","","","","pizenson@cinci.rr.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"John","Jaynes","","","","","","gjaynes@comcast.net","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Scott","Jenkins","","","","","","scottheidij@sbcglobal.net","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Nora","Kadolph","","","","","","ngkadolph@aol.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Lori","Kahila","","","","","","kahilatribe@juno.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Christine","Krause","","","","","","surferdak49@netscape.net","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Linda","Leibold","","","","","","rll2204@aol.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Karen","Lentine","","","","","","normkar@wideopenwest.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Steve","Leversee","","","","","","skileversee@hotmail.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Theresa","Linenger","","","","","","tlinenger@highlandparkbaptist.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Moon","Joh","","","","","","moonhjoh@yahoo.com","","","","","2009-02-03","2009-02-03","2009-02-03"
+"Teri","List","","","","","","tlist@hotmail.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Stephen","MacDonald","","","","","","steve.macdonald@archom.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Ronald","Macinnis","","","","","","r.a.macinnis@shaw.ca","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Sonal","Makim","","","","","","smakim@comcast.net","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Lori","Malm","","","","","","lorirx@comcast.net","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Sarah","Maniaci","","","","","","skmaniaci@yahoo.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Michelle","Marcelletti","","","","","","nmarcellet@aol.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Tim","Mariner","","","","","","tpmariner@hotmail.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"","","","","","","","info@goskimichigan.com","","","","","2010-01-21","2010-01-21","2010-01-21"
+"Lisa","Mazur","","","","","","lrmazur@yahoo.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Michael","McCarney","","","","","","mamoo705@aol.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Terry","McCloskey","","","","","","rebeccalanders@yahoo.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Shirley","McIllmurray","","","","","","riley@byron.k12.mi.us","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Timothy","McKenna","","","","","","tim@timothyjmckenna.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Larry","McPhedrain","","","","","","rusty@marymaxim.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Patricia","Minadeo","","","","","","trish.minadeo@motion-ind.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Judy","Minello","","","","","","r.andj.minello@sympatico.ca","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Ron","Mistor","","","","","","rmistor@wideopenwest.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Hillary","Moga","","","","","","yosadhara@aol.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Mike","Monette","","","","","","mmonette9@comcast.net","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Nancy","Mulder","","","","","","nancymulder@hotmail.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Loriann","Rickard","","","","","","larickard@aol.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Susan","Neyens","","","","","","sue.neyens@comcast.net","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Todd","Norling","","","","","","tnexpress3@aol.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Thomas","Orlowsky","","","","","","torlowsky@detroitchassis.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Ray","Orozco","","","","","","morozco@comcast.net","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Blair","Osborn","","","","","","osockey2@comcast.net","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Yoon-Bae","Park","","","","","","yoonbaep@hotmail.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Pamela","Pelfrey","","","","","","pkpelfrey@comcast.net","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Catherine","Pelland","","","","","","tina@healthdecisions.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Suzanne","Pighin","","","","","","suzpighin@aol.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Janet","Oconnor","","","","","","janeteoconnor@yahoo.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Jamie","Preussell","","","","","","prdtrbk@sbcglobal.net","","","","","2005-10-26","2005-10-26","2005-10-26"
+"William","Putnam","","","","","","tylerp@comcast.net","","","","","2005-10-26","2005-10-26","2005-10-26"
+"","","","","","","","erich.kuhlman@zehnders.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Tom","Quoss","","","","","","tarlac4@aol.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Joseph","Ramos","","","","","","ramosdental@sbcglobal.net","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Richard","Ratka","","","","","","richr@det.citation.net","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Earl","Reese","","","","","","sunnn13@yahoo.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Janelle","Ringger","","","","","","vringger@yahoo.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Wilfredeo","Rivera","","","","","","zenico1@yahoo.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Kirk","Roell","","","","","","lynnroell@yahoo.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Rhonda","Roelofs","","","","","","rroelofs777@yahoo.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Reed","Rollins","","","","","","lrollins@chartermi.net","","","","","2005-10-26","2005-10-26","2005-10-26"
+"","","","","","","","jrj710@yahoo.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Jack","Segal","","","","","","jsegal_kpuschel@yahoo.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Dennis","Baker ","","","","","","denbake@iserv.net","","","","","2009-03-18","2009-03-18","2009-03-18"
+"Sherri","Seniff","","","","","","shersen@mchsi.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Robin","Servo","","","","","","rservojr260445mi@comcast.net","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Richard","Ansell ","","","","","","ransell1@visteon.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"David","Breuch","","","","","","dbreuch@clarkhill.com","","","","","2009-02-09","2009-02-09","2009-02-09"
+"Barbara","Shutler","","","","","","bshutler@sbcglobal.net","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Lisa","Sieradski","","","","","","sierads1@msu.edu","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Rob ","Wallace","37096","Avon","Ohio","44011","440-934-2321","wallacesue80@hotmail.com","5","8","web search researching condo with rental program","","","","2005-10-29"
+"Stephen","Wilson","","","","","","swilson112@cogeco.ca","","","","","2009-05-22","2009-05-22","2009-05-22"
+"Dianne","Spieker","","","","","","dspieker3@comcast.net","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Trevor","Steer","","","","","","tsteer@sbcglobal.net","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Laurie","Gatza","","","","","","lagatza@charter.net ","","","","","2009-10-26","2009-10-26","2009-10-26"
+"Ned","Suddendorf","","","","","","sandysmail@comcast.net","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Patrick","Sughroue","","","","","","prspc@aol.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Minna","Sung","","","","","","minnasung@gmail.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"","","","","","","","erickson.m@sbcglobal.net","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Gloria","Swift","","","","","","pgswifty@yahoo.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Kevin","Syrek","","","","","","kevinbapi@aol.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Sherry","Taubitz","","","","","","sherry_taubitz@yahoo.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Patricia","Town","","","","","","mishenks@comcast.net","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Ryan","Tracht","","","","","","ryantracht@hotmail.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Rene","Strzelecki","","","","","","rstrzelecki@att.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Rosalind","Tvedten","","","","","","roz@safesolutionsinc.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Vickie","VanHorn","","","","","","skibumsfour@aol.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Brooke","Vanderwater","","","","","","vanderbr@wwwinc.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Robert","Vanderwiele","","","","","","rvdw@comcast.net","","","","","2005-10-26","2005-10-26","2005-10-26"
+"","","","","","","","jroartymd@aol.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Darcy","Vergis","","","","","","runninfine1@juno.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Umesh","Verma","","","","","","uverma@yahoo.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"","","","","","","","lkrapp@hrc.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Loyce","Wascher","","","","","","pwasc2000@aol.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Catherine","Waynick","","","","","","raw918@comcast.net","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Bryan","West","","","","","","bewest@chartermi.net","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Mark","Whitted","","","","","","mark@whitted.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Mark","Wichlinski","","","","","","wichlinmtw@msn.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Harry","Matonic","450 Taylor Rd","Brighton","MI","48114","","diharmat1@yahoo.com","","","","","","","2012-06-23"
+"Siane","Wilks","","","","","","scottdianewilks@aol.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Penelope","Willey","","","","","","pennywilley@comcast.net","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Brigette","Wolin","","","","","","wolinb@aol.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Sam","Yamin","","","","","","patyamin@yahoo.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Jodie","Bissonette","","","","","","jodie@gaslightmedia.com","","","","","2006-01-11","2006-01-11","2006-01-11"
+"Steve","Yarbrough","","","","","","sayarbama1@msn.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Carl","Holstein","","","","","","cholstein8494@wowway.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Rebecca and Greg","Sparks","","","","","","greg.sparks@martinmarietta.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Joan","Baas","","","","","","joanierodgers@buckeye-express.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Susan","Corsetti","","","","","","scorsett@ford.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Michael","Seltzer","","","","","","Mike@skmmarketing.com","0","9","5 bedroom condo","Looking for availability before Christmas for perhaps two condos - week of 12/19 for 2 to 3 days...\r
+Availability and rates please","","","2005-12-07"
+"Debra","Mikolajczyk","4316 Resort Pike","Petoskey","MI","49770","Cell 586-630-1188","gkoddo@yahoo.com","","6","","Seeking Live-on presmises management emplopyment for my husband and self.  If any opportunities available please contact us.  Thank you for any consideration.\r
+\r
+Sincerely, Debra Mikolajczyk","2006-01-07","","2006-01-08"
+"Kevin","Shaughnessy","","","","","","kmshaug6@gmail.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"","","","","","","","shaw.rhonda@gmail.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"TRISH","CEASE","125 WEST LAKEVIEW ROAD","LEVERING","MI","49755","231-758-0834","LUVABOYDSBEAR@HOTMAIL.COM","","8","","I SEE YOU ARE HAVING A SCRAPBOOKING RETREAT. I WOULD LIKE TO TALK WITH THE DIRECTOR THE THE RETREAT PLEASE.\r
+THANK YOU\r
+TRISH","","","2006-01-11"
+"Lyle  JR.","Ankrapp","","Gaithsburg","MD","20878","301-977-8166","lankrapp@hotmail.com","3","4","","","2006-04-18","2006-04-18","2006-04-18"
+"Mark","Borin","","Plymouth","MI","48170","734-455-3995","borinfamily@comcast.net","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Ronald","Arturi","","Willow Springs","IL","60480","708-839-0038","aceistheplace@excite.com","0","","","","2006-04-18","2006-04-18","2006-04-18"
+"KATE","FRIGO","","","","","","kfrigo@gmail.com","","9","","I recently stayed at Trout Creek. I was curious if you have a lost and found for items left. I stayed in unit 24 I believe. Thank you.","","","2010-01-21"
+"Elizabeth","Banks","","Birmingham","MI","48009","248-593-1073","ericandels@comcast.net","4","4","","","2006-04-18","2006-04-18","2006-04-18"
+"Gail","Baker","","Highland","MI","48356","248-887-3303","Ryrabaker@aol.com","3","9","","","2006-04-18","2006-04-18","2006-04-18"
+"Carol","Bale","","Farmington Hills","MI","48333","248-788-1567","pupandponylover@aol.com","3","","","","2006-04-18","2006-04-18","2006-04-18"
+"Kim","Bartuch","","Clarendon Hills","IL","60514","630-654-3991","kbbartuch@sbcglobal.net","1","8","vrbo.com","","2006-04-18","2006-04-18","2006-04-18"
+"Michael","Baruzzini","","Livonia","MI","48152","734-260-1788","187.mike@gmail.com","1","0","","","2006-04-18","2006-04-18","2006-04-18"
+"John","Baysore","","Grosse Pte. Farm","MI","48236","313-886-5976","jbaysore@comcast.net","0","9","","","2006-04-18","2006-04-18","2006-04-18"
+"Shawn","Berger","","Chesdterfield","MI","48051","586-948-1463","msd3563@aol.com","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Ira","Berkowitz","","West Bloomfield","MI","48323","248-737-8818","irab7863@aol.com","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Barbara","Berthaume","","Gladstone","Mi","49873","906-428-4315","jberthaume@chartermi.net","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Mark","Smogor","","","","","","msmogor@comcast.net","","","","","2009-02-03","2009-02-03","2009-02-03"
+"Kyle","Beyett","","Bay City","MI","48708","989-894-5464","kabeyett1275@aol.com","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Deborah","Beverly","","Kalamazoo","MI","49009","269-375-7866","beverly2000@prodigy.net","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Donna","Bickerton","","Tecumseh","ON","N8N 4M9","519-735-8413","dnolanbi@yahoo.com","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Tina","Bildstein","","Medina","OH","44256","440-779-7210","rcbnet@earthlink.net","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Dody","Billideau","","Concord","CA","94521","925-672-6499","Billideau@yahoo.com","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Cathy","Blake","","Grand Rapids","MI","49546","616-954-7057","dablakes@comcast.net","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Bruce","Blinkhorn","","Grand Rapids","MI","49544","616-443-9127","bblinkhorn@glfasteners.com","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Elizabeth","Block","","Fishers","IN","46037","317-578-8903","blockhome@ameritech.net","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Kevin","Bock","","Lansing","Mi","48917","517-886-0388","bocklava@comcast.net","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Dru","Bocvarov","","Toledo","OH","43606","419-427-0859","drubanners@sbcglobal.net","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Canice","Boran","","Northville","MI","48168","248-380-5337","canice.boran@autoliv.com","","","","","2006-04-18","2006-04-18","2006-04-18"
+"","","","","","","","aglo510@comcast.net","","","","","2009-06-03","2009-06-03","2009-06-03"
+"Cheryl","Borowski","","Marysville","MI","48040","810-364-5297","markbowslinger@prodigy.net","","","","","2006-04-18","2006-04-18","2006-04-18"
+"James","Brading","","Kokmo","IN","46902","765-453-9438","challenger53@aol.com","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Susan","Brainovich","","Rochester","MI","48307","248-656-6875","brainovich@sbcglobal.net","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Jason","Brand","","Canton","MI","48187","","jasonbrand@gmail.com","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Catherine","Brooks","","Holland ","MI","49424","616-339-4057","cathy_brooks@hermanmiller.com","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Edward ","Brown","","Grand Blanc","MI","48439","810-694-2958","edbrown3772@sbcglobal.net","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Kip ","Brown","","Bay City","Mi","48706","989-757-5360","kipandkats@aol.com","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Terri","Brown","","Durand","MI","48429","989-634-8355","tlbrown@tir.com","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Michael","Bruns","","Cincinnati","OH","45247","513-741-2075","m.p.bruns@fuse.net","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Chad","Buchannan","","Washington Twp. ","Mi","48094","586-855-6253","lindseynicole2102@hotmail.com","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Justin","Buchhop","","Conton","MI","48188","734-347-8676","jeliotbuchhop@hotmail.com","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Susan","Buck","","Plainfield","IL","60544","734-347-8676","bucksgs1@comcast.net","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Todd","Buhs","","Okemos","MI","48864","517-449-3346","Tab5534@yahoo.com","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Laurie","Bulson","","Inverness","Il","60010","847-934-2175","lhbulson@comcast.net","","","","","2006-04-18","2006-04-18","2006-04-18"
+"","","","","","","","etrim@hotmail.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"","","","","","","","jroddy@umd.umich.edu","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Donald","Burch","","Northville","MI","48168","248-380-9293","dlburch@ameritech.net","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Kate","Burkhardt","","Ann Arbor","Mi","48103","734-930-9261","kburkhardt@datastat.com","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Matt","Simons","","","","","","mtt_simons@yahoo.com ","","","","","2009-02-03","2009-02-03","2009-02-03"
+"David","Chasco","","Huntington Woods","MI","48070","248-399-2135","dchasco@uiuc.edu","","","","","2006-04-18","2006-04-18","2006-04-18"
+"William","Bryne","","Dayton","OH","45459","937-436-1271","wbyrne38@sbcglobal.net","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Brad ","Caldwell","","Hamtramck","MI","48212","586-524-8079","bcaldwell96@comcast.net","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Aidan","Canning","","Sarnia","ON","N0N1C0","519-869-8665","cannster@hotmail.com","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Fidel","Carino","","Fenton","MI","48430","810-714-0772","FKCarino@aol.com","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Jim","Carnacchi","","Auburn Hills","MI","48326","248-853-5188","jcarnacchi@roncelli-inc.com","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Bruce","Carpenter","","Lawton","MI","49065","269-624-6953","becarpen@yahoo.com","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Teri ","Carroll","","Macomb","MI","48042","586-786-7328","teri.carroll@comcast.net","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Phlip","Caruso","","Grosse Ile","MI","48138","561-704-6273","grosseille@aol.com","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Dean","Cataford","","Sarnia","ON","N7V 2S3","519-542-3024","dcataford@cogeco.ca","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Debbie","Wisniewski","","","","","","dbwisniewski@comcast.net","","","","","2009-02-09","2009-02-09","2009-02-09"
+"Querag","Cho","","Novi","MI","48375","248-344-2586","QUECHO@gmail.com","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Jennifer","VanderKlok","","","","","","jentennrn@gmail.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Christopher","Clabuesch","","East Lansing","MI","48823","517-490-8922","clabues1@msu.edu","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Thomas","Fletcher","","","","","","fletcherstewart@msn.com","","","","","2009-03-26","2009-03-26","2009-03-26"
+"Linda","Clargo","","Sault Ste. Marie","ON","P6A 5K6","705-779-2736","clargo.reed@sympatico.ca","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Adam","McLain","","","","","","mclainadam@yahoo.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Jim","Clevenger","","Flint","MI","48506","810-250-0076","Spliff13@sbcglobal.net","","","","","2006-04-18","2006-04-18","2006-04-18"
+"John","Collins","","Naperville","IL","60563","630-778-1775","jclc5@comcast.net","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Chris","Cook","","Groose Pointe","MI","48230","313-331-3329","cook2dtour@aol.com","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Richard","Counsman","","Grosse Pointe","MI","48230","313-303-5226","rcounsman@thurswell.com","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Mike","Crossk","","Troy","MI","48084","248-939-3764","purdue_boiler97@yahoo.com","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Mike ","Crowley","","Jackson","MI","49203","517-782-3281","mcrowley@greatlakesind.com","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Joseph","Custer","","Ann Arbor","MI","48103","734-663-2014","jcuster@med.umich.edu","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Beth","Czada","","Kalamazoo","MI","49048","269-382-1581","dreamsbeth@gmail.com","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Tom","Dabrow","","Farmington Hills","MI","48336","248-478-0653","HDABROWA@twmi.rr.com","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Mark","Dagostino","","Huntsville","AL","35802","256-461-7854","mdagostino@knology.net","","","","","2006-04-18","2006-04-18","2006-04-18"
+"","","","","","","","expovinny@earthlink.net","","","","","2009-06-04","2009-06-04","2009-06-04"
+"","","","","","","","jsandman@zoomtown.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Jamie","Davis","","Farmington Hills","MI","48331","248-592-0899","njdavis1@yahoo.com","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Leah","Davis","","Lima","OH","45805","419-303-7014","godbludgeon@yahoo.com","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Peter","Dawidowicz","","Troy","MI","48098","248-388-5834","peterd234@yahoo.com","","","","","2006-04-18","2006-04-18","2006-04-18"
+"TRUDY","DAY","","PETOSKEY","MI","49770","231-348-5834","tellenday@charter.net","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Lisa","Dean","","Rochester Hills","MI","48307","248-853-6484","larc888@comcast.net","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Lloyd","Dean","","Kingsville","ON","N9Y 3R1","519-817-7385","lloyddean@sympatico.ca","","","","","2006-04-18","2006-04-18","2006-04-18"
+"","","","","","","","lpg7@msn.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"","","","","","","","raydalrymple@comcast.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"John","Deradoorian","","","","","","dorianjb@earthlink.net","","","","","2006-04-19","2006-04-19","2006-04-19"
+"","","","","","","","siannaco@nycap.rr.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Serge","Devolder","","","","","","sergedevolder@gmail.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Amy","DeWitt","","","","","","DeWitt6@aol.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"","","","","","","","tjbrown1966@ejourney.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"","","","","","","","WRodenbe@dps.k12.oh.us","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Robbin","Barnes","","","","","","barnro@mirealsource.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Martin","Difiore","","","","","","mdifi1104@aol.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Alex","Gray","","","","","","gray.a@hotmail.com","","","","","2009-03-26","2009-03-26","2009-03-26"
+"Philip","Dooley","","","","","","pdooley@locl.net","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Brian","Doughty","","","","","","bdoughty@umich.edu","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Rita","Deutsche","","","","","","ritad949@aol.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Danielle","Wong","","","","","","dbwong@umich.edu","","","","","2009-02-09","2009-02-09","2009-02-09"
+"David","Drinan","","","","","","davedrinan1@aol.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Sheila","Drouin","","","","","","tsheila@hotmail.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Chantal","Dube","","","","","","jtarabas@sympatico.ca","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Gary","Duffett","","","","","","gduffett@sbcglobal.net","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Chad","Dunkle","","","","","","chad@thedunkles.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Dennis","Zaski","","","","","","dzaski@librami.com","","","","","2009-05-22","2009-05-22","2009-05-22"
+"Thomas","Emmerich","","","","","","temmerich@schupan.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Stephen","english","","","","","","steveandisabel@comcast.net","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Sue","Erickson","","","","","","suee866@aol.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"","","","","","","","ahrens2@verizon.net","","","","","2009-06-03","2009-06-03","2009-06-03"
+"Melissa","Fabits","","","","","","t_fabits@yahoo.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Carolyn","Falcone","","","","","","falconep@comcast.net","","","","","2006-04-19","2006-04-19","2006-04-19"
+"","","","","","","","favulus@hotmail.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Bernie","Frye","","","","","","bernie@fryebrokerage.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Valerie","Filek","","","","","","vfilek@lssu.edu","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Gwen","Fisher","","","","","","fishg73@yahoo.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Hiram","Fitzgerald","","","","","","fitzger9@msu.edu","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Randy","Flood","","","","","","rsflood2112@comcast.net","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Joan","Ford","","","","","","joanford2@aol.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"","","","","","","","lsquatrito@comcast.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Domenick","Forgione","","","","","","dfclgc@aol.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"","","","","","","","raymond.mmje@gmail.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Bev","Foubister","","","","","","dfoubist@rivernet.net","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Brenda","Frantz","","","","","","b.frantz@sbcglobal.net","","","","","2006-04-19","2006-04-19","2006-04-19"
+"","","","","","","","skeetrgolf@hotmail.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Peter ","Frye","","","","","","peter_frye@sbcglobal.net","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Mark","Gardner","","","","","","mga874@comcast.net","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Sharon","Gardner","","","","","","washgardner@juno.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Carol","Garland","","","","","","carolgarland123@yahoo.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Gene","Gaudino","","","","","","gdgaudino@wowway.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Carol","Gehringer","","","","","","121050311@comcast.net","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Mark","Gentilia","","","","","","indy601man@yahoo.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Stefan","Georgiev","","","","","","stefan_g_g@yahoo.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Gail","Gielegham","","","","","","ggieleghem@msn.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Cindy","Hubbell","","","","","","shubbell@chartermi.net","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Lisa","Gross","","","","","","lgross213@yahoo.com ","","","","","2009-10-26","2009-10-26","2009-10-26"
+"Alison","Kraai-McKee","","","","","","alikraai@hotmail.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Nancy","Kubal","","","","","","nkubal@sbcglobal.net","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Mark","LaBelle","","","","","","mlabelle@wowway.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Larry","Laginess","","","","","","explosivo2k2@yahoo.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Mark","Landschulz","","","","","","mlandschulz@ofllc.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Audrey","Leblanc","","","","","","johnaudr1@netzero.net","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Gavin","Levin","","","","","","gavinlevin@chartermi.net","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Mark","Leybunz","","","","","","M1992L@aol.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Joanne","Lincoln","","","","","","joli82@comcast.net","","","","","2006-04-19","2006-04-19","2006-04-19"
+"","","","","","","","wromatz@live.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Anna","Mclester","","","","","","janamclester@hotmail.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Andrew","Litynskyj","","","","","","andrew.litynskyj@comcast.net","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Hilary","Livesey","","","","","","liveseyfamily@comcast.net","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Lynne","Martin","","","","","","lynnemartin@cablespeed.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Cherie","Maurer","","","","","","cheriemaurer@comcast.net","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Stephanie","Mazaris","","","","","","steph0385@yahoo.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Scott","McBain","","","","","","svmcbain@earthlink.net","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Jill","Murray","","","","","","murrayjil@gmail.com","","","","","2009-02-03","2009-02-03","2009-02-03"
+"Margaret","McCann","","","","","","maizeanz@aol.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Mike","McCardell","","","","","","lmmccardell@comcast.net","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Alice","McGuire","","","","","","alice.mcguire@sbcglobal.net","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Martin","McKendry","","","","","","mark_5248846@yahoo.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Jennifer","Melchi","","","","","","mmelchi@comcast.net","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Vito","Wasniewski","","","","","","vitowas2000@yahoo.com","","","","","2009-03-26","2009-03-26","2009-03-26"
+"Phyllis","Miles","","","","","","pmiles@twmi.rr.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Lisa","Miller","","","","","","ckmmiller@sbcglobal.net","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Ryan","Miller","","","","","","ryan.miller3@usbank.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Ann","Oxender","","","","","","aoxender@wowway.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Linda","Mitchell","","","","","","ljd1104@sbcglobal.net","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Toby","Monforton","","","","","","tmonforton99@comcast.net","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Mary","Monk","","","","","","monklkorn@aol.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Jessica","Nancarrow","","","","","","jleenancarrow@yahoo.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Mark","Nichols","","","","","","menichols@comcast.net","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Deborah","Carcus","","","","","","dcarcus@bex.net","","","","","2009-02-09","2009-02-09","2009-02-09"
+"Nancy","Otto","","","","","","notto@comcast.net","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Nancy","Padilla","","","","","","padillan@comcast.net","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Tom","McNally","","","","","","tb105@aol.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Brant","Pekkala","","","","","","brantp5@comcast.net","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Marcia","Penn","","","","","","bernesemom@aol.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Richard","Portnoy","","","","","","portnoy@epi.umn.edu","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Glenn","Purvis","","","","","","gpbonsai@comcast.net","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Carolyn","Rater","","","","","","ckrater@wi.rr.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Riley","Rees","","","","","","rreese@umich.edu","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Martin","Reidilla","","","","","","mredilla@sbcglobal.net","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Nick and Wendy","Relich","","","","","","wendylkr@aol.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"David","Reyna","","","","","","dreyna98@hotmail.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Liz","Richard","","","","","","lizr0406@yahoo.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"John","Robinson","","","","","","jwrchelsea@comcast.net","","","","","2006-04-19","2006-04-19","2006-04-19"
+"","","","","","","","ajabjarrett@att.net","","","","","2009-06-03","2009-06-03","2009-06-03"
+"Roma","Shukla","","","","","","romashukla@hotmail.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Brad","Downs","","","","","","bdowns72@hotmail.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Melissa","Simmons","","","","","","simmerdwn@aol.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Rosanne","Simpson","","","","","","diann.garagiola@eds.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Brian","Smith","","","","","","bjsmith1313@comcast.net","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Christin","Suhy","","","","","","csuhy2@comcast.net","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Mary","Sullivan","","","","","","sullivancity@msn.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Dave","Swain","","","","","","rdswain@comcast.net","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Joann","Doyle","","","","","","joanndoyle1956@sbcglobal.net","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Scott","Swartz","","","","","","deebabe379@comcast.net","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Mark","Taylor","","","","","","cathylee6@juno.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Nancy","Vanoyen","","","","","","nancyvanoyen@hotmail.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Juliana","Williams","","","","","","jjwms211@aol.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Peter","Wilson","","","","","","p.wilson@charter.net","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Mercedes","Wirsing","","","","","","mercedw@aol.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Robert","Wismer","","","","","","lwismer@chartermi.net","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Patrick","Witt","","","","","","patrickwitt@comcast.net","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Angela","Wrozek","","","","","","wrozek@earthlink.net","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Chelsea","Mills","","","","","","chelseajaiemills@hotmail.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Steven","Zane","","","","","","sazane@magellanhealth.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Michael","Zawacki","","","","","","MZawacki@twmi.rr.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"David","Crace","","","","","","david@contract-dewatering.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Dan","Hernandez","","","","","","mherna92@comcast.net","","","","","2005-06-03","2005-06-03","2005-06-03"
+"Tamera","Duffield","","","","","","tamera.duffield@gpschools.org","","","","","2005-06-02","2005-06-02","2005-06-02"
+"Mike","Golberg","","","","","","mike@freedmangoldberg.com","","","","","2005-08-28","2005-08-28","2005-08-28"
+"Joe","Mercadante","","","","","","diamondback23@comcast.net","","","","","2005-08-29","2005-08-29","2005-08-29"
+"Christine ","Carson","","","","","","ccarson1@ameritech.net","","","","","2003-11-29","2003-11-29","2003-11-29"
+"Steven","Polidori","","","","","","steve.polidori@hap.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Kim","Childress","","Goode","VA","24556","540-587-0375","KAHRN03@aol.com","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Jim","Reinhart","","","","","","jacdreinhart@netzero.com","","","","","2005-06-02","2005-06-02","2005-06-02"
+"Arnold","Blam","","Hudson","OH","44236","330-528-0375","arnie31879@aol.com","","","","","2006-04-18","2006-04-18","2006-04-18"
+"Dale","Stol","","","","","","dstol1@wideopenwest.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Eric","Wright","","","","","","eandjwright@comcast.net","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Janice","Fouts","","","","","","foutsmail@sbcglobal.net","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Pam","Hankins","","","","","","gsafko@ermanteicher.com ","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Katherine","Foy","","","","","","irishkfoy@comcast.net","","","","","2005-10-26","2005-10-26","2005-10-26"
+"James and Jackie","Hagan","","","","","","jamesjhagan@hotmail.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Matthew","Wiegand","","","","","","mwiegand81@yahoo.com","","","","","2009-02-03","2009-02-03","2009-02-03"
+"Linda","Kreuger","","","","","","lskrueger@comcast.net","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Melanie","Hosler","","","","","","melhosler@hotmail.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Carmen","Sietz","","","","","","sietzcl@aol.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Shirley","Freedman","","","","","","snpoppy@fuse.net","","","","","2005-07-07","2005-07-07","2005-07-07"
+"Ann","Steinmetz","","","","","","steinmetz313@aol.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Michelle","Martin","","","","","","bbmartin@mei.net","","","","","2005-07-22","2005-07-22","2005-07-22"
+"Greg","Adamo","","Clinton Twp. ","MI ","48036","586-783-3551","gadamo@wowway.com","3","4","","","2006-04-18","2006-04-18","2006-04-18"
+"Jill","Slaght","","","","","","jillslaght@yahoo.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Patti","Payne","","","","","","paynepj@bellsouth.net","","","","","2009-10-13","2009-10-13","2009-10-13"
+"Michael","Graham","6400 West Surrey","Bloomfield Hills","MI","48301","248-626-0632","magraham@newsguy.com","","9","Inquiry about Unit #88; listed as "for Sale" on Trout Creek website.  Is this unit still on the market?  Is this unit an "end" unit in this cluster?","","","","2006-05-28"
+"Stacey","Bollan","","Center Line","MI","48015","586-758-9621","mbollan3207@wowway.com","","","","","2006-04-18","2006-04-18","2006-04-18"
+"June","Windt","","","","","","jewindt@yahoo.com ","","","","","2009-10-26","2009-10-26","2009-10-26"
+"mike","pastorino","","","","","","mpastorino@flintjournal.com","","1","","last week I booked a trip for 8 gentlemen June 07. Is there anything I can do to reduce the price. we are scheduled to arrive on a Saturday and depart Tuesday AM.\r
+Thanks\r
+(Nicki booked the trip)","","","2006-06-07"
+"Nick","Arcaro","834 Halstead Blvd.","Jackson","Michigan","49203","517/784-0986","nick834@comcast.net","","9","","I have a confirmation # 71415.  I will not be arriving until after 5pm.  How do I get the key to the condo, what is the procedure?  Also, are towels, etc provided or should I bring my own?  Any other info that is helpfull, please let me know.\r
+\r
+Nick Arcaro","","","2006-06-14"
+"Lisa","Drayton","11066 W Glen Dr","Clio","Mii","48420","810-496-9532","lhydedrayton@hotmail.com","","9","","I have a reservation for Friday July 7 - Tues July 11.  My parents will be staying with us and they will probably be arriving before us.  The reservation is in my name, will they be able to check in before we arrive?","","","2006-07-05"
+"Kristen","Farrar","","","","","","kristenfarrar98@yahoo.com","","4","","My family has a reservation at Trout Creek Aug. 3-7 and we wanted to rent a boat on an inland lake. Can you suggest an boat rental companies? Thanks for you help.\r
+\r
+Kristen Farrar","","","2006-07-06"
+"","","","","","","","ajanson@hansonlogistics.com","","","","","2009-06-03","2009-06-03","2009-06-03"
+"Roger","Faulkenberry","","","","","","jackief@columbus.rr.com","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Debbie","Yadon","6596 Basswood Dr","Troy","Mi","48098","248-879-4809","debbie_yadon@decoma.com","","","We have reservations for Sept 8& 9 for a soccer tournment - We would like to use our free night for Thursday Sept 7 - Please advise if that is available- Thanks, Debbie Yadon","","","","2006-08-17"
+"Alfred","Hearne","","","","","","ahearne@wowway.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"","","","","","","","fefelady@aol.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Wayne","Fort","","","","","","roger48640@chartermi.net","","","","","2006-09-22","2006-09-22","2006-09-22"
+"Nancy","Lewandowski","","","","","","nancylewandowski@comcast.net","","","","","2005-06-02","2005-06-02","2005-06-02"
+"John","Watson","","","","","","a1cottages@a1cottages.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Al","Choma","","","","","","achoma@aol.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Andrew","Cohen","","","","","","AHC100@comcast.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Al","Yanosik","","","","","","alfic76@msn.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Sara","Alchin","","","","","","sbalchin@cablespeed.com","","","","","2008-11-13","2008-11-13","2008-11-13"
+"Amy","Hojnacki","","","","","","amylynn_48167@yahoo.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Charles","May","","","","","","cmay@beckwithgroup.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Mary","Anderson","","","","","","andrsnma@aol.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Ann","Poosuthasee","","","","","","annpoos@yahoo.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Ann Marie","Simsarian","","","","","","annsimsarian@cox.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Antonio","Todaro","","","","","","antoniotodaro98@yahoo.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Ashley","Pope","","","","","","appope@svsu.edu","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Alvin","Sallen","","","","","","asallen994@aol.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"April","Gordon","","","","","","aslupski@hotmail.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Bill","Simpson","","","","","","ddkerr33@aol.com","","","","","2009-02-09","2009-02-09","2009-02-09"
+"Angela","Zoes","","","","","","aazoes@gmail.com ","","","","","2009-10-26","2009-10-26","2009-10-26"
+"Daniel","Barrons","","","","","","barrons1@xcelco.on.ca","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Elizabeth","Gunther","","","","","","baycitybeth@hotmail.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"John & Barb","Hall","","","","","","bblucas@yahoo.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"David","Mikolajczak","","","","","","bccfan@sbcglobal.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Duane","Stokes","","","","","","du_stokes@hotmail.com","","","","","2009-03-26","2009-03-26","2009-03-26"
+"Robert","Mills","","","","","","rmills48@sbcglobal.net","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Ellen","Merrill","","","","","","bemerrill@yahoo.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Benjamin","Saltsman","","","","","","bensaltsman@yahoo.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Bruce","Schubiner","","","","","","Beth.Schubiner@sbcglobal.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Ronald","Bethune","","","","","","bethune@wyan.org","","","","","2006-09-25","2006-09-25","2006-09-25"
+"","","","","","","","firemanfitz65@yahoo.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Beverly","Coombs","","","","","","bevsfc@aol.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Bill","Holtman","","","","","","bholtman@rehmann.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"","","","","","","","lundbergs@acd.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Andrew & Kristi","Haberl","","","","","","bilanssi@yahoo.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"William","Piontkowski","","","","","","bill.piontkowski@ge.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"","","","","","","","rbreece88@hotmail.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Bonnie","Marcinkowski","","","","","","bmarcinkowski@comcast.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Donald & Cindy","McGee","","","","","","bmcgee@betco.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Eric","Kimmel","","","","","","bne93@yahoo.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Robert","Cowen","","","","","","bobcowen@earthlink.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"","","","","","","","skendrick@sbcglobal.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Robert F.","Smith","","","","","","bobsmith533@hotmail.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Daniel","Bowen","","","","","","bowenx3@gmail.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Brad","Neumann","","","","","","bradfordjn@yahoo.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Bryan","Porritt","","","","","","bryan_porritt@spartanstores.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Brian","Trudeau","","","","","","btrudeau@comcast.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Shirley","Frederick","","","","","","buffalogal@wideopenwest.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Christine","Zondervan","","","","","","bzonde8137@aol.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Bryan & Carri","Kistner","","","","","","carrikistner@sbcglobal.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Peter","Gray","","","","","","caryn.gray@mecglobal.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Cathi","Rhynard","","","","","","cathi_rhynard@yahoo.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Chris","Blain","","","","","","cblain1963@comcast.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Craig","Conklin","","","","","","cconklin7@comcast.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Chris","Pratt","","","","","","ccp@voyager.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Chris","Stefans","","","","","","ccs10@alumnimail.albion.edu","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Charolette","Westbrook","","","","","","cdwestbrook@comcast.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Carroll","Whitney","","","","","","cewhit@msn.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Charles","Johnson","","","","","","charles.johnson@safelite.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Andrew","Kim","","","","","","ahkfutures@yahoo.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Cheryl","Schrage","","","","","","cherylschrage@yahoo.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Craig","Hisey","","","","","","chisey@umich.edu","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Cory","Hissong","","","","","","chissong12@hotmail.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"David","Drinan","","","","","","ddrinan@comcast.net","","","","","2009-02-09","2009-02-09","2009-02-09"
+"Charles","Butler","","","","","","chuckbutler@usa.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Chuck","Pappas","","","","","","chuckpappas@wideopenwest.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Don","Slavin","","","","","","dslavin@gmail.com","","","","<p>Don</p>","2009-03-26","2009-03-26","2009-03-26"
+"Chuck","Rozema","","","","","","cjrozema@charter.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Cherie","Dozier","","","","","","cld92786@netzero.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Craig","Mulhinch","","","","","","cm@boscospizza.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"","","","","","","","alanmcrawford@gmail.com","","","","","2009-06-03","2009-06-03","2009-06-03"
+"John ","Sheppard","","","","","","cobrashep@aol.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Lynne","Cowlishaw","","","","","","cowlidr@kellyservices.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"","","","","","","","fitzenreiter@gmail.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Mark","Pochodylo","","","","","","cpochodylo@comcast.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Caroline","Smith","","","","","","csmith@rayder.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"","","","","","","","lynettesqueaky@comcast.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"","","","","","","","rdeobis@juno.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Cyrus","Warshaw","","","","","","cwcabernet@comcast.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Don and Jan","Nawrocki","","","","","","donaldnawrocki@comcast.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"David","Allen","","","","","","dallen5@yahoo.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Mark","Webb","","","","","","danirwebb@verizon.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Dave","Kaunisto","","","","","","dave@eccv.org","","","","","2006-09-25","2006-09-25","2006-09-25"
+"David","Weston","","","","","","david_1724@charter.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"David","Stile","","","","","","davidstile@forestcity.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Daniel","Gillis","","","","","","dbgillis@sympatico.ca","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Denise","Bither","","","","","","dbither.commerce@sbcglobal.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"","","","","","","","skidogsc@netzero.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Deborah","White","","","","","","debwhite98@comcast.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Carron","Koester","","","","","","decacon54@hotmail.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Deborah","Erickson","","","","","","DErickson123@yahoo.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Karen","Endlein ","","","","","","peso08@charter.net ","","","","","2009-10-26","2009-10-26","2009-10-26"
+"Gerry","Feeman","","","","","","dfeeman@barrettpaving.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Donald","Stephanic","","","","","","dfscommerce@comcast.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Dennis","Grosskopf","","","","","","dg1@att.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Diana","Guibord","","","","","","dguibord@charter.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Holly","Clemans","","","","","","dhclemans@sbcglobal.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Dino & Kim","Lalama","","","","","","dinolalama@yahoo.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Brad","Vorpahl","","","","","","divorpahl@aol.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Diane","Wilks","","","","","","diwilks@wowway.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Donald","Kenney","","","","","","dkenneyjr@yahoo.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Dan","Massey","","","","","","dmassey@twmi.rr.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Kelly","Mukomel","","","","","","dmukomel@comcast.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"","","","","","","","tkokales@sbcglobal.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Stacey","Dobbin","","","","","","dobbins@sofsurfaces.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Seung Jun","Lee","","","","","","dolflee@empal.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Douglas","Roby","","","","","","doug.roby@gpschools.org","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Doug","Tomayko","","","","","","dougtomayko@comcast.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Douglas","Campbell","","","","","","dpcampbell@prodigy.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Diane","Shepherd","","","","","","drrubicz@umich.edu","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Vijay","DSouza","","","","","","dsouza.vijay@gmail.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Deborah","Steingold","","","","","","dsrs5@comcast.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"David","Sanders","","","","","","dssanders@comcast.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Arthur","DeMonte","","","","","","apdemonte@comcast.net","","","","","2009-02-04","2009-02-04","2009-02-04"
+"Deborah","Valice","","","","","","dvd0216@yahoo.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Dennis","Winkler","","","","","","dwink01@aol.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"","","","","","","","andyv@keiprototype.com","","","","","2009-06-03","2009-06-03","2009-06-03"
+"Derek and barb","Gentile","","","","","","gentile261@comcast.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Elana","Weisberg","","","","","","elanarealtor@sbcglobal.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"","","","","","","","floydfamilyof5@yahoo.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Ed","VanDeneynde","","","","","","emajvan@xcelco.on.ca","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Larry","Emerling","","","","","","emerlingl@aol.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Angela","Zuiderveen","","","","","","angiezuiderveen@yahoo.com","","","","","2009-05-22","2009-05-22","2009-05-22"
+"Earl","Smith","","","","","","esmith@dtl-inc.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Paula","Staperfenne","","","","","","estaperfenne@rochester.k12.mi.us","","","","","2006-09-25","2006-09-25","2006-09-25"
+"","","","","","","","lynncarbo@aol.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Leah","Davis","","","","","","evergreen05@hotmail.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Brian","Swiech","","","","","","eyesound@yahoo.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"John","Lynn","","","","","","jlynnruns2@aol.com","","","","","2009-05-22","2009-05-22","2009-05-22"
+"Jill","Bacic","","","","","","fbacic1@comcast.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Gary","Francis","","","","","","francisg5@comcast.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Gail","Trendler","","","","","","gail.trendler@gm.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Julie","Gallagher","","","","","","gall1954@yahoo.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Jennifer","VanderWeele","","","","","","gigiv@wowway.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Tim","Homer","","","","","","gina@bbsbradys.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Nancy","Juszczyk","","","","","","gjuszczyk@comcast.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Gary","Kendell","","","","","","gkendell@mchsi.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Greg","Mendrek","","","","","","gmendrek@hotmail.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Gary","Olson","","","","","","golson@serena.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Ron","Behl","","","","","","gomad2@aol.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Laurie","Graham","","","","","","GRAHALL@KELLYSERVICES.COM","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Grant","Holmes","","","","","","grant@glmf.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Connie","Schwepe","","","","","","greconpc@aol.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Todd","Griffin","","","","","","griffintw@ameritech.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Frederic","Slete","","","","","","gringuy1@comcast.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Traci","Elliott","","","","","","gtelliott@hotmail.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Gary","Elrod","","","","","","gtesr2000@yahoo.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Kathleen","Rutherford","","","","","","gwr22@aol.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Craig","Hall","","","","","","hallcraig@hotmail.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Harry & Joann","Winston","","","","","","harfour@bellsouth.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Allen","Hanawalt","","","","","","hanawalt@comcast.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Eric","Hanson","","","","","","hansone@msu.edu","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Ronald","Hatlin","","","","","","hatbuild@comcast.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Matthew","Hilliard","","","","","","hilliardmj@hotmail.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Lynne","Hollbacher","","","","","","hollbacher@yahoo.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Holly","Drayfahl","","","","","","hollyandblaine@usfamily.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Greg","Hoops","","","","","","hoopster655@aol.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"","Houghton-Rahrig","","","","","","houghtol@gvsu.edu","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Brian","Hubbell","","","","","","hubs@perceptron.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Robert","Iaquiniello","","","","","","iaquaniello@comcast.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Susan","Hathaway","","","","","","info@heatherlanepottery.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Tammy","Inglis","","","","","","inglis111@comcast.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Jeffery","Weber","","","","","","j3weber1@wmich.edu","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Bryan","Pepp","","","","","","jakegervais@pioneersurgical.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Janet","Labond","","","","","","jalthefungal@yahoo.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"","","","","","","","sky_ski_blue@yahoo.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Jim","Mickiewicz","","","","","","james.mickiewicz@wkbdtv.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"","","","","","","","armstrong.mikej@gmail.com","","","","","2009-06-03","2009-06-03","2009-06-03"
+"Janice","Gould","","","","","","jangould@ciaccess.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Michelle","Jarrard","","","","","","jarrard@comcast.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Allen","Berman","","","","","","jberman@dmc.org","","","","","2006-09-25","2006-09-25","2006-09-25"
+"James","Steele","","","","","","jbsteele1@comcast.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Linden","Buck","","","","","","jcbllb@chartermi.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Adrian","Rogier","","","","","","arogier@siua.com","","","","","2009-02-04","2009-02-04","2009-02-04"
+"Joseph","Conte","","","","","","jconte187044@comcast.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Jonathon","Deneau","","","","","","jdeneau@linksim.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Jeff","Hansen","","","","","","Jeff.Hansen@xerox.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Jennifer","Merrill","","","","","","jennifer@kaleidoscopeassoc.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Jennifer","Streeter","","","","","","jenniferstreeter@msn.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Jessica","Prentice","","","","","","jessica_prentice@hotmail.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"William","Gehrke","","","","","","JGehrke100@aol.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Janis","Gorelick","","","","","","jgorelick@hotmail.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"James","Goulet","","","","","","jgoulet@umich.edu","","","","","2006-09-25","2006-09-25","2006-09-25"
+"James","Hagberg","","","","","","JHAGBERG5@MSN.COM","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Joshua","Honeycutt","","","","","","jhoneycutt1062@yahoo.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Jill","McCrary","","","","","","jillmc80@hotmail.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"James","Menzie","","","","","","jim.menzie@sysdesinc.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"James","Harrington","","","","","","jim_harrington@comcast.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"James","Lane","","","","","","jimmylane11@hotmail.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Christian","Dersidan","","","","","","dersidc@mac.com","","","","","2009-02-09","2009-02-09","2009-02-09"
+"Jeong","Kim","","","","","","jin108@hotmail.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Susan","Hammer","4900 Warblers Way","Midland","MI","48640","9898358757","seh630@yahoo.com","5","4","","Please let me know the rate will be at the petoskey soccer tournament","2009-06-19","2009-06-21","2009-03-28"
+"Russel","Knister","","","","","","JKNISTER@COMCAST.NET","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Daniel","Seeds","","","","","","jm4seeds@comcast.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Janet","Kijek","","","","","","jmrsk@comcast.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Jose","Villarreal","","","","","","jnv033@yahoo.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Joe","Ferrell","","","","","","joe.elin@comcast.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Mark","Johnston","","","","","","johnstonm@comcast.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Joshua","Sherbin","","","","","","joshuasherbin@comcast.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Richard","Kosek","","","","","","jrfkosek@aol.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"John","Ricci","","","","","","JRICCI5901@AOL.COM","","","","","2006-09-25","2006-09-25","2006-09-25"
+"","","","","","","","frenchy45616@yahoo.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"J.R.","Whitby","","","","","","jrw@gospelcom.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Jerriann","Pica","","","","","","js7pica@yahoo.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"John","Sternfels","","","","","","jsternfels@hotmail.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Anne","Webb","","","","","","jtwebb4@airadvantage.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Julie","Stark","","","","","","juliestark@sbcglobal.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Jeff","Anderson","","","","","","justinjaguar@netzero.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"","","","","","","","m.sweeney@wowway.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"John","Weston","","","","","","jweston@gp.lib.mi.us","","","","","2006-09-25","2006-09-25","2006-09-25"
+"","","","","","","","smannnard@yahoo.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Joanne","Yung","","","","","","jyung92@yahoo.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Teressa","Zettelmaier","","","","","","jzettelmaier@tds.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Kevin","Smith","","","","","","k4msmith@msn.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Karen","Heiser","","","","","","karen@heiserfamily.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Kathleen","Kerch","","","","","","kathleen.kerch@spcorp.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Karen","Batia","","","","","","kbatia@gmail.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Kenneth","Blasius","","","","","","kbind@comcast.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Kelley","Bretz","","","","","","kbretz@phm.k12.in.us","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Keith","Kallen","","","","","","keithk@crosswindsus.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Kelli","Cain","","","","","","kelli.cain@bissell.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Kathryn","Logan","","","","","","kewlkat2020@hotmail.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Kelly","Gawron","","","","","","kgawron@ford.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Chris","Wagner","","","","","","kiawags@mac.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Kirsten","Vilona","","","","","","kjvilona@comcast.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Tim & Karen","Zera","","","","","","kjzera@comcast.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Arthur","Noey","","","","","","art.noey@gmail.com","","","","","2009-02-04","2009-02-04","2009-02-04"
+"Kristen","Kapelanski","","","","","","kkapelanski@yahoo.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Jean","Kennedy","","","","","","kkenn84208@aol.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Karen","Kohut","","","","","","kkohutod@comcast.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Kathryn","Laethem","","","","","","klaethem@aol.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Kristine","Clubine","","","","","","klclub217@aol.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Susan","Bourque","","","","","","susanne.bourque@trane.com ","","","","","2009-10-26","2009-10-26","2009-10-26"
+"Mary","Yates","3303 N. Lakewood Ave","Chicago","Il ","60657","630 227-3314","mamie.yates@gm.com","5","7","","","2003-12-27","2003-12-30","2003-08-11"
+"Sharon","Kanya","20269 Woodcreek Blvd","Northville","mi","48167","248-449-6768","sharon@kanyafamily.com","2","9","","","2004-01-01","2004-01-04","2003-08-12"
+"Bruce","Allen","825 Stoneham","Saginaw","MI","48603","(989) 792-1154","ballen@shelti.com","3","9","","We stayed with you last year and had a wonderful time.  If available plese locate us near the pool.  Thank you, \r
+Bruce Allen","2003-12-27","2003-12-30","2003-08-17"
+"Gordon","Konyndyk","","Grand Rapids","MI","49506","","gkonyndyk@hotmail.com","","9","","","2003-08-18","2003-08-18","2003-08-18"
+"John ","Arnold","824 Three Mile Dr.","Grosse Pointe Park","MI","48230","313-822-0376","johnarnold@comcast.net","1","9","Plans are to check-in on Sunday, Dec. 27 and check-out Tuesday, Dec. 31st.","","2003-12-27","2003-12-30","2003-08-18"
+"Mary","Steffel","4124 Oak Tree Court","loveland","OH","45140","513-697-9717","msteffel@cinci.rr.com","2","6","","Are looking for TWO condos, each w/either 2 or 3 bedrooms + loft. Have 8 people in each party. Can you quote a rate for both condos, if available? THANK YOU!","2003-12-27","2004-01-02","2003-08-18"
+"Cheryl","Bederka","","","","","","cbederka@visteon.com","0","9","","We'll be in the area for Biketoberfest, but need pet friendly accommodations this year.  One dog who will be supervised and crated.  Willing to pay "pet deposit" or additional fees.","2003-10-03","2003-10-05","2003-08-27"
+"Allan","Harris ","","","","","","harrispole@hotmail.com","","","","","2009-04-02","2009-04-02","2009-04-02"
+"Richard","Hughes","601 Beech Street","Clare","MI","48617","989-544-3632","rwhughes@voyager.net","5","9","","","2003-12-29","2004-01-01","2003-09-08"
+"Yun","Lu","","","","","","yunlugu@yahoo.com","","","","","2009-02-10","2009-02-10","2009-02-10"
+"Anthony ","Kanakri","","","","","","anth00736@hotmail.com","2","9","","","2003-12-20","2003-12-24","2003-09-14"
+"Kari","Kreft","","Solon","OH","44139","","kckreft@yahoo.com","","9","","","2003-08-18","2003-08-18","2003-08-18"
+"Darlene Marsh","","8378 Potter Road","Flushing","Michigan","48433","659-0293","Darlenema@uawlsp.com","0","9","","We would be leaving Sunday, 11/30/2003.  We have been up there at this time during Thanksgiving and you aren't busy.  What kind of special rate can you give us?  ","20003-11-27","2003-11-30","2003-09-14"
+"McNash","Connie","719 Upper Scotsborough Way","Bloomfield Hills","MI","48304","248-454-8867","cmmcnash@comcast.net","5","6","","","2003-10-10","2003-10-12","2003-09-16"
+"Frank","Mustazza","1151 Arbroak CT","Lake Orion","MI","48362","248-269-9988","frankmustazza@jawood.com","0","9","","I know 3 people who own cond's in Trout Creek and have stayed there many times overthe last 10 years.  I am looking for a 3 bedroom condo, to rent & use.  I am not in a hurry, and looking for a motivated seller.  I have the funds availble for a fast deal.\r
+\r
+Thanks\r
+\r
+Frank Mustazza","","","2003-09-17"
+"Heather","Bobel","203 1/2 S. Findlay Street","Haskins","Ohio","43525","419-351-1131","heatherbobel@hotmail.com","5","6","","","2003-12-31","2004-01-04","2003-09-17"
+"Russ Rice","","46299 Winston Dr.","Shelby Township","MI","48315","586 247 4935","rrice55@wowway.com","0","9","","Please identifiy the price for these three nights as well as the option of staying for three nights beginning January 30, 2004 departing February 2, 2004","2003-12-31","2004-03-01","2003-09-17"
+"Ron","Wernette","949 James K Blvd","Pontiac","MI","48341","313/871-4419","rwernett@bowman-brooke.com","4","6","","Please contact me within 7 days.  I will be making reservations within that time.","2004-01-16","2004-01-19","2003-09-20"
+"Marianne","Schlick","2700 Oakwood SE","East Grand Rapids","Michigan","49506","616 949 9444","rmschlick@aol.com","0","9","","Are there any packages this year with Boyne Highlands, Nubs Nob, or Boyne?  ","2003-12-31","2003-01-03","2003-09-21"
+"Cathy","McKenzie","","","","","","cmck659@comcast.net","","","","","2003-09-22","2003-09-22","2003-09-22"
+"","Norris","","","","","","norris@pcs.k12.mi.us","","","","","2003-09-22","2003-09-22","2003-09-22"
+"Paul and Pam","Derby","","","","","","derbydd@msn.com","","","","","2003-09-22","2003-09-22","2003-09-22"
+"Scott","Weber","","","","","","sw00@aol.com","","","","","2003-09-22","2003-09-22","2003-09-22"
+"J","FRIS","2031 LAKEWAY","HOLLAND","MI","49423","616-335-8801","j@frisoffice.com","0","8","","","2003-12-31","2004-01-03","2003-09-23"
+"","","","","","","","aspajb@comcast.net","","","","","2009-06-03","2009-06-03","2009-06-03"
+"Ray","Browers","18755 Winding Brook Place","Big Rapids","Michigan","49307","231/796-8546","rgbrowers@yahoo.com","1","0","","","2004-01-04","2004-01-09","2003-09-23"
+"Andrea","Simard","2856 Intertown Road","Petoskey","MI","49770","231-439-0636","andreasimard03@gmail.com","6","8","Live in area and been in condos ","Beginning to plan a 40-60 person family reunion for summer of 2011 and interested in room rates, availability, etc.  People traveling from Florida and California.  Thank you.  ","2011-07-28","2011-07-31","2010-01-24"
+"Sallie","Hutton","","Champagne","IL","61821","","dshutton@sbcglobal.net","","6","","","2003-09-26","2003-09-26","2003-09-26"
+"Jaackie","Masich","","Tawas","MI","48730","","jackie@tawasbayagency.com","","7","","","2003-09-26","2003-09-26","2003-09-26"
+"Sandra","Tkac","","Brighton","MI","48114","","stkac@comcast.net","","4","","","2003-09-26","2003-09-26","2003-09-26"
+"Francis","Villarreal","","Canton","MI","48187","","jnvillarreal@comcast.net","","4","","","2003-09-26","2003-09-26","2003-09-26"
+"Pamela","Nalley","17337 Mountain Plat","Grand Haven","MI","49417","616-844-5178","pjnalley@chartermi.net","4","8","","","2003-12-19","2003-12-27","2003-09-26"
+"sydney","kenyon","","","","","","sydney_kenyon@hotmail.com","5","6","","What is your availability fr these dates? Do you offer ski lift tickets? What are the additional charges? Thanks!","2003-12-27","2004-01-03","2003-09-29"
+"Tom","Wolski","7315 Emanon","Dearborn","MI","48126","2483718817","twolski@hotmail.com","0","9","","","2003-12-30","2004-01-02","2003-09-30"
+"louanne ","saenz","30244 kingsway","farmington hills","mi","48331","248-956-4007","saenzl@walledlake.k12.mi.us","0","","forme owner","this is for up to 20 people so how ever you can accomodate that would be fine","2003-12-26","2004-01-02","2003-10-02"
+"Kristina","Haberl","1000 Triangle Lk Rd","Howell","MI ","48843","517-548-7935","kostepp@umich.edu","0","9","If possible we would like a unit close to the swimming pool, non-smoking...Please.  This is our 3rd time here and have never had close to the swimming area.","","2004-02-14","2004-02-16","2003-10-03"
+"Michal","Meissner","6306 Beaver Creek Court","Fort Wayne","IN ","46814","260-459-0959","michal.meissner@eu.effem.com","1","9","","","2004-03-01","2004-09-01","2003-10-06"
+"Alana","Rabedioux","1598 Dawn Marie Ct.","Auburn","MI","48611","(989) 964-4423","arabedio@svsu.edu","1","9","","","2003-12-30","2004-01-02","2003-10-06"
+"Karen","Moore","43805 Cherry Grove Ct. E.","Canton","MI","48188","734-667-3774","kcook10@comcast.net","5","6","","","2003-10-17","2003-10-19","2003-10-07"
+"erin","crocker","600 30 th st   #723","boulder","colorado","80310","734 945 1557","erin.crocker@colorado.edu","3","4","","","2003-12-30","2004-01-01","2003-10-13"
+"Elizabeth","Warner","2003 Stearns","Kalamazoo","MI","49008","269-385-6248","warnere@bronsonhg.org","1","9","","","2003-12-20","2003-12-23","2003-10-15"
+"Cindy","Clough","","Rochester Hills","MI","48306","","cindyclough@aol.com","","4","","","2003-10-15","2003-10-15","2003-10-15"
+"Arvin","Singla","","","","","","arvin.singla@gmail.com","","","","","2009-02-04","2009-02-04","2009-02-04"
+"Jean Burton","","359 Pinetree Drive NE","Atlanta","GA","30305","404-231-1909","jeanburton2002@yahoo.com","3","9","","","2003-12-30","2004-01-04","2003-10-18"
+"Kathleen","Blazoff","","","","","","skblaze@comcast.net","","","","","2009-02-10","2009-02-10","2009-02-10"
+"Ken","Danaj","","","","","","benbeth@comcast.net","","","","","2003-10-21","2003-10-21","2003-10-21"
+"Tina","Galloway","","","","","","rtg2years@yahoo.com","","","","","2003-10-21","2003-10-21","2003-10-21"
+"Laurel","Stemper","1685 Greenbrier Drive","Libertyville","IL","60048","(847)680-9117","LStem1685@aol.com","5","7","","","2003-12-31","2004-01-04","2003-10-21"
+"Cindy","Bixby","24724 Highlands","Novi","MI","48375","","cbixby@twmi.rr.com","4","0","","","2003-11-26","2003-11-30","2003-10-22"
+"Don ","Maine","550 Overbrook Lane SE","Grand Rapids","MI","49507","616-452-2741","d.maine@comcast.net","3","2","","","2003-12-27","2003-12-29","2003-10-23"
+"Adam ","Enterkin","196 Cherry","Troy","MI","48083","248-524-1539","tfdae122@yahoo.com","5","6","","Do you have ski packages for Nubs or Boyne or discounts","2003-12-27","2003-12-30","2003-10-24"
+"Tom","Clark","","","","","","tclark@pgatourhq.com","","","","","2003-09-25","2003-09-25","2003-09-25"
+"Doug","Burroughs","2000 Fairway Glen","St. Clair","MI","48079","810-329-4635","DMB419@comcast.net","5","6","","","2003-11-27","2003-11-30","2003-10-27"
+"","","","","","","","aviz3@comcast.net","","","","","2009-06-03","2009-06-03","2009-06-03"
+"Cheryl","Gilpin"," 216 N. Wisner","Jackson","MI","49202","517 783-5244","15.cgilpin@heritageacademies.com","0","9","","","2004-02-01","2004-04-01","2003-11-02"
+"JAMES","CALDERARO","1029 GLENMORE CIRCLE","LOCKPORT","IL","60441","815-834-1228","JFCALDERARO@JUNO.COM","0","9","","","2004-02-13","2004-02-16","2003-11-02"
+"carl","patron","","","","","","carl@bhamcc.com","","9","","","","","2003-11-03"
+"John","Murray","507 Grove","Hudson","MI","49247","517.448.7768","landjmurray@aol.com","4","6","","","2003-12-26","2003-12-28","2003-11-03"
+"tom","luke","1033 audubon rd.","grosse pointe","MI","48230","3138829788","tomluke@comcast.net","3","8","have stayed at trout creek before","","2003-12-26","2003-12-28","2003-11-03"
+"Greg","Hamilton","251 North Main","Cedarville","OH","45314","586-491-0279","ghamilton@cedarville.edu","0","4","","","2003-12-14","2003-12-16","2003-11-04"
+"joyce","horn","8611 calumet way","CINCINNATI","OH","45249","513 489-3082","jtasset@pol.net","0","6","","","2003-12-27","2003-01-02","2003-11-05"
+"","","","","","","","fsass01@comcast.net","","","","","2009-06-04","2009-06-04","2009-06-04"
+"","","","","","","","madel@verizon.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"","","","","","","","rebekah56@charter.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Kevin","Trigalet","","","","","248-431-7391","trig50@yahoo.com","4","4","","","2004-01-08","2004-01-11","2003-11-08"
+"Jim","Mitte","8479 Colgate St","Oak Park","MI","48237","248-763-4270","jim@turtlehut.com","0","8","Google","I am looking for a larger place for a ski trip during or around New Years.  Do you have any places.  Ski -in, ski out is prefered. Thanks.","2003-12-28","2004-01-01","2003-11-09"
+"Sherry ","Wainz","4650 Ginger Hill Road","Toledo","OH","43623","419-475-2997","sdwainz@yahoo.com","0","9","","Change of plans since my last inquiry. Travelling with another family for a different date.  Any 3 BRs available?  Hope so!","2003-12-26","2003-12-31","2003-11-09"
+"Stanley","Granger","5375 Pembooke Crossing Ct","W. Bloomfield","MI","48322","","R1000yzf@hotmail.com","","","","","2008-12-15","2008-12-15","2008-12-15"
+"Cynthia","Wisner","","","","","","cindywisner@aol.com","","","","","2003-11-11","2003-11-11","2003-11-11"
+"Barbara","Dawes","","","","","","badawes@yahoo.com","","","","","2009-02-04","2009-02-04","2009-02-04"
+"Peter","Hanson","897 Ludwig Drive","Columbus","OH","43230","614-775-0255","hanson.5@osu.edu","5","6","","","2003-12-27","2003-12-31","2003-11-12"
+"William","Logan","313 Droste","East Lansing","mi","48823","517-374-9158","wlogan@dykema.com","1","6","","Also need info for a smaller unit for 2 adults/2 children","2003-12-19","2003-12-21","2003-11-14"
+"Christopher ","DeValk","3540 Harwwod","Sault Ste. Marie","MI","49783","9064406939","C_devalk@hotmail.com","0","7","","","2003-12-20","2003-12-21","2003-11-16"
+"Linda","Stockner","1055 Louisiana Ave.","Perrysburg","OH","43551","419-874-6159","las1055@hotmail.com","0","9","","","2003-12-20","2003-12-22","2003-11-16"
+"Lori","London","707 Suffield Ave","Birmingham","MI","48009","248 6469372 ","Londonfam@aol.com","3","9","","Non smoking unit only ...\r
+we are a bit flexible with our dates (+/-) a day","2003-12-31","2004-03-01","2003-11-16"
+"Kim","Hemphill","3309 Devon Dr. NE","Grand Rapids","MI","49546","616-942-0067","khemphill7@yahoo.com","1","9","","","2003-02-13","2003-02-16","2003-11-16"
+"Nancy","Quay","920 S Seventh","Ann Arbor","MI","48103","734-665-0630","nquay@umich.edu","0","9","","","2004-02-13","2004-02-15","2003-11-17"
+"Terry","Krueger","30700 Longcrest","Southfield","MI","48076","(248) 646-9075","tkrueg2@comcast.net","1","9","","","2004-02-20","2004-02-22","2003-11-17"
+"cynthia","gohlke","2 Island Lane","Grosse Pointe","MI","48230","313-884-0071","cyd412@comcast.net","5","9","","","2003-12-29","2004-01-02","2003-11-17"
+"Lars","Anderson","","","","","","larz88@hotmail.com","0","4","","hello sir/madam,\r
+I am planning a ski vacation and I was wondering how much 3 nights would cost during the dates mentioned above. Thanks a lot for your help.","2003-12-20","2003-12-22","2003-11-17"
+"Vincent","Pavone","2452 Devon lane","Birmingham","mi","48009","248-203-9283","VPavone245@aol.com","0","7","","","2003-12-28","2003-01-01","2003-11-18"
+"John","Freshley","1513 Brooklyn Ave","Ann Arbor","MI","48104","734-996-0557","john@freshley.net","1","6","","","2004-01-16","2004-01-19","2003-11-18"
+"Jeff","Reynolds","2998 Wetmore Dr.","Allegan","MI","49010","(269)686-2226","jeff.reynolds@trelleborg.com","4","6","","","2003-12-22","2003-12-24","2003-11-20"
+"Jerry W.","Rohen","2115  Onekama S.E.","Grand Rapids","Mi.","49506","616-245-8262","jerry.w.rohen@smithbarney.com","1","9","","","2003-12-30","2004-01-03","2003-11-20"
+"leslie","green","1029 walloon court","lake orion","mi","48360","248-693-3250","onthebeachnow48360@yahoo.com","1","8","","","2004-02-16","2004-02-19","2003-11-22"
+"keith","","","","","","","ksyum@hotmail.com","5","6","","We are 2. Just one person want to ski for 2 days (12/24 Wed & 12/25 Thur)","2003-12-23","2003-12-26","2003-11-25"
+"Ellen","Taylor","523 Sunset","Ann Arbor","Mi","48103","(734) 665-6564","ebtaylor@umich.edu","0","4","2 bedroom & loft","","2003-12-21","2003-12-22","2003-11-27"
+"DIXIE","MCKEAN","8958 SAWMILL COURT","INDIANAPOLIS","IN","46236","317-823-8894","DIXIEMCKEAN@AOL.COM","5","6","WE WOULD ALSO BE INTERESTED IN THE 2 BEDROOM PRICE. WE ARE 2 ADULTS AND 2 CHILDREN.","","2004-01-01","2004-01-04","2003-11-28"
+"Lindsay","DeMoss","5025 Stonehenge","Rochester","MI","48036","(248)656-6640","LEDeMoss@aol.com","1","8","internet search","","2003-12-30","2004-01-02","2003-11-28"
+"Keith","Branoff","","","","","","DPBranoff@aol.com","4","9","","","2003-12-31","2004-01-02","2003-12-02"
+"Paula","Cadwell","902 Oneida Woods Trail","Grand Ledge","MI","48837","517-627-5905","PJJLCAD@aol.com","4","4","","","2004-01-09","2004-01-11","2003-12-03"
+"Brittany","Waybright","7680 w 800 s ","South Whitley","Indiana","46787","260 723 4383","blwaybright@hotmail.com","0","6","","Pricing per person please.","2004-01-16","2004-01-18","2003-12-03"
+"","","","","","","","awildman@xplornet.com","","","","","2009-06-03","2009-06-03","2009-06-03"
+"M. Annabelle","Alberts ","","","","","","a113bell@aol.com ","","","","","2009-02-10","2009-02-10","2009-02-10"
+"Norb","Madison","","","","","","ntmadison@anqey.com","2","4","","I need accomodations for my wife and I and 3 children, a 11 year old boy, a 17 year old girl and an 18 year old boy.","2004-01-01","2004-01-04","2003-12-04"
+"Collin","Byrnes","36000 24 mile road","New Baltimore","MI","48047","586-202-6977","cbyrnes02@hotmail.com","5","6","","","2003-12-26","2003-12-28","2003-12-04"
+"Dana","Chapman","5 Cambridge Ct #6","Michigan City","Indiana","46360","(757) 753 6001","coasty7248@hotmail.com","5","6","","","2003-12-29","2003-12-30","2003-12-05"
+"Olga Chvykova","","1678  Murfin ave., #11","Ann Arbor","MI","48105","734-763-7064","chvykova@hotmail.com","5","6","","","2004-01-02","2004-01-04","2003-12-06"
+"","","","","","","","g2gaylor@gmail.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"","","","","","","","mail4gls@gmail.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"","","","","","","","redwing19@gmail.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Belinda","Friis","","","","","","bafriis@comcast.net","","","","","2009-02-04","2009-02-04","2009-02-04"
+"Jeff","Keuneke","216 W Rugg Street","Decatur","Indiana","46733","260-701-0846","jeff.keuneke@fleetwood.com","1","9","","If there are none of the 2 bed/loft/2 bath I would be intrested in the size smaller","2004-01-23","2004-01-24","2003-12-07"
+"Raquel","Marquesi","1868 Kirts Blvd., apt. 207","Troy","Mi","48084","248 813 2528","raquel_caselli@hotmail.com","5","6","","","2003-12-24","2004-02-01","2003-12-08"
+"brooke","milnes","917 w lovell","kalamazoo","MI","49007","(248)3965231","trout3683@aol.com","2","4","","","2003-12-30","2004-01-01","2003-12-08"
+"Toby","Monforton","19948 William Court West","Grosse Pointe Woods","MI","48236","313-640-3930","toby.monforton@danahertool.com","4","","Please call","","","","2003-12-09"
+"Yu-Hui ","Wang","","","","","","a221149041@hotmail.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Janet","Ledford","14914 Rotunda","Sterling Heights","MI","48313","5865667269","jledford@wideopenwest.com","1","4","please give me a price for 2bed/2bath and 2 bedroom/1 bath-Thanks","","2004-02-15","2004-02-18","2003-12-09"
+"Jeremy","Goldsworthy","333 Fort Street","Port Huron","MI","48060","8104342331","jeremy@fkbpc.com","5","7","","I am looking for rate and availablity for the night of the 6th with lift tickets for the 6th and 7th at Nubs Nob.","2003-01-06","2003-01-07","2003-12-10"
+"Kenneth","Johnson","26057 Penn","Inkster","MI","48141","","Johnsonk359@yahoo.com","","","","","2008-12-15","2008-12-15","2008-12-15"
+"Jean","Dylong","","","","","","jdylong@sbcglobal.net","","","","","2003-12-11","2003-12-11","2003-12-11"
+"William","McIntosh","","","","","","wmcintos@ford.com","4","4","","","2003-12-26","2003-12-28","2003-12-12"
+"john","fincher","20610 83rd place","Bristol","WI","53104","7049052245","john.fincher@btol.com","5","6","","Please advise rate and availability","2003-12-27","2003-12-30","2003-12-12"
+"David ","Walsh","2940 Tamwood","Commerce Township","Michigan","48382","248-684-1557","walsh78@aol.com","4","8","We are former owners of one of the units","We would like to overlook a wooded area, close to the clubhouse","2004-02-17","2004-02-20","2003-12-14"
+"kathy","kelly","2458 Barnsbury Rd.","East Lansing","MI","48823","517/339-0771","mkkirish@aol.com","1","4","","","2003-12-28","2003-12-30","2003-12-14"
+"Paula Leach","Paula Leach","2783 Hogan way","canton","michigan","48188","734 495 1625","paulamleach@hotmail.com","5","6","","","2004-01-23","2004-01-25","2003-12-14"
+"Michael","Hayden","263 Cloverly","Grosse Pointe Farms","MI","48236","(313) 886-7221","northpt1@aol.com","2","9","","","2003-12-30","2004-01-02","2003-12-15"
+"Janine","Braum","54363 Pocahontas Dr.","Shelby Twp.","MI","48315","586-786-0846","JBraum3@comcast.net","2","6","","We have two adults and 3 children. What would the grand total be?","2003-12-28","2004-01-02","2003-12-17"
+"chris ","robinson","","","","","","crob67@yahoo.com","1","6","","","2004-02-20","2004-02-23","2003-12-17"
+"","","","","","","","acatallo@beaumonthospitals.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"wendy","wilson","7400 windsor woods dr. Apt d-2","canton","michigan","48187","","wswilson40@aol.com","5","6","","","2004-01-16","2004-01-18","2003-12-21"
+"Scott","Lewless","5136 Dundee","Saginaw","MI","48603","989 792-8904","lewless@sbcglobal.net","1","6","","We would be interested in any 2-bedroom that is available if the ones with a loft are unavailable.  Also, what do you require for a deposit?","2004-03-05","2004-03-07","2003-12-22"
+"Dave","Rash","3305 Bewell Ave. S.E.","Lowell","MI","49331","","steelheadr64@aol.com","4","9","","","2003-12-29","2003-12-31","2003-12-24"
+"yasunori","shino","9658 ringle rd","findlay","oh","45840","419-422-1640","ykshino1@aol.com","2","6","i want with a jaguzzi room","","2003-12-28","2003-12-30","2003-12-25"
+"Mark","Guzzardo","27826 Ursuline","Saint Clair Shores","MI ","48081","734-341-4717","guzza1ma@cmich.edu","1","7","","","2003-12-30","2004-03-01","2003-12-27"
+"Cindy","Hynan","","","","","","chynan@misd.net","3","9","","Looking for 2 rooms at the size indicated OR one of the large 3 bedroom units.  Thank you.  Is there a tobaggon run also?","2004-02-13","2004-02-15","2003-12-28"
+"Patrick","Walsh","","","","","","p_walsh@sbcglobal.net","","","","","2009-02-10","2009-02-10","2009-02-10"
+"april","reem","","","","","","davidreem@aol.com","5","9","","Would like to know the rates for these dates.","2004-02-16","2004-02-20","2003-12-29"
+"sue","haack","1439 chanticlair circle","wixom","mi","48393","248-981-7236","suehaack@sbcglobal.net","4","4","","","2004-02-16","2004-02-18","2003-12-30"
+"Stephen","Koinis","","","","","","arsenalkicker@gmail.com","","","","","2009-05-22","2009-05-22","2009-05-22"
+"DIANE","SMITH","","","","","2696714374","DMSEBI@AOL.COM","5","0","","","2001-03-04","2001-04-04","2004-01-01"
+"fred ","Minturn","50 Renaud Rd, ","Grosse Pointe Shores","Mi","48236","3138856125","fredmsx@aol.com","1","4","","","2004-02-14","2004-02-17","2004-01-02"
+"Tony","Ross","1975 Tiverton Rd.","Bloomfield Hills","MI","48304","248-593-0373","tross@supersteeltreating.com","5","9","","","2004-02-13","2004-02-18","2004-01-04"
+"Lorri","Pebbles","62869 Hidden Pond Drive","Washington","MI","48094","","klpebbs@aol.com","4","4","","","2004-02-15","2004-02-17","2004-01-05"
+"James D","Velleman","1911 Alhambra Dr.","Ann Arbor","MI","48103","734-662-7857","velleman@umich.edu","5","6","","","2003-01-21","2003-01-23","2004-01-06"
+"Bruce","Baringer","","","","","","bbaringer@vesco-oil.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"","","","","","","","barberkms@yahoo.com","","","","","2009-06-03","2009-06-03","2009-06-03"
+"","","","","","","","gafleming1@cox.net","","","","","2009-06-04","2009-06-04","2009-06-04"
+"","","","","","","","aharder1791@wowway.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"Brian","Ferrilla","","","","","","bferrilla@wideopenwest.com","4","6","","","2004-02-16","2004-02-19","2004-01-06"
+"Jenni","Whitney","615 n Cass AVe","Vassar","MI ","48768","989-823-2709","jlfillhard@hotmail.com","",""," The Vassar Athletic Association is hosting our annual Reverse Raffle on February 20, 2010. During this raffle we will also have a live auction. We are wondering if your resort would be willing to donate an overnight package to our organization.\r
+The Vassar Athletic Association is a group of dedicated parents, coaches, community members that raise funds to help provide equiptment, uniforms, etc to athletic programs at Vassar High School. We provide what is not in the school districts budget. Your help would benefit many athletes at VHS. Thank you. \r
+","","","","2009-11-23"
+"Gary","Pitre","3248 Turnberry Lane","Port Huron","MI","48060","810-987-6988","pitre@comcast.net","0","6","","","2004-01-23","2004-01-25","2004-01-11"
+"Laura","Baker","5220 Belmonte Drive","Rochester Hills","Michigan","48306","248-891-2679","tomygrl564@aol.com","1","9","","Any two bed room place would work. I need a request soon. Thank you. ","2004-01-17","2004-01-19","2004-01-13"
+"Paul","Twa","16247 Pinewood","Spring Lake","MI","49456","616-842-2146","fivetwas@novagate.com","5","6","","","2004-01-02","2004-03-02","2004-01-15"
+"Angela","Quinn","703 Oxford Rd","Ypsilanti","MI","48197","734-483-3488","patangquinn@comcast.net","5","9","","","2004-01-22","2004-01-25","2004-01-16"
+"Michael","McCord","1591 Humphrey ave.","Birmingham","MI","48009","248-388-3132","mccordbmwm3@yahoo.com","2","7","","","2004-01-30","2004-01-02","2004-01-16"
+"jeffery","speweike","4627 hannaford dr","toledo","ohio","43623","419-471-9907","speweike@msn.com","0","9","","","2004-06-02","2004-08-02","2004-01-17"
+"Brittany","Waybright","6876 S Raber Rd.","Columbia City","Indiana","46725","260-396-2555","bwaybright@8020inc.com","0","6","","What would the total cost be for these three nights?","2004-02-19","2004-02-22","2004-01-19"
+"John ","Donatelli ","","","","","","jdonatelli8@hotmail.com","","","","","2009-02-10","2009-02-10","2009-02-10"
+"Rick ","Willis","29570 Armada Ridge","Richmond ","MI.","48062","","rickangelawillis@comcast.net","5","5","","two night stay, either February 15 & 16 or 28 & 29.","2004-02-15","2004-02-16","2004-01-20"
+"","","","","","","","barbjfletch@hotmail.com","","","","","2009-06-03","2009-06-03","2009-06-03"
+"lynn","uveges","34703 Huron River Dr.","New Boston","Michigan","48164","734-753-3105","lynn.uveges@oakwood.org","3","6","","","2004-02-06","2004-02-09","2004-01-20"
+"Laura","Michaud","7201 Driftwood Drive South","Fenton","Michigan","48430","810-750-8193","meshow4@chartermi.net","5","9","","","2004-02-13","2004-02-17","2004-01-20"
+"Lyle","Brooks","","","","","","bandman21@msn.com","","","","","2009-02-04","2009-02-04","2009-02-04"
+"jon","sutherland","1962 W. Liberty #11","Ann Arbor","MI","48103","734-649-5282","jonsouthman@netzero.com","0","3","we have been staying with you over the past several years, right about this time of year","","2004-02-16","2004-02-19","2004-01-21"
+"Bruce","Mattson","302 Central Ave.","Wilmette","IL","60091","8478531953","ty678@attbi.com","2","6","","","2004-02-12","2004-02-16","2004-01-25"
+"MaryJo","Taft","6025 Cramlane Drive","Clarkston","MI","48346","248-620-6290","mtaft02@comcast.net","5","8","internet search","","2004-03-03","2004-03-07","2004-01-25"
+"salvatore","ciaramitaro","901 moorland","grosse pointe woods","mi","48236","313-640-8994","sciaramita@aol.com","1","9","","","2004-08-01","2004-08-08","2004-01-26"
+"Janet","Skinner","52850 Florence Drive","Shelby Township","MI","48315","586 254-2943","skinner@msu.edu","3","9","Would need 2 beds in 2nd bedroom or else we could go with "2+" or 2 bedroom loft if that would get us that ...it's not that much more - what do you recommend?  It's mom and dad and two adult children.","We have stayed before - but have new address.  Thanks for your response.","2004-02-29","2004-03-02","2004-01-26"
+"Izzy","DiMaggio","","","","","","izzydimag@aol.com","","","","","2009-05-22","2009-05-22","2009-05-22"
+"Rebecca","Robinson","","","","","","ramr55@aol.com","","","","","2004-01-27","2004-01-27","2004-01-27"
+"Angie","Grabiec","11739 M-68","Onaway","Mi","49765","989-733-2011","engineering@moraniron.com","5","6","Christmas party for 86-10. 42-50 rooms.","Can we supply our own band. Please e-mail me menu and bar info. \r
+We would like the party catered and a bartender.","2010-12-11","2010-12-12","2010-01-25"
+"","","","","","","","gary.wichman@nationalcity.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Cara ","Bishop","1200 Spruce St.","Winnetka","IL","60093","(847) 441-6559","cbbishop@comcast.net","4","6","","","2004-08-15","2004-08-21","2004-04-07"
+"Nanci","Markowitz","","","","","","nm3djs@aol.com","0","6","","We are also interested in your homes for rent.","2004-08-07","2004-08-14","2004-04-08"
+"Barbara","Godzik","","","","","","bagodzik@earthlink.net","","9","","","2006-09-18","2006-09-18","2006-09-18"
+"Robin","Schmidt","2804 Graham Road","Imlay City","MI","48444","810-724-6416","rlds36@msn.com","3","6","","","2004-06-10","2004-06-13","2004-04-11"
+"Lynn","Compton","","","","","","lc@creditacceptance.com","5","6","","I am planning a summer trip for my family.  This will be 2 adults and 2 children (ages 10 and 5).  Please let me know if you have a weekly rate and what it is.  Also, are you near any beaches?  Thank you.","2004-06-20","2004-06-27","2004-04-13"
+"donna","booth","","","","","2485886924","donnab_944@msn.com","4","9","","","","","2004-04-13"
+"bob","krisniski","3838 Christopher","Brighton","MI","48114","810-220-2105","bobkris@comcast.net","3","9","We would like a unit in section 12 or 13 on the diagram map. We have stayed in this area before and really enjoyed it.","","2004-07-02","2004-07-06","2004-04-16"
+"marc","hackman","1944 dorchester","commerce twp","mi","48390","248-926-5621","hackman0521@yahoo.com","5","6","","","2004-06-28","2004-07-02","2004-04-21"
+"Greg","Kernosek","6520 Spring Meadows Lane","Plymouth","MI","48170","734 320 7619","gkernosek@envirosolutionsinc.net","5","9","","","2004-06-18","2004-06-20","2004-04-22"
+"","","","","","","","marcia@lambton.on.ca","","","","","2009-06-07","2009-06-07","2009-06-07"
+"","","","","","","","rfinch007@aol.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"jeanine","lunghamer","4849 east strong ct","orchard lake","mi","48323","248 343 4719","jeanine@lunghamer.com","0","4","We may be able to fit in a smaller unit.  Marian High School girls ski team would need lodging if the qualify for States.  We won't know if they qualify until 2/11.  Please quote a price. Thank you.","","2010-02-19","2010-02-22","2010-02-01"
+"Mark","Boothe","4364 Longmeadow Drive","Gurnee","Illinois","60031","847-625-8295","mboothe@lakecountypress.com","1","8","We are planning a trip with Rick Sabol and family who found out about your lodge. He thought you had openings the 1st week of August.  We would like our rooms to be close together if possible.  ","Please let me know pricing on the 2 bedroom with loft and also on the 3 bedroom with loft","2004-08-01","2004-08-07","2004-04-28"
+"Dennis","Krawzak","","","","","","denniskrawzak@sbcglobal.net","2","9","","We were at your location about five years ago. Rented a condo for one week. Do any have waher and dryers and are all units air conditioned. Are there any water front units","2004-07-31","2004-08-07","2004-04-28"
+"S","Crittendon","","","","","","CRITTENDONS366@dpdhq.ci.detroit.mi.us","1","9","","please give me a rate for using AAA. Are the prices per loft? Are there any package deals for a group of people or that include discounts for the loft and ski's? ","2004-11-12","2004-11-14","2004-05-05"
+"","","","","","","","benkay727@charter.net","","","","","2009-06-03","2009-06-03","2009-06-03"
+"Timothy","Dutcher","1517 Alta Vista Drive","Owosso","Michigan","48867","989 277-0542","timdutcher@michonline.net","2","9","","","2004-07-02","2004-07-05","2004-04-28"
+"Susan","Bauer","","","","","","suebauer@sympatico.ca","","","","","2009-11-24","2009-11-24","2009-11-24"
+"Cathy","Barry","8077 Hillside Lakes Place","Brighton","MI","48116","810-231-0041","mcbarry@chartermi.net","1","9","","we will need 3 condo's","2004-07-31","2004-06-08","2004-05-15"
+"Bryan","Copple","","","","","","bcopple@kumc.edu","5","6","","","2004-07-13","2004-07-19","2004-05-18"
+"Inyang","Telfair","","","","","","t_ekpe@yahoo.com","5","0","","","2004-07-02","2004-07-04","2004-05-18"
+"Dolores","Ribble","","","","","","doloresr@bserv.com","5","6","","can you give us the rates for the time requested and also the approximate distance to \r
+Birchwood Farm\r
+518 West Townline Road\r
+Harbor Springs, MI 49740\r
+With thanks","2004-01-10","2004-03-10","2004-05-20"
+"Thomas ","Demetriou","3360 Foss Drive","SAginaw","MI","48603","9897994433","karenkritz@hotmail.com","5","9","","","2004-02-07","2004-06-07","2004-05-24"
+"Michael","Wolfe","","","","","","mlwslw2@aol.com","5","8","","","2004-09-06","2004-11-06","2004-05-26"
+"Kristen","Nichols","900 Washington Rd.","Grosse Pointe","MI","48230","313 417-8414","kristennichols@comcast.net","4","3","","","2004-08-04","2004-08-06","2004-05-27"
+"Kim","Johnson-Crisanti","5109 Springbrook Rd.","Jackson","MI","49201","","kim.johnson@wafoote.org","5","6","also rate for 2bedbroom, 1bath","","2004-12-26","2004-12-30","2004-06-01"
+"","","","","","","","garychris624@hotmail.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Charlotte","Lane","162 Crestview Lane","Dyer","IN","46311","219-865-1962","ctlanefamily@yahoo.com","4","6","","","2004-07-19","2004-07-22","2004-06-06"
+"Jane","Goldberg","408 Woodbridge Drive","Grand Blanc","Michigan","48439","810-694-2091","jegoldberg@yahoo.com","0","8","","","2004-07-16","2004-07-19","2004-06-08"
+"Joyce","Yarnell","115 California Blvd.","Toledo","OH","43612","419-476-7497","Jtyarnell@aol.com","0","4","","1  Other options interested in:  2 bedroom/2 bath/loft or 2 bedroom/2 bath or 2 bedroom/2 bath + and 1 bedroom/1 bath\r
+2.  availablility & rates\r
+3.  Do you have any package deals for 3 or 5 nights?\r
+4.  We want non-smoking!\r
+\r
+We are looking forward to a prompt reply because this looks like a dream vacation for our family!","2004-07-26","2004-07-30","2004-06-12"
+"Elizabeth","Fraser","113 Echo Spring Circle","Trafford","PA","15085","412-856-7728","Fraser@ppg.com","5","4","","","2004-03-07","2004-06-07","2004-06-14"
+"Mohammed","Qureshi","","Farmington Hills","MI","","248.840.0184","ma_q@yahoo.com","1","5","","Hello,\r
+\r
+I am intersted in finding out if you have availability for July 16 - 18th for a group of about 30 in / around the Petoskey / Traverse City area. \r
+\r
+If you could please get back to me with rates / availability info, I would appreciate it much!\r
+\r
+Thanx! MQ","2004-07-16","2004-07-18","2004-06-14"
+"Lesley","Maier","658 W. Emerson","Seattle","WA","98119","206-963-8577","lesleym50@hotmail.com","5","6","","","2004-07-29","2004-07-31","2004-06-14"
+"Vickie","Kolpin","34883 Knoll Circle","Waseca","MN","56093","507-835-7780","kolpin1@mchsi.com","1","9","","","2004-07-27","2004-07-30","2004-06-16"
+"Judy","Stemley","4281 North Star Road.","New Weston","Ohio","45348","","njstem@bright.net","","","","","2004-06-17","2004-06-17","2004-06-17"
+"P","McClellan","","","","","","pmcclellan@ameritech.net","2","6","  ","Do you allow pets at any of your locations?Specifically, two small cats.","","","2004-06-20"
+"dave","abate","48597 tremont","MACOMB","mi","48044"," 586 598 4928","dsjem@comcast.net","4","9","","","2004-07-02","2004-07-04","2004-06-21"
+"Alicia","Blaney","527 Monroe St","Dolton","Il","60419","708-841-8171","hersheybsmooth@msn.com","5","6","","comment: we would probably arrive after midnight Friday night and would be leaving early Monday morning between 2am and 4am.","2004-07-02","2004-07-05","2004-06-21"
+"","","","","","","","margbrain@hotmail.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"","","","","","","","rflinn@korthaseflinn.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Judith","Church","2465 Pebble Ridge Ct.","Davison","MI","48423","810 658-2432","judithjlc@aol.com","5","9","","","2004-07-05","2004-07-10","2004-06-28"
+"David","Brendtke","","","","","","dbrendtke@yahoo.com","","6","","Did not get my confirmation in my email. Please confirm my email account.","","","2010-02-03"
+"Kimberly","Simon","","","","","","bckjsimon@yahoo.com","","","","","2009-02-04","2009-02-04","2009-02-04"
+"Kris","Lomas","","","","","","kmlomas@sbcglobal.net","","","","","2009-10-13","2009-10-13","2009-10-13"
+"Steve ","Fraley","1310 Upson Place","Kettering","Ohio","45409","937-296-9357","mfraley3@woh.rr.com","5","8","Dayton Daily News","","2004-07-17","2004-07-24","2004-07-05"
+"Deana","Koritnik","9811 Homestead Ridge Pkwy","Leo","Indiana","46765","260-627-0921","koritnid@ipfw.edu","3","6","","","2004-08-08","2004-08-10","2004-07-08"
+"Mony","Newton","752 Wilson st.","South Haven","MI","49090","269-637-4490","mamarnew@hotmail.com","5","6","","We could come 7/26-7/28 also.  ","2004-07-18","2004-07-21","2004-07-15"
+"Michael","Monahan","1328 Berkshire","Grosse Pointe Park","MI ","48230","","jem1020@comcast.net","1","9","","","2004-12-28","2005-01-01","2004-07-16"
+"denise","hall","21430 parker","farmington","mi","48336","248 476 0938","sublimejen6@yahoo.com","4","3","","","2004-08-10","2004-08-15","2004-07-18"
+"Brian ","Schindler","25745 Cook Road","Olmsted Falls","OH","44138","440-235-3268","bpsgoal@sbcglobal.net","0","8","","My family would need two of these units, preferably near to each other. Please let me know if you have units available on or about the dates above. Thank You !","2005-07-31","2005-08-06","2004-07-18"
+"David","Halloran","3612 Robinhood","Midland","MI","48642","9896000664","oasis009@yahoo.com","5","4","","","2004-07-25","2004-07-26","2004-07-19"
+"Vicki","Gorton","1558 Emerson Dr.","St. joseph","MI","49085","","gorton.family@sbcglobal.net","4","6","Also pricing on the 2 BR & Loft/ 2 bathrooms","","2004-12-22","2004-12-26","2004-07-22"
+"Jamie","Guise","4808 Oak Hollow Court","Dexter","MI","48130","7344267022","guise@chartermi.net","0","9","","","2004-09-03","2004-09-07","2004-07-26"
+"Kuyng & Pyo","Hong","","","","","","hongsook01@hotmail.com ","","","","","2009-02-10","2009-02-10","2009-02-10"
+"Julie","Schafer","8192 Hearthway Avenue","Jenison","MI","49428","6166670045","schafermom5@yahoo.com","5","5","","Can you please advise as to what condos are available for the time selected, and provide any pictures if you hav e them.  Thank you.","2004-09-29","2004-10-03","2004-09-01"
+"Ryan","Pietras","15736 Valerie Ct","Macomb","Mi","48044","","rpetey26@hotmail.com","0","9","Could you please send me an updated price and room information sheet so our group can decide on a week and book early so we can get the week we want! Thanks Ryan Pietras","","","","2004-09-27"
+"Jeanne ","Stierwalt","418 County Road 300N","Sadorus","IL","61872","","billsad@prairieinet.net","4","6","","","2004-12-19","2004-12-23","2004-10-16"
+"Ben","Robinson","76 Muskoka Road","Grosse Pointe Farms","MI","48236","313-333-1339","benyr@aol.com","4","9","","Please send pricing and availability for 2br 1 bath and 2 br 2 bath, 4 nights departing 1/2/05","2004-12-29","2005-01-02","2004-10-17"
+"Ron","Menges","2050 windsor pl","Findlay","oh","45840","","roarmenges@aol.com","0","6","could you please send info regarding 4 day golf packages.  Looking to set up a tripnest year.\r
+\r
+Thanks","","","","2004-10-21"
+"george","donnelly","28016 alger","madison heights","MI","48071-4548","248-542-8795","headgeo@yahoo.com","5","9","","","2004-11-25","2004-11-28","2004-11-08"
+"Debra","Katz","5467 Ardon CT","West Bloomfield","MI","48323","248.682.0271","lonkatz@comcast.net","4","9","","I am unable to open the reservations page to check availability.  Thanks","2004-12-29","2005-01-01","2004-12-16"
+"Thomas","Kilgore","541 S. Union","Parma","MI","49269","","tkilgore@hillsdaleschools.org","5","8","King with two-person jacuzzi","","2005-02-19","2005-02-20","2004-12-17"
+"jeffrey","rogowski","4457 helmond ct","TOLEDO","OHIO","42611","419-727-4480","jrogo99@toast.net","","9","","","2004-12-29","2004-12-30","2004-12-19"
+"Natalie","Escandon","P.O. Box 57","Richland","MI","49083","(269)629-9014","Natalando@aol.com","4","9","","","2004-12-27","2004-12-30","2004-12-19"
+"elizabeth","vandenbussche","356 mill pond lane","milford","mi","48381","2486858022","lvandenbussche@comcast.net","0","4","","we'd like a unit that we can WALK to the lift...do you have any? Thanks","2004-02-18","2004-02-21","2004-12-20"
+"Traci ","Morrill","4967 Lore Drive","Waterford","MI","48329","(248) 623-8972","morrillhouse@aol.com","2","9","","","2004-12-26","2004-12-28","2004-12-21"
+"Kim","Frisinger","15244 Forest Park","Grand Haven","MI","49417","616-842-2025","jkfri15244@chartermi.net","5","9","","","2005-01-28","2025-01-30","2004-12-21"
+"Jason","Hall","2346 Timberlee Dr.","Holland","MI","49424","616-836-1802","jhall@lamarconstruction.com","0","9","","Is the hot tub fixed?","2005-02-17","2005-02-20","2004-12-22"
+"Scott","Kosachuk","","","","","","kosachuk6@ameritech.net","4","8","","","2005-02-18","2005-02-20","2004-12-31"
+"steven","moerner","","","","","","steven.moerner@pioneer-usa.com","3","9","","","2005-02-11","2005-02-15","2005-01-03"
+"Tom","Siwajek","30612 Dowdy Lane","Chesterfield Twp.","Michigan","48051","586-749-7737","thomas.m.siwajek@jci.com","0","9","","","2005-01-27","2005-01-30","2005-01-03"
+"","","","","","","","maverickandgoose@verizon.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Frank","Sebest","","","","","","fsebest@yahoo.com","","","","","2009-10-16","2009-10-16","2009-10-16"
+"MARK","ZUCCARO","","","","","","jamzuc@comcast.net","0","7","","","2005-01-14","2005-01-17","2005-01-04"
+"Dan","Mitchell","","","","","","danmitchell23@hotmail.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Matt","Metzger","350 E. SR 14","Silver Lake","IN","46982","260-352-2689","matt@metzgertrucking.com","5","9","","<p>We are traveling to Harbor Springs on business and are looking for your rates.</p>","2005-07-04","2005-09-09","2005-03-30"
+"Judith","McLaughlin","","","","","","ejmac59@comcast.net","5","6","","Do you offer AAA or AARP discounts?","2005-01-14","2006-01-16","2005-01-06"
+"Rachel","Thomas","21101 Collingham","Farmington","MI","48336","248-542-5000 Wk","racheltvl@yahoo.com","0","5","","","2005-01-06","","2005-01-06"
+"Suzie","Kramer","255 First st","Olivet","MI","49076","269-749-9953","kramers@olivetschools.org","0","9","","","2005-02-05","2005-02-07","2005-01-08"
+"Ben","Chen","3981 Alemany Blvd. #302","San Francisco","CA","94132","661-860-4264","ben0714@hotmail.com","5","0","","","2005-01-15","2005-01-19","2005-01-09"
+"Melvin","Chuney","16845 Lawton","Detroit","MI","48221","","MRCJM31@aol.com","","","","","2008-12-15","2008-12-15","2008-12-15"
+"Anne ","McArdle ","","","","","","amcardle@harveykruse.com","0","6","","Please advise if this weekend in March is available.  Thank-you.  ","2010-03-05","2010-03-07","2010-02-05"
+"Kelly","Zelenak","14579 Huntington Drive","Plymouth","MI","48170","734-420-8043","zelenak4@netzero.net","1","9","","","2005-01-21","2005-01-24","2005-01-12"
+"Kevin","Long","1723 Ramsey Lane","Plainfield","IN","46168","317-839-6767","klong2@indy.rr.com","1","9","","","2005-02-18","2005-02-20","2005-01-13"
+"Steve","Brovont","3940 S rosebud Ct","Kentwood","Michigan","49512","6168229910","sbrovont@hotmail.com","5","9","","","2005-03-03","2005-03-07","2005-01-11"
+"kath","wag","21049","st. Clair Shores","mi ","48082","586-296-6339","talk2kwa@comcast.net","5","4","","","2005-02-11","2005-02-13","2005-01-15"
+"Theresa","Lindecker","16230 Harvest Spring","Macomb","MI","48042","5867819638","mtsklindy@yahoo.com","0","9","","","2005-02-17","2005-02-19","2005-01-17"
+"Anna ","Rea","1266 N. Glenhurst Dr.","Birmingham","Mi","48009","248-646-1619","anna.rea@tfienterprises.com","4","6","","We have twin 10 year olds and a 2 year old.","2005-02-15","2005-02-19","2005-01-19"
+"Ben","Dankert","","","","","","ben_dankert@yahoo.com","","","","","2009-02-04","2009-02-04","2009-02-04"
+"Jean","Atwood","2324 Bexley Park Road","Bexley ","Ohio","43209","614-329-9589","jmatwood11@aol.com","1","6","","","2005-02-11","2005-02-13","2005-01-22"
+"joelle","gallagher","1201N.oxford","grosse pointe","mi","48236","3138820050","gallagher2004b@netzero.net","5","9","","","2005-02-13","2005-02-15","2005-01-27"
+"CAROL","HOOD","","","","","","hugmom@comcast.net","4","9","","","2005-02-13","2005-02-16","2005-01-27"
+"becky","meader","34414 ann arbor tr","livonia","mi","48150","313-680-9035","rprovine@hotmail.com","5","7","","","2005-02-04","2005-02-06","2005-01-30"
+"Sean","Donnelly","","","","","","seantdonnelly@hotmail.com","","","","","2006-09-22","2006-09-22","2006-09-22"
+"Ron","Shepard","54358 Ashley Lauren","Macomb","Mi","48042","248-866-1929","shep-4@comcast.net","3","0","","","2005-02-17","2005-02-20","2005-01-31"
+"Ben","Robinson","","","","","","brobi@lssm.org","4","9","Could also do 1 br 1 bath unit.","","2005-02-13","2005-02-18","2005-02-03"
+"Deanne","Crowley","17 Rivertop","Lowell","MI","49331","616-897-2893","dcrowley@lowellschools.com","1","7","","","2005-02-18","2005-02-20","2005-02-03"
+"tom","drinkwater","15771 Cavanaugh lake Road","Chelsea","Mi","48118","734-433-0870","kdrinkwater3@yahoo.com","3","9","","Could we have one room with twin beds?","2005-02-18","2005-02-20","2005-02-03"
+"Michael","Kane","6421 Ridgepond Place\r
+","East Lansing","MI","48823","517 339-5780","mkane13@aol.com","3","9","","","2005-02-18","2005-02-20","2005-02-03"
+"David","Marshall","765 Bedford","Grosse Pointe Park","MI","48230","","marshalljd@comcast.net","1","6","","","","","2005-02-19"
+"Tim","Eckerle","","","","","","teckerle@prodigy.net","","6","","I have yet to receive my confirmation for my June 12 reservations.  Is there a problem?","","","2005-04-06"
+"Ed","Wilson","","","","","","flogers2@yahoo.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Scot","Ellsworth","11910 Schavey Rd","DeWitt","MI","48820","(517) 214-0151","scotemi@comcast.net","1","0","","We have stayed there in the past and would like to know about a 2 or 3 bedroom for the soccer weekend.\r
+I am also interested in potential investment/vacation purchase.\r
+Thanks, Scot","2005-06-17","2005-06-19","2005-05-23"
+"Jane","Thayer","","","","","","jmthayer@comcast.net","1","9","we are interested in renting for about 2 1/2 months.  Can you give us an idea of rates?\r
+Thanks!","","2005-11-18","2006-01-29","2005-10-16"
+"tom","williams","14002 Old Mill Circle","Carmel","IN","46032","3174287283","tawilliams@adesa.com","1","4","","","2005-12-27","2006-01-01","2005-11-26"
+"Joseph","Salisz","","","","","","jsmebk@comcast.net","","","","","2009-02-10","2009-02-10","2009-02-10"
+"Woodrow","LaCombe","","","","","","wwlacombe@wideopenwest.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Charlie","Zebell","","","","","","zebell@umich.edu","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Tammy","Oser","1505 Iron Liege Rd.","Indianapolis","IN","46217","317-882-9540","tsoser2@aol.com","4","6","","","2005-12-26","2005-12-29","2005-12-04"
+"Tim","Noble","5874 Bishop","LaSalle","ON","N9H 2K5","313 506 4095 (cell)","tinoble@alumni.uwaterloo.ca","5","9","","I would also like to know if you have a 3br available that could sleep 4 adults and 4 kids","2005-11-29","2006-01-01","2005-12-04"
+"kenneth","flaska","","","","","","kflaska@dmms.com","","9","","","2005-12-28","2006-01-01","2005-12-05"
+"Eugene Stickland","Eugene Stickland","224 Lawrence Road","New York","NY","11111","000-000-0000","Eugenestrickland89@gmail.com","","","Internet Marketing Services\r
+\r
+We would like to get your website on first page of Google.\r
+\r
+All of our processes use the most ethical "white hat" Search Engine Optimization techniques that Will not get your website banned or penalized.\r
+Please reply and I would be happy to send you a proposal.\r
+In order for us to respond to your request for information, please include your company’s website address (mandatory) and or phone number.\r
+","Internet Marketing Services\r
+\r
+We would like to get your website on first page of Google.\r
+\r
+All of our processes use the most ethical "white hat" Search Engine Optimization techniques that Will not get your website banned or penalized.\r
+Please reply and I would be happy to send you a proposal.\r
+In order for us to respond to your request for information, please include your company’s website address (mandatory) and or phone number.\r
+","","","2009-11-24"
+"Michael ","Zimmerman","1208 Willard St","Ann Arbor","Michigan","48104","516-652-4682","mazdogg@umich.edu","0","9","also would like info on 2 bedroom","","2005-01-19","2005-01-22","2005-12-18"
+"John","Brussee","3633 OakHarbor","Kalamazoo","Michigan","49009","269760-7481","jbrussee@superior-colour.com","0","9","We have 6-8 guys staying only one night.  We are skiing at Nubs.  Please let me know availability and pricing.","","2010-02-21","2010-02-21","2010-02-12"
+"Becky ","Baines","6010 Myers Lake Road","Rockford","MI","49341","616-874-4036","rbaines@mpcu.org","4","9","","","2005-02-24","2005-02-27","2006-01-12"
+"Tom ","Koperski","2550 Oakwood se","East Grand Rapids","mi","49506","616-862-18707","tkoperski@appliedimaging.com","0","7","","I am the parent for our EGR HS's ski team.  I am looking for options for our team if we make the state finals. 14 to 30 people not sure yet.  Please give me different options-rooms, beds, food available  thank you","2006-02-25","2006-02-25","2006-01-19"
+"Courtney ","Wheeler","PO Box 7884","Louisville","KY","40257","","courtdog_10@hotmail.com","5","7","We may want to leave on Monday  March 27, 2006 instead of March 26, 2006","","2006-03-24","2006-03-26","2006-01-31"
+"Kevin","Carr","2825 Bamlet Rd","Royal Oak","MI","48073","248-890-9936","kcarr143223@comcast.net","5","9","","","2006-02-23","2006-02-25","2006-02-07"
+"robert","ross","30514 knighton dr","farmington hills","mi","48331","2488192788","wrrechmd@pol.net","5","8","michigan.gov","what do you have available for this weekend? 2/17-2/20","2006-02-17","2006-02-20","2006-02-15"
+"Jerry","Dennis","206 Mill Race Dr","Winchester","Va","22602","540-323-8409","jerryd540@aol.com","1","4","","","2006-07-28","2006-08-03","2006-02-15"
+"Stefan","Geyer","1695 Winterstone Court","Dayton","OH","45458","937-885-0860","sfgeyer@woh.rr.com","2","7","","","2006-03-31","2006-04-04","2006-03-02"
+"John","Jaboro","48129 Beacon Square","Macomb","MI","48044","586-228-3243","majaboro@comcast.net","4","4","","","2006-07-17","2006-07-21","2006-03-22"
+"Julie","Kaempfer","45201 Jacob Drive","Novi","MI","48375","248-305-8408","pjkaempfer@aol.com","1","9","Interested in receiving information on units that are for sale.  Thanks.","","","","2006-03-27"
+"Bob ","Joyce","4388 Thunder bay","Clinton Township","Michigan","48038","586-286-5366","bjoyce@immlutheran.org","","9","interested in purchase of Condo","","","","2006-03-29"
+"Kristin","D'Angelo","32744 Greenwood Drive","Chesterfield","MI","48047","","dangelok@gdls.com","","9","","I would like to get prices for a group for the following accomodations.\r
+We are also interested in the Superbowl package.\r
+1- 3 bedroom loft\r
+5- 1 bedroom condos","2006-02-02","2006-02-04","2006-08-03"
+"barb","potter","","","","","","bbpotter@wowway.com","","9","","I want you to know that the condo we rented a few weeks ago was definitely not up to the standards we expect from Trout Creek.  Several fairly major problems existed there.  We were in unit 22.  Would you please contact me about repairs that need to be done to that unit.  It seems unconscionable that you rent a unit for $250.  a night without checking to see that it is really ready for occupancy.  It would seem that, after 10 or more years of renting from you, that we would be afforded some type of remuneration towards next years' rental, when several items needed to be fixed.  I would hope that you would see to the repair to the unit before others have to deal with these difficulties.  ","","","2006-08-03"
+"William","Clifford","606 St. Annes Court","Bowling Green","OH","43402","","wclifford@woh.rr.com","","4","","Could you please forward a list of condo's for sale? We would be interested in either a 2 or 3 bedroom unit. Thank you.","","","2006-08-14"
+"Adam ","Ragnoli","5883 Ridgewood Lane ","White Lake ","MI","48383","248-685-7371","Ragz2Richez132@aol.com","","8","","Do you have tennis courts one your property","","","2006-09-06"
+"Read","Ross","1118 Alexandria Drive","Lansing","Michigan","48917","517-321-2335","readcr@comcast.net","5","4","","Can't get into the info on availability on web site","2006-03-10","2006-06-10","2006-09-13"
+"Roderick","Coxon","","","","","","coxon5@msn.com","","","","","2006-09-18","2006-09-18","2006-09-18"
+"Mark ","Banbury","710 Plymouth Ave SE","East Grand Rapids ","MI","49506","6164582407","markbanbury@hotmail.com","2","9","","<p>Are there any dining facilities on site ? Food /tavern</p>","2007-08-06","2007-08-09","2007-07-02"
+"Thomas","Contrucci","","","","","","tcontrucci@wowway.com","","","","","2006-09-18","2006-09-18","2006-09-18"
+"","","","","","","","bhenning@pcs.k12.mi.us","","","","","2009-06-03","2009-06-03","2009-06-03"
+"K","Smith","","","","","","ksmith2@kraft.com","","","","","2006-09-20","2006-09-20","2006-09-20"
+"Charlene","Early-Powell","4281 Maryland","Detroit","MI","48224","","earlypowell@comcast.net","","","","","2008-12-15","2008-12-15","2008-12-15"
+"J","Godlewski","","","","","","oneofakind@wowway.com","","","","","2006-09-22","2006-09-22","2006-09-22"
+"","","","","","","","gcsgrazul@chartermi.net","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Ian ","Lindsey","","","","","","rlindsey1@cogeco.ca ","","","","","2009-02-11","2009-02-11","2009-02-11"
+"Greg and Denise","Coplai","","","","","","gregdenisecoplai@comcast.net","","","","","2006-09-08","2006-09-08","2006-09-22"
+"Deb","Bloomgren","","","","","","d_bloomgren@hotmail.com","","","","","2006-09-22","2006-09-22","2006-09-22"
+"Susan","Finniss-Schonlaw","","","","","","sfinniss@yahoo.com","","","","","2006-09-22","2006-09-22","2006-09-22"
+"Eve","Bazyleqicz","","Petaluma","CA","94952","707-762-8206","eve.bazy@sbcglobal.net","","","","","2004-07-09","2004-07-09","2004-07-09"
+"Geetha","Nair","","","","","","villi@comcast.net","","","","","2006-09-22","2006-09-22","2006-09-22"
+"Kristen","Machiniak","","","","","","kmach@wayne.edu","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Kim","McPhail","","","","","","kmcphail@xcelco.on.ca","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Kirk","Miller","","","","","","kmiller997@aol.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Larry","Koziana","","","","","","kozi1@mnsi.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"David","Petoskey","","","","","","kpetoskey111@comcast.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Owen","Maher","","","","","","kpmaher11@aol.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"","","","","","","","mavisdc@ameritech.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Karen","Recknagel","","","","","","krecknagel@comcast.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Kathy","Shannon","","","","","","kshannon@ameritech.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Kathleen","Zimmerman","","","","","","ksurgical@ameritech.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Craig","Lennon","","","","","","ncn46@aol.com","","","","","2006-08-22","2006-08-22","2006-09-22"
+"Kimberly","Vanderwiele","","","","","","kvdw@comcast.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Taikho","Cho","","","","","","kyesungind@yahoo.co.kr","","","","","2006-10-02","2006-10-02","2006-10-02"
+"","","","","","","","rgmeisel@sbcglobal.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Laura","Holmes","","","","","","laura@finelinecreative.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Lawrance","Wilhelm","","","","","","lawrencewilhelm@comcast.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"","","","","","","","smebius@comcast.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Amanda","Williams","","","","","","lcsanibel@aol.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Leah","Winiesdorffer","","","","","","lee_winie@yahoo.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Lucy","Thompson","","","","","","lthomson@columbus.rr.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Linda","Gipprich","","","","","","lgipp@sbcglobal.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Sandy","Lidiard","","","","","","lidiardn@netvision.net.il","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Elizabeth","Teraikian","","","","","","ljbetty@comcast.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Mark","Kent","","","","","","lmr@comcast.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Brian","Petterle","","","","","","Lpetterle@boothamerican.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Lisa","Gooel","","","","","","lsg823@aol.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Sandy","Wallin","","","","","","ltwallin@charter.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Henry","Lumbard","","","","","","lumbardh@msu.edu","","","","","2006-10-02","2006-10-02","2006-10-02"
+"","","","","","","","tlanchor@msn.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Lorraine","Yalman","","","","","","lyalman@comcast.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Robert","Smith","","","","","","maassamos@msn.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"","","","","","","","wsc1119@aol.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Elaine","Mahrle","","","","","","mahrle.e@netzero.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Michael","Mcllroy","","","","","","mamcilroymd@aol.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"David","Klamerus","","","","","","mandi_klamerus@yahoo.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Jason","Ohrt","","","","","","mandyohrt@hotmail.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Susan","Carbary","","","","","","mapacarbs@aol.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Terrance","Cieplucha","","","","","","maple1832@comcast.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Mara","Bauman","","","","","","mara@cpw.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Marie","Watson","","","","","","marie.e.watson@gm.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Mel & Margey","Siegel","","","","","","marjoriesiegel@gmail.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Shelly & Mark","Coleman","","","","","","mark.shelly.coleman@comcast.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"","","","","","","","biker.julia@hotmail.com","","","","","2009-06-03","2009-06-03","2009-06-03"
+"Kate","Veinbergs","","","","","","marlail@aol.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"","","","","","","","genemodrycki67@att.net","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Mary","Mora","","","","","","maryfmora@comcast.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"John","Hamilton","","","","","","marymoir@sbcglobal.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Mark","Bowman","","","","","","mbowman4@insight.rr.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Margaret","Buck","","","","","","mbuck@us.ibm.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Donald","Caponi","","","","","","mcaponi79@yahoo.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Sky","McBeth","","","","","","mcbeths@dteenergy.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Doug","McLaughlin","","","","","","mclaujd@verizon.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Cathy","Mclean","","","","","","mclean8@comcast.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Mike","Door","","","","","","mdoor@lettinga.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Margaret","Smith","","","","","","meathsmith@yahoo.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Tamara","Good","233 Dogwood","Canton","MI","48187","","tamaralgood@att.net","","","","","2008-12-15","2008-12-15","2008-12-15"
+"Melissa","Joseph","","","","","","melissaj73@comcast.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Mike","Kotwick","","","","","","mjkotwick@aol.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Mary","Thut","","","","","","METhut@aol.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Megan","Beyer","","","","","","beyermeg@msu.edu","","","","","2009-02-04","2009-02-04","2009-02-04"
+"Michael","Hantman","","","","","","mhantman@aol.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Susan","Holden","","","","","","mholdfam@netins.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Michael","Harley","","","","","","micbruhar@comcast.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Micheal","Smith","","","","","","michael.j.smith@gm.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Onofre","Llaneza","","","","","","michelle@yoyostudios.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Mary","Harper","","","","","","mike.harper@sympatico.ca","","","","","2006-10-02","2006-10-02","2006-10-02"
+"","","","","","","","mbkinsella@comcast.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Dennis","Buser","","","","","","dennisbuser@comcast.net","","","","","2009-02-12","2009-02-12","2009-02-12"
+"Michael","Jacobs","","","","","","mikejacobs@comcast.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Mike","Kowalski","","","","","","mikeski46@comcast.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"","","","","","","","rich.dubois.l8hb@statefarm.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Cecille","Mendoza","","","","","","mj523@comcast.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"","","","","","","","smgriffin6@yahoo.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"","","","","","","","tlipovsky@comcast.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"MaryBeth","Dennis","","","","","","upnative@lighthouse.net","","","","","2007-11-07","2007-11-07","2007-11-07"
+"Nancy","Mahrle","","","","","","mmahrle@valiantindustries.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"John","Vandenbossche","","","","","","mmvan08@hotmail.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Karen","Nusbaum","","","","","","mnusbaum@flexfab.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Robbie","Pastewski","","","","","","moneypit386@prodigy.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"John","Moose","","","","","","moose@elenas.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"","","","","","","","wwaugh@earthlink.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Victor","Motov","","","","","","motov@engineer.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Molly","Laethem","","","","","","mplaethem@aol.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Mary Ann","Ruddy","","","","","","mruddy10@yahoo.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Stan","Mogelnicki","","","","","","drmog@bellsouth.net","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Michael","Turner","","","","","","mturner810@aol.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Mufaddal","Kapadia","","","","","","mufaddalk@gmail.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Megan","Fulton","","","","","","mvfulton@hotmail.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Marielle","Weindorf","","","","","","mweindorf@datastat.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Cynthia","Lynn","","","","","","My_Charleyboy@yahoo.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Ronald","Nickerson","","","","","","nealnickerson@comcast.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Constance","Neubauer","","","","","","neubauer@butzel.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Angela","Neu","","","","","","neufamily1999@yahoo.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Nancy","Garrison","","","","","","ngarrison@cinci.rr.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Bev","Gross","","","","","","ngross8262@aol.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Neil","Kimball","","","","","","nkimball@mmbjlaw.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Nancy","Stern","","","","","","nlstern@ameritech.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Tim","Breen","","","","","","breentim@comcast.net","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Nicole","Wozniak","","","","","","nmwozniak@wowway.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Neil","Kahn","","","","","","NSKPC@aol.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Dexter","Curry","10010 Patton","Detroit","MI","48228","","toughworld28@aol.com","","","","","2008-12-15","2008-12-15","2008-12-15"
+"Jim","Olsen","","","","","","olsenjim@aol.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Tricia","O'Neal","","","","","","oneals@gmail.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Bill","Gass","","","","","","bgass@growdirect.com","","","","","2009-02-04","2009-02-04","2009-02-04"
+"Barry","Suitor","","","","","","only1bear@hotmail.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Joe","Opferman","","","","","","Opfermanj@comcast.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Patricia","Walsh","","","","","","patawal@comcast.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Paula","Kipp","","","","","","pakipp@ameritech.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Pam","Hankins","","","","","","Pamela.Hankins@stahls.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Ann Marie ","Fitch ","","","","","","amfinmuth@aol.com ","","","","","2009-10-26","2009-10-26","2009-10-26"
+"Christopher","Parr","","","","","","parr_c@hotmail.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Paul","Styles","","","","","","paul_styles@ameritech.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Patricia","Manley","","","","","","paus205@aol.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Pam","Myers","","","","","","pbmyers45068@yahoo.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Ron","Rzepecki","","","","","","rrzepecki@yahoo.com","","","","","2009-05-22","2009-05-22","2009-05-22"
+"Matthew","McPeak","","","","","","peakmc@yahoo.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Pearl","Goodemoot","","","","","","pearlrosew@hotmail.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"","","","","","","","billclu75@aol.com","","","","","2009-06-03","2009-06-03","2009-06-03"
+"","","","","","","","ges3960@verizon.net","","","","","2009-06-04","2009-06-04","2009-06-04"
+"","","","","","","","mcnoles@wowway.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"John","Ruicci","","","","","","PeterRuicci@hotmail.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Paul","Thomas","","","","","","pfthomas1@yahoo.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Phil","Hagerman","","","","","","phagerman@diplomatpharmacy.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Phyllis","Schoenherr","","","","","","phyllis@beavertile.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Louise","Jakubik","","","","","","pjakubik@comcast.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Paula","Johnson","","","","","","pjhark@msn.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Paul","Nowak","","","","","","pjn@seritis.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Paul","Johns","","","","","","pjohns3867@comcast.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Peggy & Dave","Watson","","","","","","pjwatson@umich.edu","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Paul","Kadesch","","","","","","pkadesch@comcast.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Pamela","Olson","","","","","","pko1@charter.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Christopher","Polovick","","","","","","polovicks@sbcglobal.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Kendra","Pond","","","","","","pondk@sbcglobal.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Daniele","Ferrari","","","","","","pontenure@sbcglobal.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Aaron","Ham","","","","","","ppd12ham@netscape.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Phyllis","Porea","","","","","","pporea1@buckeye-express.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Pat","Sellenraad","","","","","","psellenraad@sbcglobal.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"","","","","","","","richmallino@yahoo.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Peter","Stone","","","","","","pstone_foo@yahoo.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Putney","White","","","","","","putneyw@hotmail.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"","","","","","","","smw4639@gmail.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"","","","","","","","tll1007@yahoo.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Rhonda","Russ","","","","","","r.russ@comcast.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Robert","Pollice","","","","","","racapollice@yahoo.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Patricia","Randall","","","","","","Randall8790-2006@sbcglobal.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Randy","Stark","","","","","","randallstark@hotmail.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"","","","","","","","wymack@yahoo.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Roger","Trombley","","","","","","ratrombley@comcast.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Raymond","Hauck","","","","","","raymond.hauck@nebulascorp.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Cynthia","Bodziak","","","","","","rbojck@aol.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Richard","Duffy","","","","","","rduffy3@sbcglobal.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Tammy","Lord","","","","","","realesttam@aol.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Ronald","Lund","","","","","","relund@charter.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"David","Daldine","","","","","","ddaldine@wowway.com ","","","","","2009-10-30","2009-10-30","2009-10-30"
+"Roger","Roode","","","","","","rgrlrd@aol.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Richard","Archuleta","","","","","","richard.archuleta@comcast.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Richard","Huser","","","","","","rick.huser@thomson.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Rick","Schoonover","","","","","","rick@amanick.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Ann & Richard","Velez","","","","","","rjvamv@comcast.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Darlene","Algton","23230 Berkley","Oak Park","MI","48237","","dtaylorkidz1st@yahoo.com","","","","","2008-12-15","2008-12-15","2008-12-15"
+"Robin","Robinson","","","","","","RLRChelsea@aol.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Robert","Parent","","","","","","Rob9877@aol.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Robert","Heighes","","","","","","robert.heighes@emich.edu","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Robin","Partlow","","","","","","robinpartlo@gmail.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Chad","Robison","","","","","","robis1ca@cmich.edu","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Lisa","Hamilton","","","","","","rodlisah@comcast.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"John","Rogers","","","","","","rogersj@msu.edu","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Jo","Parker","","","","","","joparkerazo@yahoo.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Roberta","Beery","","","","","","rojobeery@aol.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"","","","","","","","billettesm@hotmail.com","","","","","2009-06-03","2009-06-03","2009-06-03"
+"Rae Ann","Rorah","","","","","","rrorah@netexp.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Judith","Samanich","","","","","","rsamanich@aol.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Ron","Simon","","","","","","rsimon101@hotmail.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"April","Tasco","","","","","","runner4180@comcast.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Russell","Smith","","","","","","russsmith@comcast.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Robert","Wender","","","","","","rwender@wenderandco.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Richard","Wendling","","","","","","rwendling@tkns.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Jule","Sawatzki","","","","","","wrsjas@chartermi.net ","","","","","2009-10-26","2009-10-26","2009-10-26"
+"Martha","Samson","","","","","","samltd2@hotmail.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Sue","Morgan","","","","","","sammom2@wowway.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Syed A.","Naqui","","","","","","sanaqvi51@hotmail.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Sandra","rdp","","","","","","sandraa@resortdata.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Sandra","Wolf","","","","","","sandy.a.wolf@gm.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Thierry","Ormancey","","","","","","santorma@comcast.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Tracy","Sargent","","","","","","sarge@sargentstitle.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Susan","Steinberg","","","","","","sbsteinberg@comcast.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Cindy","Davis","","","","","","bgstoner@verizon.net","","","","","2009-02-04","2009-02-04","2009-02-04"
+"Heidi","Schefferly","","","","","","schefferly@acd.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Scott","Cory","","","","","","scott.s.cory@gm.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Scott","Shefman","","","","","","scott.shefman@freg.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Scott","Vince","","","","","","scott.vince@cdsonline.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Clark","Phelps","","","","","","slscdp@aol.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Tracy","Labadie","","","","","","scrapbook030@yahoo.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Shannon","Price","","","","","","seprice@gmail.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Behroz","Ghandhi","","","","","","sfghandhi@yahoo.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Ray","Lubinsky","","","","","","sgallagher@stbkil.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Shabnam","Khan","","","","","","shabnamk2003@yahoo.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Becky","Treber","","","","","","treberb@michigan.gov","","","","","2009-02-12","2009-02-12","2009-02-12"
+"Ann Marie","Miller","","","","","","shannonparis@hotmail.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Dan & Sharon","Campbell","","","","","","sharongc@brktel.on.ca","","","","","2006-10-02","2006-10-02","2006-10-02"
+"","","","","","","","gfrederickson@jack-post.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Sherry","Mueller","","","","","","sherrymueller@wowway.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Aleatha","Hoff","","","","","","aleathahoff@sbcglobal.net","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Mary","Schmitz","","","","","","sixschmitz@sbcglobal.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Sebert","Kooima","","","","","","skooima@sio.midco.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Sherri","Meachum","","","","","","smeachum@schupan.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Chad","Griffin","","","","","","smgriffin3@excite.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Daniel","Hier","","","","","","smh48094@yahoo.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Terri","Smith","","","","","","smithfamily36@ameritech.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Ronald","Rybicki","","","","","","snowmandown@yahoo.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Christi","Sovis","","","","","","sovis@msu.edu","","","","","2006-10-02","2006-10-02","2006-10-02"
+"","","","","","","","binettekandp@comcast.net","","","","","2009-06-03","2009-06-03","2009-06-03"
+"Steve","Pfoser","","","","","","spfoser@earthlink.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Sylvia","Polenakovik","","","","","","spolen@pol.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Shari","Pollesch","","","","","","spollesch@bppattorneys.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Dawn","Maier","","","","","","spookymaier@comcast.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Stephen","Riebe","","","","","","sriebe@austin.rr.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Steve","Line","","","","","","srlbushmanjr@msn.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Diane","Heiss","","","","","","gheiss4863@msn.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Scott","Stoner","","","","","","sstoner@lipsonneilson.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Stacy","Strabbing","","","","","","stacystrabbing@yahoo.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Brian","Stange","","","","","","stangedom@comcast.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Rhonda","Stevens","","","","","","stevens82003@yahoo.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Michael","Czarniecki","","","","","","mczarniecki@ameritech.net","3","8","","","2010-02-28","2010-03-02","2010-02-17"
+"Lyle","Wolberg","","","","","","stonewolberg@yahoo.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Susan","Iaderosa","","","","","","strobel@juno.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Susan","Bresser","","","","","","susanbresser@msn.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Sue","Coates","","","","","","susancoates@msn.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Katie ","Minello","","","","","","katieminello@yahoo.ca","","","","","2009-02-12","2009-02-12","2009-02-12"
+"Roger & Susan","Short","","","","","","susanroger329@yahoo.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Suzanne","Schmidt","","","","","","suzannelschmidt@charter.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Suzanne","Gaboury-Norman","","","","","","suzi222@aol.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Kevin","Savage","","","","","","SvTimothy@aol.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Scott","Wolfe","","","","","","swolfe@lowis-gellen.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Steve","Syakovich","","","","","","sykoman@comcast.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Jim","Szlaga","","","","","","szlaga@sbcglobal.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Tim & Anne","O'Connor","","","","","","t1up4tim@yahoo.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Christine","Cherry","","","","","","taca@watchtv.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Tim & Chris","Joseph","","","","","","tajosef@umich.edu","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Akiko","Larson","","","","","","talarson4@cs.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Curt","Whitefield","","","","","","tasyd2@comcast.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Tonia","Stevens","","","","","","tatianastevens@yahoo.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Tammy","Guttman","","","","","","tcguttman@hotmail.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Timothy","MacIntyre","","","","","","tdmacintyre@hdp.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Christine","Burleigh","","","","","","cmburleigh@gmail.com ","","","","","2009-10-26","2009-10-26","2009-10-26"
+"Scott","Riga","","","","","","terryriga@hotmail.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"","","","","","","","jwag789@earthlink.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Tom","Henig","","","","","","thenig@aol.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"June","Thomas","","","","","","thomas.b1693@sbcglobal.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Mike & Ann","Thomas","","","","","","thomasfamily.mail@verizon.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Bradley","King","","","","","","thundersnowking@hotmail.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Angela","Thuringer","","","","","","thuringers@comcast.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Tim","Hain","","","","","","timhain@charter.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Cynthia & Timothy","Deneau","","","","","","timothy.deneau@comaupico.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Lori","Tirpak","","","","","","tirpak@oakland.edu","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Tom","Kahl","","","","","","tkahl@rossiassociates.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Anthony","Kueffner","","","","","","tkueffne@walbro.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Tom","Lopiccolo","","","","","","Tlopiccolo@bcbsm.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Tom","Mueller","","","","","","tmueller1@cogeco.ca","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Tim","Mundt","","","","","","tmundt3@comcast.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Todd","Truesdell","","","","","","toddtrues@yahoo.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Ken","Zielinski","","","","","","kfzielinski@aol.com","","","","","2008-12-17","2008-12-17","2008-12-17"
+"Tom","Stieber","","","","","","tom@postbars.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Mary","Jeakle","","","","","","tomandmary5@sbcglobal.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Niccole","Ganton","","","","","","snganton@att.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Todd","Pickornik","","","","","","tpickornik@ameritech.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Tram","Nguyen","","","","","","tram_nguyen@ml.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Team Thunderbolt","","","","","","","trhalsey@comcast.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Kathy","Schwartz","","","","","","trkins@adelphia.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Vonnie","Trumble","","","","","","TrumbleV@aol.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Todd","Rosa","","","","","","tsrosa@aol.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Tom","Todd","","","","","","ttodd@galloup.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Robert ","Tucker","","","","","","tucker01@stjohn.org","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Pam","Sackett","","","","","","tulikivi@msn.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Lynne","Rumford","","","","","","targettrng@aol.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Steven","Stoner","","","","","","twinsplussone@hotmail.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Jeff","Mudget","","","","","","umthebest30@charter.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Shelly","Lee","","","","","","vanetten@umich.edu","","","","","2006-10-02","2006-10-02","2006-10-02"
+"James E.","Bayne","","","","","","venturejim@msn.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Pauline","LaJoie","880 Snowdrift","Commerce Twp","Mi","48390","313-550-0075","pauline.lajoie@omnicare.com","5","9","Please e-mail me back a price","e-mail a price.............","2010-05-17","2010-05-19","2010-02-18"
+"Victor","Toral","","","","","","vicelsy@comcast.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Paul","Tarnas","","","","","","visionsoptical@hotmail.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Allan","Rodrigues","","","","","","vrodrix@comcast.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Nona","Watt","","","","","","wattn@indiana.edu","","","","","2006-10-02","2006-10-02","2006-10-02"
+"William J.","Desana","","","","","","wdesana@buckeye-express.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Jane","VanHouten","","","","","","weber7of7@comcast.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Unanell","Bone","","","","","","webid@sbcglobal.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Debbie","Willens","","","","","","willensdeb@aol.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Lois","Willious","","","","","","willietillie@aol.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Nancy","Burk","","","","","","wnburk@chartermi.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Pennie","Wolschlager","","","","","","wolsch@wowway.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"","","","","","","","bjreef@hotmail.com","","","","","2009-06-03","2009-06-03","2009-06-03"
+"Linda","Pickornik","","","","","","wpickornik@ameritech.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Richard","Williams","","","","","","wrichus48178@aol.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"William","Mason","","","","","","wrmason@royaloak.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Werner","Roennecke","","","","","","wroennecke@msn.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Yvonne","Hopp","","","","","","yhopp@provide.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"","","","","","","","Gjtaylor@mtu.edu","","","","","2009-06-04","2009-06-04","2009-06-04"
+"","","","","","","","jwaltjd@gmail.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"FuYin","Song","","","","","","zyumail@yahoo.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"","","","","","","","mcoates@novi.k12.mi.us","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Dan","Nolan","","","","","","nsanolan@aol.com","","6","","Did not yet receive e-mail coirmation for Nolan group ...2 bedroom for 12/27 and 28th","","","2006-10-07"
+"Wendy","Smith","","","","","","smithjwfam@yahoo.com","","","","","2006-10-09","2006-10-09","2006-10-09"
+"","","","","","","","gregory.w.schwepe@chase.com","","","","","2006-10-09","2006-10-09","2006-10-09"
+"Cheryl","Kennelly","","","","","","cherylkennelly@comcast.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Nancy ","Sergeant","","","","","","nsergeant@cranbrook.edu","","","","","2006-10-09","2006-10-09","2006-10-09"
+"Sally","Zeabari","","","","","","saddie721@comcast.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Rod ","McKnight","","","","","","rdnejm@aol.com","","","","","2006-10-09","2006-10-09","2006-10-09"
+"","","","","","","","rickynelsen@yahoo.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Steve","Edwards","","","","","","razsorbet@aol.com","","","","","2006-10-09","2006-10-09","2006-10-09"
+"","","","","","","","JGMcComas@comcast.net","","","","","2006-10-09","2006-10-09","2006-10-09"
+"Tracy","Dorman","424","Newark","OH","43055","740-920-4291","dorman424@roadrunner.com","","","","","","","2012-06-21"
+"Jennifer","Hunt","","","","","","the_huntz@hotmail.com","","","","","2006-09-18","2006-09-18","2006-09-18"
+"","","","","","","","kproctor99@comcast.net","","","","","2006-10-11","2006-10-11","2006-10-11"
+"","","","","","","","rnnickerson@comcast.net","","","","","2006-10-11","2006-10-11","2006-10-11"
+"","","","","","","","rajashreenat@hotmail.com","","","","","2006-10-11","2006-10-11","2006-10-11"
+"James","Avery","","","","","","jbobavery@aol.com","","","","","2006-10-11","2006-10-11","2006-10-11"
+"wendy","Juback","1683 Shristopher Drive","Canton","Mi","48187","734-968-0022","WendyJ@banksupplies.com","","","Would like unit 25 that I had last time . Also- can I get a bottle of wine for my girl friends birthday!!","","0209-05-14","2009-05-17","2009-01-08"
+"Jenn","Alonzo","","","","","","jenalonzo@sbcglobal.net","","","","","2006-10-11","2006-10-11","2006-10-11"
+"Ray","Fullerton","","","","","","rrf606@comcast.net","","","","","2009-02-12","2009-02-12","2009-02-12"
+"Larry","Metz","","","","","","metzljm@aol.com","","","","","2006-10-09","2006-10-09","2006-10-09"
+"","","","","","","","hydelarry@hotmail.com","","","","","2006-10-11","2006-10-11","2006-10-11"
+"","","","","","","","bjteahan@hotmail.com","","","","","2009-06-03","2009-06-03","2009-06-03"
+"Paul","Pajot","","","","","","paulpajot@yahoo.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"John & Julie","Coe","","","","","","sixcoe@aol.com","","","","","2006-10-09","2006-10-09","2006-10-09"
+"Judy","Griffey","","","","","","tjgriffey@columbus.rr.com","","","","","2006-10-11","2006-10-11","2006-10-11"
+"Jeanne","Wilhelmi","","","","","","jeannewilhelmi@hotmail.com","","","","","2006-10-11","2006-10-11","2006-10-11"
+"","","","","","","","gogreen1991@aol.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"","","","","","","","shzrogers@aol.com","","","","","2006-10-11","2006-10-11","2006-10-11"
+"Dottie","Britz","","","","","","jestaboy2002@yahoo.com","","","","","2006-10-11","2006-10-11","2006-10-11"
+"Neil","Shelvey","","","","","","workinstr@yahoo.com","","","","","2006-10-11","2006-10-11","2006-10-11"
+"","","","","","","","d.tardif2@verizon.net","","","","","2006-10-11","2006-10-11","2006-10-11"
+"","","","","","","","dfenske@wensco.com","","","","","2006-10-11","2006-10-11","2006-10-11"
+"Andrea","Garnek","","","","","","jajace@comcast.net","","","","","2006-10-11","2006-10-11","2006-10-11"
+"chele","kendall","","","","","","seachele@ameritech.net","","","Hi Debby, We are still inquring if the unit we rented (141) has 2 full baths? We are unable to locate it on your web site. We do need to full baths. I believe this is a 2 story condo right?\r
+ Thanks Chele Kendall","","","","2006-10-12"
+"James","","","","","","","jk48326@yahoo.com","","9","I cannot believe that you don't even try to hide the fact that your Zoo-de-mack 1-night special costs the same as any 2 nights.","","","","2010-04-07"
+"Katherine","Nowak","3428 Patcon Way","Hilliard","OH","43026","(614) 529-1989","kar170@hotmail.com","","7","We already have reservations for Dec. 28-30. There are 3 couples staying and I was wondering if you could please mail brochures and infromation on Nubs Nob to multiple addresses. \r
+\r
+Tom and Marti Ryan\r
+511 Ansonia \r
+Oregon, OH 43616\r
+\r
+Dave and Ellen Nowak\r
+5911 Bucher Road\r
+Whitehouse, OH 43571\r
+\r
+Katie and Brent Nowak\r
+3428 Patcon Way\r
+Hilliard, OH 43026","Can you also send us information regarding what linens/kitchen supplies are provided in the condos?","","","2006-10-15"
+"Paul","Kulik","","","","","","paulkulik11@comcast.net","","","What's the problem on accessing the owners portion ot hte website?","","","","2006-10-21"
+"Kim","JohnsonCrisanti","","","","","","kjohncris@comcast.net","3","7","","Your website will not let me go on make a reservation page or check rates.  It says no access.  ","2006-01-01","2006-01-04","2006-10-22"
+"Bruce","Ermatinger","2688 Ramblewood dr.","Kalamazoo","MI","49009","","bermatinge@aol.com","","7","","Could I learn more about unit #142 which is currently for sale?","","","2006-10-22"
+"Debra","Lanthier","7981 Bedau Street","Montague","MI","49437","231-894-8851","jlant68455@aol.com","0","","We will need two of the condo's above,","I inquired earlier about the Superbowl Weekend Special for 2007.  We stayed with you in 2006.  You provided me with two 3 bedroom & loft, 2 bathroom units that were available in the same building for that weekend.  I have talked with "the family" and we want to go ahead and make our reservations.  Can you please provide me with the two condo numbers that are in the same building so that we can be sure to reserve the correct units?  Thanks!","2007-02-02","2007-02-05","2006-10-29"
+"Robert","Lockwood","","","","","","Rbloc3@aol.com","","8","MLS search","Do you have more photos of the house at 164 Trout Creek? We are planning to purchase a home in Harbor Springs in March 2007. Thank you.\r
+Bob & Cinda Lockwood\r
+5075 E. Shiprock St.\r
+Apache Junction, AZ.\r
+85219-9694","","","2006-11-08"
+"Dean","Rivard","12163 US 23 South","Ossineke","Michigan","49766","(989)471-9179","deanrivard@chartermi.net","6","6","I am curently planning a ski trip for approximately 10-12 people. Please send me rates for your condos and let me know what this includes. we are looking at a 2 day trip so please include the difference for mid week versus weekend prices. Also include prices for the different times of year during the ski season. Thank you!","","","","2006-11-13"
+"Lorie","Marvin-Price","","","","49770","231-347-9865","mx-mom@voyager.net","","","Debbie,\r
+Have Scott try again to contact us.\r
+or have him call Bill directly at 231-347-2318\r
+It was good to see you at open house.\r
+Have a Merry Christmas and a happy New Year!\r
+Lorie & Bill Price","","","","2006-12-01"
+"Karrie","Keen","9341 White Pine Ct.","Linden","MI","48451","810.735.1746","ckeenu@hotmail.com","5","6","","","","","2006-12-05"
+"Mike","","","","","","","msyounce@juno.com","","2","","Do you have any units with a wet sauna along with the jacuzzi and fireplace.","","","2006-12-06"
+"David","Dumelle","288 Deepwood Drive","Chesterton","In","46304","2199268112","dcdumelle@comcast.net","4","6","","I'm trying to plan a small family vacation. We would like to arrive late Thursday and leave late Sunday. We don't have a date in mind yet but we would like to rent snowmobiles one day and ski another.\r
+Can you please provide openings in late January to early February also snowmobile rental information? How close are you to Boyne? Thanks\r
+","","","2006-12-09"
+"Tonie","Owens","11520 Heatherwood Circle","Taylor","MI","48180","7342873108","tonieowens2000@hotmail.com","6","9","","","2007-01-25","2007-01-28","2006-12-12"
+"wendy","Juback","1683 christopher Drive","Canton","Mi","48188","734-968-0022","Wendyjuback@yahoo.com","",""," would like to get unit 25 with the Mouse","","2008-09-25","2008-09-28","2008-08-11"
+"","","","","","","","bobkushler@comcast.net","","","","","2009-06-03","2009-06-03","2009-06-03"
+"John"," Phelan","","","","","","quibby23@comcast.net","","","","","2009-07-17","2009-07-17","2009-07-17"
+"","","","","","","","jzbown@hotmail.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"John","Nguyen","","","","","248-505-0089","thvt1970@gmail.com","","","","","2013-05-25","2013-05-27","2013-05-14"
+"Jeramie","","","","","","","jeramieslee@hotmail.com","","4","","I used to live near harbor springs but moved near Novi,MI. I trying to create a plan to move my family and I back to northeren MI. I am wondering if you have any openings or a managed maintenece program for your property. I will send a resume if you wuold like.Please feel free to email me. (jeramieslee@hotmail.com)","","","2007-01-11"
+"Sandy","Ashley","","","MI","","","sandyashley1278@yahoo.com","5","6","","Is the pool and hot tub usable during winter?","2007-09-03","2007-11-03","2007-01-17"
+"Brian","Pencak","1097 Cedar Crest","Crystal Lake","IL","60014","815-404-4749","bpencak@aol.com","6","9","We have stayed at Trout Creek for over 10 years now for a annual family vacation, usually the reservation is under my in-law's name, Ed Rago.  Can you please let me know what the availability is for Unit 02 is in late June thru early Aug time frame is, we would like 3-5 nights.\r
+Thank you.","","","","2007-01-19"
+"Steel","Pam","","","","","","bill@bardhvac.com","","","","","2009-02-04","2009-02-04","2009-02-04"
+"Robert ","Bickley","","","","","","aabics@comcast.net","","","","","2007-01-19","2007-01-19","2007-01-19"
+"Abigail","Harma","","","","","","abby_harma@hotmail.com","","","","","2007-01-19","2007-01-19","2007-01-19"
+"Anju","Brodbine","","","","","","abrodbine@aol.com","","","","","2007-01-19","2007-01-19","2007-01-19"
+"Andriy","Chelniak","","","","","","achelniak@comcast.net","","","","","2007-01-19","2007-01-19","2007-01-19"
+"Nicholas","Adams","","","","","","adams277@comcast.net","","","","","2007-01-19","2007-01-19","2007-01-19"
+"R","Fanone","","","","","","rfanone@comcast.net","","","","","2009-05-22","2009-05-22","2009-05-22"
+"Richard","Groff","","","","","","agrelli@aol.com","","","","","2007-01-19","2007-01-19","2007-01-19"
+"Alexandra","Mccort","","","","","","ajanemcc@aol.com","","","","","2007-01-19","2007-01-19","2007-01-19"
+"Anna","Williams","","","","","","annam_williams@comcast.net","","","","","2007-01-19","2007-01-19","2007-01-19"
+"Anne","Beck","","","","","","annebeck@peoplepc.com","","","","","2007-01-19","2007-01-19","2007-01-19"
+"Arlin","Hunsberger","","","","","","arlinhunsberger@comcast.net","","","","","2007-01-19","2007-01-19","2007-01-19"
+"Jenna","Soriano","","","","","","ay5214@wayne.edu","","","","","2007-01-19","2007-01-19","2007-01-19"
+"Bill and Jeanne","Romero","","","","","","bandjromero@hotmail.com","","","","","2007-01-19","2007-01-19","2007-01-19"
+"Katie","Barlow","","","","","","barlowk@msu.edu","","","","","2007-01-19","2007-01-19","2007-01-19"
+"Casey","Harvey","","","","","","caseyh@lighthouse.net","","","","","2007-11-07","2007-11-07","2007-11-07"
+"Joan","Farrar","","","","","","joanfarrar@sbcglobal.net","","","","","2009-10-21","2009-10-21","2009-10-21"
+"Thomas","Jordan","","","","","","bdjordan86@aol.com","","","","","2007-01-19","2007-01-19","2007-01-19"
+"Jean Marie","Moffa","","","","","","bedervis@aol.com","","","","","2007-01-19","2007-01-19","2007-01-19"
+"Alan","Berkowitz","","","","","","berk10@aol.com","","","","","2007-01-19","2007-01-19","2007-01-19"
+"Avital","Granot","","","","","","bgranot@ameritech.net","","","","","2007-01-19","2007-01-19","2007-01-19"
+"Bill","Wolowich","","","","","","bill@surreydigital.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Donna","Johnson","","","","","","biondojohnson@comcast.net","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Jack and Barbara","Kahrnoff","","","","","","bkk84@aol.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"","","","","","","","mdlinderman@gmail.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Larry ","Rubin","","","","","","blake52@aol.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Brian ","Line","","","","","","bline4@yahoo.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Joseph","Berenholz","","","","","","blofish99@aol.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Robert","Mellinger","","","","","","bmmellinger@hotmail.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Robert","Sornson","","","","","","bobsornson@aol.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"","","","","","","","rjkwhite@verizon.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"","","","","","","","snooks15@aol.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"","","","","","","","tmccjr@yahoo.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Brad","Licata","","","","","","bradlic@aol.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Laura","Brahce","","","","","","brahce@sbcglobal.net","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Brian","Campbell","","","","","","brian.campbell@dsm.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Bonnie","Hagler-Boyd","","","","","","brindle8@aol.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"","","","","","","","ymorris@hotmail.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Jim","Guthrie","224 Lawrence Road  ","New York","New York","11111","000-000-0000","jimgonzalez25@gmail.com","6","1","Internet Marketing Services\r
+\r
+\r
+We would like to get your website on first page of Google.\r
+\r
+All of our processes use the most ethical "white hat" Search Engine Optimization techniques that will \r
+not get your website banned or penalized.\r
+\r
+Please reply and I would be happy to send you a proposal.\r
+","Internet Marketing Services\r
+\r
+\r
+We would like to get your website on first page of Google.\r
+\r
+All of our processes use the most ethical "white hat" Search Engine Optimization techniques that will \r
+not get your website banned or penalized.\r
+\r
+Please reply and I would be happy to send you a proposal.\r
+","","","2009-06-13"
+"Anthony","Brower","","","","","","browersix@aol.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Bruno","Trentacost","","","","","","brunotrent@aol.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Hunt","Pennie","2283 N. State Rd.","Harbor Springs","Mi","49740","810-434-0685","cajspicehunt@aol.com","5","4","","I was wondering if we could have a special rate since my family will be in during off season?","2010-04-02","2010-04-04","2010-03-08"
+"Ber","Block","","","","","","bwblock@tds.net","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Barb","Widener","","","","","","bwidener@comcast.net","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Barbara","Yamanishi","","","","","","byamanishi@yahoo.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Shelley","Wright","","","","","","calliekay@aol.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Charles","Bell","","","","","","bells1968@aol.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Carol","Perschbacher","","","","","","cap414@hotmail.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Carmen","Clark","","","","","","carmenc@cisco.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Chester","Defore","","","","","","ccd4@sbcglobal.net","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Claire","Crowley","","","","","","ccrowley@netpenny.net","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Carole","Eppler","","","","","","ceeppler@yahoo.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Leslie","Chaney","","","","","","chaneyray@aol.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Cynthia","Holme","","","","","","chholme@aol.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Chris","Oster","","","","","","chris.oster@gm.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Christine","Simone","","","","","","chrismarcsimone@comcast.net","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Christine","Harris","","","","","","christine.harris@gpschools.org","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Jill","Clark","","","","","","clarksoncolette@comcast.net","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Cathie","Taylor","","","","","","cls19801@hotmail.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Alycia","Williams","","","","","","alyciamwilliams@yahoo.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Angela","Furst","","","","","","tremonti5@att.net","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Colleen","Edmonds","","","","","","colled01@aol.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Christine","Sarver","","","","","","csarver@domesticuniform.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"David ","Daniels","","","","","","cyndi_daniels@comcast.net","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Daniel","Brudzynsky","","","","","","dab0188@yahoo.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Nicole","Meier","","","","","","nicoleautogrill@sbcglobal.net","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Robert","Mellin","","","","","","bmellin@pnc.edu","","","","","2009-02-04","2009-02-04","2009-02-04"
+"Tom","Mulready","","","","","","tommyshins@hotmail.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Lynne","Watkosski","","","","","","dalewat1@aol.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Debra","Williams","","","","","","dave44941@aol.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"","","","","","","","grahamfamily7@yahoo.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Dennis","Howe ","","","","","","dhowe@mason.k12.mi.us","","","","","2009-10-13","2009-10-13","2009-10-13"
+"","","","","","","","k.brant@coldwellbanker.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Dan","Bodine","","","","","","dbodine@wideopenwest.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Jean","Conflitti","","","","","","flygirljean11@hotmail.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Denise","Byrne","","","","","","dbyrne1215@wowway.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Douglas","Christensen","","","","","","dchristensen@amerigistics.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Dennis","Cole","","","","","","dcole108@yahoo.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Debbie","Jack","","","","","","ddjack123@aol.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Debby","Lesser","","","","","","dfrankint@aol.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Doug","Salowich-Palm","","","","","","dhuntersp@aol.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Denise ","Russell","","","","","","diamondjob@aol.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Ken and Diane","Matheis","","","","","","dianematheis@comcast.net","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Diane","Tayler","","","","","","dianetayler@aol.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Doug","Karsch","","","","","","djkarsch@cbs.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"","","","","","","","meadsara@msu.edu","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Kelly","Holmes","","","","","","dkd6310@aol.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Debbie","Bressman","","","","","","dlbress@aol.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"David","Campbell","","","","","","dnc11490@comcast.net","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Yuliyan","Donchev","","","","","","donchev@sbcglobal.net","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Donna","Carnago","","","","","","donnacarnago@aol.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"","","","","","","","rke511@yahoo.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"","","","","","","","sozimek@lightingsupply.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Douglas","Flechsig","","","","","","dougmichigan@aol.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Douglas","Roche","","","","","","dougrochejr@aol.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Debi","Broadwell","","","","","","dpbroadwell@yahoo.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Tom","Lawrence","","","","","","dredgemantommy@yahoo.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Andrew","Smith","","","","","","drewsmith22@hotmail.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"David","Haney","","","","","","drh2776@aol.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Elise","Levinson","","","","","","drmarty6@aol.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Kurt","Drufke","","","","","","drufke16088@comcast.net","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Deborah","Schommer","","","","","","dschom921@aol.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Deborah","Strautz","","","","","","dstrautz@twmi.rr.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Daniel","Weller","","","","","","dweller@ic.net","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Jennifer","Bittner","","","","","","dzjlb@netscape.net","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Elizabeth","Duffy","","","","","","elizabethaduffy@sbcglobal.net","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Eric","Maurer","","","","","","emaurer@postique.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Ted","Emch","","","","","","emch@aaps.k12.mi.us","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Mike","Warznie","","","","","","warznie@sbcglobal.net","","","","","2009-10-21","2009-10-21","2009-10-21"
+"Lori ","Fenton","","","","","","fentonhike@aol.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"","","","","","","","k banddow@dow.com","","","","","2010-03-08","2010-03-08","2010-03-08"
+"Jackie","Finegan","","","","","","finfamily1@comcast.net","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Ellen","Tomski","","","","","","fouryos1et@aol.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Michael","Jurek","13751 Victoria","Oak Park","MI","48237","(248) 821-4448","mjurek01@yahoo.com","","","","","","","2010-04-08"
+"Mike","McCann","3679 Canary Way","Eagan","MN","55123","612-209-6606","mmccann@travelers.com","","8","Petoskey soccer tournament","I have an interest in finding out more about housing our U-17 girls soccer team.  We are from Eagan, MN.  We would have approximately 16 families ranging from 2 to 6 members each.  Please send me specifics on how past soccer weekend worked and what promotions are available it everyone stayed on premises.  Also, how far is your resort from the soccer playing fields?  I appreciate your response.\r
+\r
+Mike McCann\r
+U-17 Eagan,MN Girls Soccer","2009-06-18","2009-06-21","2009-01-12"
+"","","","","","","","bpaterick@yahoo.com","","","","","2009-06-03","2009-06-03","2009-06-03"
+"","","","","","","","greglenting@sbcglobal.net","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Suzanne","Grazul","","","","","","gcs4azul@aol.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Virginia","Icart","","","","","","ginny4464@aol.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Greg","Labun","","","","","","glabun2002@sbcglobal.net","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Pamela","Morrison","","","","","","greathair78@aol.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Greg","Campbell","","","","","","greg@westcottdisplays.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Harold","Klee","","","","","","h.klee@sbcglobal.net","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Adrian","Rogier","","","","","","highland@siua.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Margaret","Proctor","","","","","","mprocter49@hotmail.com","","","","","2007-11-21","2007-11-21","2007-11-21"
+"Dean","MacKenzie","","","","","","homedad04@yahoo.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"","","","","","","","kadtree@comcast.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"","","","","","","","mfw@mechanova.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Bonnie","Allor","","","","","","huntingh20@comcast.net","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Matthew","Egan","","","","","","ilykcornonthecob@msn.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Richard","Johnston","","","","","","isoready@aol.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Jack","Turk","","","","","","jackturk06@comcast.net","","","","","2007-01-20","2007-01-20","2007-01-20"
+"James","Pelland","","","","","","james@pellandlaw.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Jeff","Braziunas","","","","","","jbraziun@gmail.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"William","Cooke","","","","","","jchristensen-5@msn.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Bonnie","Keen","","","","","","jckeen@umich.edu","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Jim","Dales","","","","","","jdales@dales-gs.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Jeff","Csikasz","","","","","","jeffandlaurene@sympatico.ca","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Jennifer","Mercier","","","","","","jennifer.mercier@gmail.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Jenny","Murray","","","","","","jennmarie8675@hotmail.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Jessica","Kurylowicz","","","","","","jessica.kurylowicz@opco.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Jo","Gallagher","","","","","","jgalls77@aol.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"David","Halsey","","","","","","jhalsey@umich.edu","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Jim","White","","","","","","jim.white@ubs.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Kim","Laski","","","","","","jlaski@comcast.net","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Jack","Mccarthy","","","","","","jm0506@comcast.net","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Joel","McUmber","","","","","","jmctune@aol.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Cathy","Dulin","","","","","","jmdski22@aol.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Kimberly","Forystek","","","","","","mcgilteach@aol.com","","","","","2007-01-27","2007-01-27","2007-01-27"
+"Thomas","Miller","","","","","","joe_miller7@excite.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"John","Potucek","","","","","","johnmonp@aol.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Scott","Gilbert","","","","","","gibstracity@hotmail.com","","","","","2009-05-22","2009-05-22","2009-05-22"
+"Joshua","Hernandez","","","","","","joshua.t.hernandez@gmail.com","","","","","2007-01-23","2007-01-23","2007-01-23"
+"Jon","Long","","","","","","jplong3999@hotmail.com","","","","","2007-01-23","2007-01-23","2007-01-23"
+"Jeanne","Seyfried","","","","","","jseyfried@comcast.net","","","","","2007-01-23","2007-01-23","2007-01-23"
+"Jim","Tyler","","","","","","jst9999@aol.com","","","","","2007-01-23","2007-01-23","2007-01-23"
+"Robert","Morris","","","","","","bobmorris07@yahoo.com","","","","","2009-02-04","2009-02-04","2009-02-04"
+"Julia","Erickson","","","","","","juliaburns77@yahoo.com","","","","","2007-01-23","2007-01-23","2007-01-23"
+"Mat","Zajac ","","","","","","mzajac@att.net","","","","","2009-10-13","2009-10-13","2009-10-13"
+"Kelly","Craig","","","","","","kacraig08@yahoo.com","","","","","2007-01-23","2007-01-23","2007-01-23"
+"David & Michele","Kaplan","","","","","","kaplmom@aol.com","","","","","2007-01-23","2007-01-23","2007-01-23"
+"Kathleen ","Ryan","","","","","","KathRyan@aol.com","","","","","2007-01-23","2007-01-23","2007-01-23"
+"Katherine","Wheeler","","","","","","kathyw6378@yahoo.com","","","","","2007-01-23","2007-01-23","2007-01-23"
+"George","Gilin","6522 Ellinwood","White Lake","MI","48383","248-417-2952","marilyngilin@hotmail.com","","","We stayed here early Dec. and lost a pin.  Its gold, round with a ski patrol cross in the center.  Please call if found.","","","","2007-01-26"
+"","","","","","","","bpbowler11@aol.com","","","","","2009-06-03","2009-06-03","2009-06-03"
+"Ken","Falat","","","","","","kenfalat@comcast.net","","","","","2007-01-26","2007-01-26","2007-01-26"
+"Gina & Kurt","Hoenshield","","","","","","kgh1651@comcast.net","","","","","2007-01-26","2007-01-26","2007-01-26"
+"Kathleen","Griffiths","","","","","","kgriffiths@cch.org","","","","","2007-01-26","2007-01-26","2007-01-26"
+"Kathleen","Wortham","","","","","","khallett77@yahoo.com","","","","","2007-01-26","2007-01-26","2007-01-26"
+"Kim","Offenburger","","","","","","kimoff@hcis.net","","","","","2007-01-26","2007-01-26","2007-01-26"
+"Kristen","Yakamovich","","","","","","kmyakamovich@hotmail.com","","","","","2007-01-26","2007-01-26","2007-01-26"
+"Kevin","Smith","","","","","","kpsmith01@comcast.net","","","","","2007-01-26","2007-01-26","2007-01-26"
+"Michelle","Nelson","","","","","","krinel@umich.edu","","","","","2007-01-26","2007-01-26","2007-01-26"
+"Kim","Bell","","","","","","kim@reptileindustries.com ","","","","","2007-01-23","2007-01-23","2007-01-23"
+"Leo","Marcy","","","","","","l.marcy@att.net","","","","","2007-01-26","2007-01-26","2007-01-26"
+"Joe","Milauckas","","","","","","lsr@wmol.com","","","","","2007-01-27","2007-01-27","2007-01-27"
+"Stephen","LaCommare","","","","","","lacommare@hotmail.com","","","","","2007-01-26","2007-01-26","2007-01-26"
+"","","","","","","","karencolvill@comcast.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Doug","Burkholder","","","","","","dougburkholder@ymail.com ","","","","","2009-10-16","2009-10-16","2009-10-16"
+"James","Lee","","","","","","leemar@chartermi.net","","","","","2007-01-26","2007-01-26","2007-01-26"
+"Denise","Arnos","","","","","","lettersrbest@buckeye-express.com","","","","","2007-01-26","2007-01-26","2007-01-26"
+"","","","","","","","mg_neumayr@yahoo.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Lisa","Grieb","","","","","","lisagrieb@wowway.com","","","","","2007-01-26","2007-01-26","2007-01-26"
+"Laurie","Banks","","","","","","ljbanks1012@hotmail.com","","","","","2007-01-26","2007-01-26","2007-01-26"
+"Laura","Marchin","","","","","","lmarchin@donerus.com","","","","","2007-01-26","2007-01-26","2007-01-26"
+"Linda","Barbour","","","","","","lsbarbour@aol.com","","","","","2007-01-26","2007-01-26","2007-01-26"
+"Leila","Weber","","","","","","lweber@pennlife.com","","","","","2007-01-27","2007-01-27","2007-01-27"
+"Lauren","Wood","","","","","","lwood@ci.birmingham.mi.us","","","","","2007-01-27","2007-01-27","2007-01-27"
+"Melissa","Bistodeau","","","","","","mabistodeau@msn.com","","","","","2007-01-27","2007-01-27","2007-01-27"
+"Margaret","Brouwer","","","","","","margaretbr20@hotmail.com","","","","","2007-01-27","2007-01-27","2007-01-27"
+"Mary Beth","Accivatti","","","","","","maryba@sbcglobal.net","","","","","2007-01-27","2007-01-27","2007-01-27"
+"David","Decaminada","","","","","","decon52@hotmail.com ","","","","","2009-10-20","2009-10-20","2009-10-20"
+"Margret","Biggs","","","","","","mbiggs206@yahoo.com","","","","","2007-01-27","2007-01-27","2007-01-27"
+"","","","","","","","spearritt@sbcglobal.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Mary ","Fedewa","","","","","","mbthomas21@yahoo.com","","","","","2007-01-27","2007-01-27","2007-01-27"
+"Debra","McKeown","","","","","","mckeowns@voyager.net","","","","","2007-01-27","2007-01-27","2007-01-27"
+"Maureen","Thorrez","","","","","","mcthorrez@comcast.net","","","","","2007-01-27","2007-01-27","2007-01-27"
+"Michelle","Wolfe","","","","","","michellerwolfe@comcast.net","","","","","2007-01-27","2007-01-27","2007-01-27"
+"Michelle ","Williams","","","","","","michwill01@comcast.net","","","","","2007-01-27","2007-01-27","2007-01-27"
+"","","","","","","","youngsha63@gmail.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Gregory","Hickerson","","","","","","mikefirefightermedic@yahoo.com","","","","","2007-01-27","2007-01-27","2007-01-27"
+"Mike","Weber","","","","","","mikejweber@yahoo.com","","","","","2007-01-27","2007-01-27","2007-01-27"
+"Dawn","Hovie","","","","","","patoonya@yahoo.com","","","","","2007-01-28","2007-01-28","2007-01-28"
+"Mike & Kathy","Haist","","","","","","mjhaist@wowway.com","","","","","2007-01-27","2007-01-27","2007-01-27"
+"Mark","Kehlenbeck","","","","","","mkehlenbeck@delfield.com","","","","","2007-01-27","2007-01-27","2007-01-27"
+"Melissa","Mozdzen","","","","","","mmozdzen@yahoo.com","","","","","2007-01-28","2007-01-28","2007-01-28"
+"Manoj","Sharma","","","","","","msharma1111@yahoo.com","","","","","2007-01-28","2007-01-28","2007-01-28"
+"Natalie","Williams","","","","","","nnngrier@aol.com","","","","","2007-01-28","2007-01-28","2007-01-28"
+"Richard","Bragaw","","","","","","rbragaw@bragawpr.com","","","","","2007-01-28","2007-01-28","2007-01-28"
+"Peter","Ellis","","","","","","Paellis20@aol.com","","","","","2007-01-28","2007-01-28","2007-01-28"
+"Bill","Steffes","","","","","","bill.steffes@accessbusinessgroup.com","","","","","2009-05-22","2009-05-22","2009-05-22"
+"Pat","Doyle","","","","","","patrick.doyle@lpl.com","","","","","2007-01-28","2007-01-28","2007-01-28"
+"Jennifer","Patton","","","","","","patton1193@aol.com","","","","","2007-01-28","2007-01-28","2007-01-28"
+"Robert","Summers","","","","","","paulasummers@charter.net","","","","","2007-01-28","2007-01-28","2007-01-28"
+"Lorriane","Brugger","","","","","","pbrugger11@comcast.net","","","","","2007-01-28","2007-01-28","2007-01-28"
+"Robert","Penrod","","","","","","penrodr@gdls.com","","","","","2007-01-28","2007-01-28","2007-01-28"
+"Bill","Perod","","","","","","perodw@michigan.gov","","","","","2007-01-28","2007-01-28","2007-01-28"
+"Peggy","James","","","","","","pjames@transunion.com","","","","","2007-01-28","2007-01-28","2007-01-28"
+"Pam","Hennig","","","","","","plh04rome@yahoo.com","","","","","2007-01-28","2007-01-28","2007-01-28"
+"Tom","Plodzeen","","","","","","plodzeen@netscape.net","","","","","2007-01-28","2007-01-28","2007-01-28"
+"Paul","Padesky","","","","","","ppadesky@gmail.com","","","","","2007-01-28","2007-01-28","2007-01-28"
+"Bonnie","Marszalek","","","","","","bonnie60491@sbcglobal.net","","","","","2009-02-04","2009-02-04","2009-02-04"
+"Todd","Mislan","","","","","","queenjoan1@juno.com","","","","","2007-01-28","2007-01-28","2007-01-28"
+"Phil","Anderson","","","","","","random_pja@yahoo.com","","","","","2007-01-28","2007-01-28","2007-01-28"
+"","","","","","","","bpdroste@stgerard.org","","","","","2009-06-03","2009-06-03","2009-06-03"
+"Ron","Breitner","","","","","","rbrite@wowway.com","","","","","2007-01-28","2007-01-28","2007-01-28"
+"Russ","Cooper","","","","","","rcoopcal@aol.com","","","","","2007-01-28","2007-01-28","2007-01-28"
+"Debra","Simpson","","","","","","rdkcs@aol.com","","","","","2007-01-28","2007-01-28","2007-01-28"
+"Karen & Doug","Byers","","","","","","redstealth32@wowway.com","","","","","2007-01-28","2007-01-28","2007-01-28"
+"Thomas","Richardson","","","","","","redbadger4@cox.net","","","","","2007-01-28","2007-01-28","2007-01-28"
+"Thomas ","Richardson","","","","","","richardsonk_59@hotmail.com","","","","","2007-01-28","2007-01-28","2007-01-28"
+"Rick","Popiolek","","","","","","rick@danberry.com","","","","","2007-01-28","2007-01-28","2007-01-28"
+"Tina","Pyzik","","","","","","rjntina2@yahoo.com","","","","","2007-01-28","2007-01-28","2007-01-28"
+"","","","","","","","guticcindy@comcast.net","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Robert ","Powell","","","","","","robert.powell@kohler.com","","","","","2007-01-28","2007-01-28","2007-01-28"
+"Cameron","Young","","","","","","ronbrant@umich.edu","","","","","2007-01-28","2007-01-28","2007-01-28"
+"Rhonda","Penning","","","","","","rpx2@comcast.net","","","","","2007-01-28","2007-01-28","2007-01-28"
+"Colbert ","Watson","","","","","","russwatson9193360@hotmail.com","","","","","2007-01-28","2007-01-28","2007-01-28"
+"Sandy","Angart","","","","","","sangart@ameritech.net","","","","","2007-01-28","2007-01-28","2007-01-28"
+"David","Sansoterra","","","","","","sansoterraDMSDN@aol.com","","","","","2007-01-28","2007-01-28","2007-01-28"
+"Mary","Kretz","","","","","","sewcrazy06@comcast.net","","","","","2007-01-28","2007-01-28","2007-01-28"
+"Stephen","Flechsig","","","","","","sflechsig@mackadmin.com","","","","","2007-01-28","2007-01-28","2007-01-28"
+"David","Shawn","","","","","","shawdave1@yahoo.com","","","","","2007-01-28","2007-01-28","2007-01-28"
+"Shawn","Gaidis","","","","","","shawn.gaidis@gmail.com","","","","","2007-01-28","2007-01-28","2007-01-28"
+"Sheila","Joki","","","","","","sheila.joki@citigroup.com","","","","","2007-01-28","2007-01-28","2007-01-28"
+"","","","","","","","karlotafun@aol.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Mark","Fetters","","","","","","sherri.fetters@sbcglobal.net","","","","","2007-01-28","2007-01-28","2007-01-28"
+"Stacie","Hurst","","","","","","shurst2003@yahoo.com","","","","","2007-01-28","2007-01-28","2007-01-28"
+"Crystal","Dean","","","","","","sideburnsie@yahoo.com","","","","","2007-01-28","2007-01-28","2007-01-28"
+"Denise","Simard","","","","","","simardhouse@comcast.net","","","","","2007-01-28","2007-01-28","2007-01-28"
+"Thomas","Duvall","","","","","","Skierbuddies@aol.com","","","","","2007-01-28","2007-01-28","2007-01-28"
+"Lisa","Hanson","","","","","","skipper380@aol.com","","","","","2007-01-28","2007-01-28","2007-01-28"
+"Andrei","Slavin","","","","","","slavin@oakland.edu","","","","","2007-01-28","2007-01-28","2007-01-28"
+"Stacy","Layman","","","","","","slmlayman@hotmail.com","","","","","2007-01-28","2007-01-28","2007-01-28"
+"Dru Anne","Smyth","","","","","","smythfive@aol.com","","","","","2007-01-28","2007-01-28","2007-01-28"
+"Qing","Chang","","","","","","songwei_zhang@yahoo.com","","","","","2007-01-28","2007-01-28","2007-01-28"
+"Bill","Yacullo","","","","","","wyacullo@aol.com","","6","","We had an enjoyable stay last August. What is the weekly rate for two large condos? Also did we leave a security deposit?\r
+Bill Yacullo","","","2009-01-21"
+"Sue","Robell","","","","","","srobell@med.wayne.edu","","","","","2007-01-28","2007-01-28","2007-01-28"
+"Jan","Buchanen","","","","","","janbucha@umich.edu","","","","","2009-01-26","2009-01-26","2009-01-26"
+"Sue","Johnson","","","","","","suejohnson12345@yahoo.com","","","","","2007-01-29","2007-01-29","2007-01-29"
+"Dan","Suiter","","","","","","suiter@ugs.com","","","","","2007-01-29","2007-01-29","2007-01-29"
+"Scott","Voss","","","","","","svoss@vossins.com","","","","","2007-01-29","2007-01-29","2007-01-29"
+"Sandra","Walther","","","","","","swalther6@cs.com","","","","","2007-01-29","2007-01-29","2007-01-29"
+"James","Turner","","","","","","jturner@vistaurum.com","","","","","2009-10-21","2009-10-21","2009-10-21"
+"Matt","Manceau","","","","","","tatankasquirrel@hotmail.com","","","","","2007-01-29","2007-01-29","2007-01-29"
+"Chris","King","","","","","","the4kings@comcast.net","","","","","2007-01-29","2007-01-29","2007-01-29"
+"Ursula","Thomas","","","","","","ursulathomas@juno.com","","","","","2007-01-29","2007-01-29","2007-01-29"
+"Valerie","Carpenter","","","","","","valerie.carpenter@eds.com","","","","","2007-01-29","2007-01-29","2007-01-29"
+"","","","","","","","bradyfamily4@mac.com","","","","","2009-06-03","2009-06-03","2009-06-03"
+"Carla","Vaughn","","","","","","vicupdate@earthlink.net","","","","","2007-01-29","2007-01-29","2007-01-29"
+"Kent ","Wallace","","","","","","visionworks@chartermi.net","","","","","2007-01-29","2007-01-29","2007-01-29"
+"Victoria","Neville","","","","","","vneville@techteam.com","","","","","2007-01-29","2007-01-29","2007-01-29"
+"Donna","Bourgoin","","","","","","bourgoinfam8@aol.com","","","","","2009-02-04","2009-02-04","2009-02-04"
+"Martha","Koch","","","","","","warnermart@aol.com","","","","","2007-01-29","2007-01-29","2007-01-29"
+"Chris","Hegele","","","","","","wehegeles@yahoo.com","","","","","2007-01-29","2007-01-29","2007-01-29"
+"Beverly","Darr","","","","","","wjdarr@earthlink.net","","","","","2007-01-29","2007-01-29","2007-01-29"
+"Earle","Wolfs","","","","","","wolfek@cablespeed.com","","","","","2007-01-29","2007-01-29","2007-01-29"
+"Windy","Ostrom","","","","","","wostrom2@aol.com","","","","","2007-01-29","2007-01-29","2007-01-29"
+"Yoon","Huh","","","","","","yoonhuh@umich.edu","","","","","2007-01-29","2007-01-29","2007-01-29"
+"Jeff","Zimmer","","","","","","zimprint@yahoo.com","","","","","2007-01-29","2007-01-29","2007-01-29"
+"T.","DOnofrio","16350 Bak Rd","Belleville","MI","48111","7344542411","cwa4050@yahoo.com","4","8","Pure Michigan eSpecials Newsletter","Need to know cost of 5 days lodging for 5-6 and if ski lift tickets are included, as well as which Ski hill the tickets are good at.  Can you let me know asap?","2007-02-25","2007-03-01","2007-02-05"
+"Jane","Beaudoin","","","","","","jbeaudoi@eup.k12.mi.us","","","","","2008-11-13","2008-11-13","2008-11-13"
+"Daniel","","","","","","","dansandme@hotmail.com","1","4","","We would like to bring our dog with us. Do you accept pets?  If so could you let me know which units we could do that with, and I will check out the condo online and call to make the reservation.  Thanks for your time","2007-03-16","2007-03-18","2007-02-27"
+"Sarah","Siterlet","475 Cherry","Troy","MI","48083","","ssiterlet@hotmail.com","","8","Michigan Travel Magazine","I am the PTO Treasurer for Morse Elementary School in Troy.  We are having our annual Sock Hop and Auction to raise funds for educational materials and resources on May 4, 2007.  We are looking for donations to Auction that night.  We are a non-profit organization with a tax ID.  I have a copy of the letter that I can send through email for your donation purposes.  Please let me know if you are able to donate to such a wonderful cause.\r
+\r
+Sincerely,\r
+\r
+Sarah Siterlet\r
+Morse Elementary PTO Treasurer\r
+Fundraising Parent\r
+","","","2007-03-09"
+"Rhett","Barnes","","","","","","rhett_a_barnes@yahoo.com","","7","","For Nickie:  Wanted to send my email address again as I've not received email with information as to how to apply my unused credit for reservation 74168 guest ID 34619 to a future reservation.  Thank you,\r
+Rhett A. Barnes","","","2007-03-12"
+"Beth","Zaborney","","","","","","bzaborney@wowway.com","","","","","2007-03-26","2007-03-26","2007-03-26"
+"Kim","Schryer","","","","","","msugirly@hotmail.com","","","","","2007-03-26","2007-03-26","2007-03-26"
+"Dale","Gonzales","","","","","","dsgonzales@comcast.net","","","","","2007-03-26","2007-03-26","2007-03-26"
+"Charlotte","Cheslock","","","","","","ch2rx@comcast.net","","","","","2007-03-26","2007-03-26","2007-03-26"
+"Nancy","Doran","","","","","","mwdoran@sbcglobal.net","","","","","2007-03-26","2007-03-26","2007-03-26"
+"Daniel","Komendera","","","","","","skomendera@aol.com","","","","","2007-03-26","2007-03-26","2007-03-26"
+"Connie","Minarik","","","","","","connieminarik@yahoo.com","","","","","2007-03-26","2007-03-26","2007-03-26"
+"Richard","O'Neill","","","","","","oneillrjo@ameritech.net","","","","","2007-03-26","2007-03-26","2007-03-26"
+"Ron","Raade","","","","","","rraade@ewgi.net","","","","","2007-03-26","2007-03-26","2007-03-26"
+"","","","","","","","pjhumphrey80@hotmail.com","","","","","2007-03-27","2007-03-27","2007-03-27"
+"Paul","Clements","","","","","","olivepaste@hotmail.com","","","","","2007-01-28","2007-01-28","2007-01-28"
+"Tina","Harrison","","","","","","tharris1ma@aol.com","","","","","2007-03-27","2007-03-27","2007-03-27"
+"Joan & Wayne","Richards","","","","","","joanmrichards@comcast.net","","","","","2007-03-27","2007-03-27","2007-03-27"
+"Assunta","Benvenuto","","","","","","mpquinto@comcast.net","","","","","2007-03-27","2007-03-27","2007-03-27"
+"WCCS Realty, LLC","","","","","","","ecpsbier@aol.com","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Jennifer ","Bell","","","","","","mjbell@bbbmi.com","","","","","2008-11-13","2008-11-13","2008-11-13"
+"michael","","","","","","","mgtomaszewski@yahoo.com","3","6","","","2011-08-13","2011-08-20","2011-08-01"
+"Stephanie","","","","","","","mwolf10@charter.net","","8","","I am looking for enought condos for 5 families for the Petoskey soccer tournament.  Do you have any available?","2007-06-15","2007-06-17","2007-04-05"
+"Michael","LaLonde","","","","","","mjlalonde@aol.com","","","","","2007-04-23","2007-04-23","2007-04-23"
+"Penny","Peifer","","","","","","ppeifer@cogeco.ca","","","","","2007-04-23","2007-04-23","2007-04-23"
+"Monika","Kairouz","","","","","","monika@beddingtons.com","","","","","2007-04-23","2007-04-23","2007-04-23"
+"Joe ","Martin","","","","","","lmartin12@columbus.rr.com","","","","","2007-04-23","2007-04-23","2007-04-23"
+"WILLIAM","KETTMAN","606 RAVINIA DR","SHOREWOOD","IL","60404","8157442902","BONESMAGE@SBCGLOBAL.NET","1","6","","THERE WOULD BE 3 ADULTS ONE JUNIOR 16,THE JUNIOR AND ONE ADULT GOLFING 4 ROUNDS, COULD YOU GIVE A TOTAL PACKAGE PRICE, AND WHAT ACTIVITIES WOULD YOU HAVE FOR MY WIFE AND MOTHER-IM LAW TO DO DURING THE DAY.ALSO DO THE UNITS HAVE DECKS TO LAY OUT IN THE SUN THANKS FOR YOUR HELP.","2007-06-03","2007-06-08","2007-05-01"
+"Kerry","Voorhees","","","","","","kerryTv8@yahoo.com","","","","","2010-03-16","2010-03-16","2010-03-16"
+"Church","Village","","","","","","417bruce@comcast.net","","","","","2007-05-18","2007-05-18","2007-05-18"
+"Sheryl","McGrath","","","","","","5mcgraths@ameritech.net","","","","","2007-05-18","2007-05-18","2007-05-18"
+"John","Flannery","","","","","","flanman@cablespeed.com","","","","","2009-05-22","2009-05-22","2009-05-22"
+"Aaron","Wisniewski","","","","","","aawisnie@gmail.com","","","","","2007-05-18","2007-05-18","2007-05-18"
+"Ann","Alexopoulos","","","","","","acube15@aol.com","","","","","2007-05-18","2007-05-18","2007-05-18"
+"Dick","Adams","","","","","","adamsd@graphicpkg.com","","","","","2007-05-18","2007-05-18","2007-05-18"
+"Amy","Grake","","","","","","agrake26.2@comcast.net","","","","","2007-05-18","2007-05-18","2007-05-18"
+"Scott ","Wickson","","","","","","ahcsswickson@hotmail.com","","","","","2007-05-18","2007-05-18","2007-05-18"
+"Anne","Heise","","","","","","aheise@wccnet.org","","","","","2007-05-18","2007-05-18","2007-05-18"
+"Diana","Pessina","","","","","","aketels@msn.com","","","","","2007-05-18","2007-05-18","2007-05-18"
+"Adam","Lis","","","","","","alis@tm.net","","","","","2007-05-18","2007-05-18","2007-05-18"
+"Dave","Lucas","","","","","","alucas@new.rr.com","","","","","2007-05-18","2007-05-18","2007-05-18"
+"Tina","Konke","","","","","","tinamkonke@hotmail.com","","","","","2007-05-22","2007-05-22","2007-05-22"
+"Mike","Barkman","","","","","","barkman.mike@sbcglobal.net","","","","","2007-05-22","2007-05-22","2007-05-22"
+"Joel","Webb","","","","","","mendywebb@hotmail.com","","","","","2007-05-22","2007-05-22","2007-05-22"
+"Lisa","Damone","","","","","","ltdamone@comcast.net","","","","","2007-05-22","2007-05-22","2007-05-22"
+"Lynne ","Mills","","","","","","jakelukecameron@gmail.com","","","","","2007-05-22","2007-05-22","2007-05-22"
+"","","","","","","","hendricksong@marsusa.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"","","","","","","","karstenfun@hotmail.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Loren","Crandell","","","","","","alainacrandell@yahoo.com","","","","","2007-05-22","2007-05-22","2007-05-22"
+"Lisa","Bell","","","","","","wilimor@shaw.ca","","","","","2007-05-22","2007-05-22","2007-05-22"
+"Laura","Walworth","","","","","","laurielw@hotmail.com","","","","","2007-05-22","2007-05-22","2007-05-22"
+"Tom","Gearhart","","","","","","tom.gearhart@nmfn.com","","","","","2007-05-22","2007-05-22","2007-05-22"
+"Rich","Borgetti","","","","","","richborgetti@sbcglobal.net","","","","","2007-05-22","2007-05-22","2007-05-22"
+"Jeff","Ziulkowski","","","","","","jziu@comcast.net","","","","","2007-05-22","2007-05-22","2007-05-22"
+"Esther","Wolfe","","","","","","ejre@sbcglobal.net","","","","","2007-05-22","2007-05-22","2007-05-22"
+"Gary","Miller","","","","","","fsabre@charter.net","","","","","2007-05-22","2007-05-22","2007-05-22"
+"Peggy","McBrien","","","","","","peggy@schummersskishop.com","","","","","2007-05-22","2007-05-22","2007-05-22"
+"Annette","Whitman","","","","","","adwhitman@sbcglobal.net","","","","","2007-05-22","2007-05-22","2007-05-22"
+"Carl","Williams","","","","","","rcwilliams@sbcglobal.net","","","","","2007-05-22","2007-05-22","2007-05-22"
+"Mike","Hecker","","","","","","mhecker101@comcast.net","","","","","2007-05-22","2007-05-22","2007-05-22"
+"Devon","Mehl","34253 Parkgrove Dr. ","Westland","MI","48185-1457","734-522-9612","drmehl@aol.com","","9","","Need to cancel reservation #74597\r
+Guest ID# 34785","","","2007-05-24"
+"Nicholas","May","","","","","250 753 7200","Nick@realestatewebmasters.com","","6","","Hello,\r
+\r
+My name is Nick May. I am a Link Builder for Real Estate Webmasters. I am emailing you today to introduce a new system we have developed, based on contextual-quality links. This system is designed to put more focus on a fewer amount of links, as they would be located on pages full of content, relative to the site.\r
+\r
+Instead of having links placed in directories, 5 links will be placed on an already established contextually relevant page. You add 5 of our clients to one of your content pages and in return, we will add your site to each of those client’s sites, on a content filled page.\r
+\r
+This is just an introductory email to let you know a little bit about it. This system is working for our clients and I have some examples to show you, if you’re interested. Email me back and I will fill you in with all the information you need. \r
+\r
+Thanks for taking the time to read this. I hope you will take part in this excellent new program. \r
+\r
+Take Care!\r
+","","","2007-05-25"
+"","","","","","","","mhegel_98@yahoo.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Miriam","Gallagher","","","","","","gallagher20@fuse.net","","","","","2009-01-26","2009-01-26","2009-01-26"
+"Cindy","Vickery","","","","","","vickfam@charter.net","","2","","We are staying at Trout Creek during the Petoskey Tournament.  Are there grills available near the units?  We would like to have a team party there.\r
+\r
+Thanks!","","","2007-06-04"
+"tim","","","","","","","tjoseph@aptechnologies.com","","9","","interested in special golf package for 4-5 golfers for 2-3 rounds while at TC Aug 11-18 with family","","","2007-06-24"
+"Judie","Dobroc","","","","","","blondie347455@yahoo.com","","","","","2010-03-16","2010-03-16","2010-03-16"
+"Ann","Barker","","","","","","amb4735@hotmail.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Andrea","Knab","","","","","","andaalk@aol.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"","","","","","","","brewbikeski@yahoo.com","","","","","2009-06-03","2009-06-03","2009-06-03"
+"Ann","Thomas","","","","","","annthomas@esacredheart.org","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Art","Jennings","","","","","","art.r.jennings@sympatico.ca","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Atsuko","Chapman","","","","","","atsukochap7@comcast.net","","","","","2007-07-09","2007-07-09","2007-07-09"
+"","","","","","","","hicksfamily@centurytel.net","","","","","2009-06-04","2009-06-04","2009-06-04"
+"","","","","","","","kathietown@aol.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Ben","Pauzus","","","","","","ben.pauzus@bilsing-automation.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Liz","Morton","","","","","","bobreeb@aol.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Bryan","Pepp","","","","","","bryan@peppmotors.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Cindy","Ayers","","","","","","bshardacre@aol.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Susan","Krick","","","","","","bskrick@aol.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Beverly","Spicknall","","","","","","bspicknall@new.rr.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Christy","Baker","","","","","","cbaker@michiganpga.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Cindy","Cesario","","","","","","ccesario@oldmissionwindows.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Rick","Poole","","","","","","bumperpoole@hotmail.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Cheryl","Burt","","","","","","cheryl.burt@eaglegroupusa.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Richard","Markley","","","","","","chip.boat1952@verizon.net","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Chris","Bishop","","","","","","chrisbish7@aol.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Christopher","O'Connor","","","","","","chrisoconnor2@earthlink.net","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Christine","Cullen","","","","","","christinecullen@comcast.net","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Tom","Colville","","","","","","cjcolv@comcast.net","","","","","2007-07-09","2007-07-09","2007-07-09"
+"","","","","","","","rlramirez@comerica.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"","","","","","","","sportute@comcast.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Carol","Coury","","","","","","couryfam@ameritech.net","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Mike","Trombley","","","","","","cows@voyager.net","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Charles","Thomson","","","","","","ctstnt@aol.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Bert","Shuert","","","","","","ebshuert@comcast.net ","","","","","2009-10-16","2009-10-16","2009-10-16"
+"","","","","","","","yountssa@muohio.edu","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Eric","Steinwascher","","","","","","eric@nationalconeyisland.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Daniel","Cook","","","","","","dancook1@comcast.net","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Daniel","Komendera","","","","","","danokomendera@aol.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Daniel","Scott","","","","","","danscott@mergisgroup.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Lisa","Davani","","","","","","davanilm@comcast.net","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Dave","Lucas","","","","","","dave@americanvideoandsecurity.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Don","Cahoon","","","","","","itsue2002@hotmail.com","","","","","2009-10-16","2009-10-16","2009-10-16"
+"David","Young","","","","","","davidkarri@hotmail.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Maria","Aguilera","17252 Arlington Ave","Allen Park","MI","48101","313-399-8541","maguile8@ford.com","","","","","2009-06-15","2009-06-15","2009-06-15"
+"MAC10 Ski Group","","","","","","","ddwomack@aaamichigan.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"David","Mengebier","","","","","","dgmengebier@cmsenergy.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Alex","Gyemi","","","","","","dialgy@hotmail.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Harold","Dickieson","","","","","","dickie07@aol.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Debra","Adams","","","","","","dkaadams@hotmail.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Donald","McCan","","","","","","dmccan@marshallremc.coop","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Chrstine","Bertram","","","","","","docbertram@aol.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Michael","Manley","","","","","","doozhee@chartermi.net","","","","","2007-07-09","2007-07-09","2007-07-09"
+"James","Tousignant","","","","","","JTousign@dmc.org","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Yvonne","Cherry","","","","","","sonnycherry@mac.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Susan","Richardson","","","","","","dsglenarbor4@comcast.net","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Lisa","Gross","1522 Joy Ave.","Jackson","MI","49203","517-782-2551","lisamgross@comcast.net","","6","","I work for a non-profit charity: Catholic Charities of Jackson County and we are looking for a resort that is willing to donate a weekend prize package for a raffle that we will be holding in August 2009.  ","","","2009-01-27"
+"Cindy","Dupuis","","","","","","dupes@brktel.on.ca","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Eric","Dumire","","","","","","eedumire@yahoo.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Elaine","Keiser","","","","","","elaine@ekarchitect.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Edward","Lennon","","","","","","elennon@lennonlawpllc.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Edward","Widlund","","","","","","ewidlund@comcast.net","","","","","2007-07-09","2007-07-09","2007-07-09"
+"David","Barnett","","","","","","brbarnett2003@yahoo.com","","","","","2009-02-04","2009-02-04","2009-02-04"
+"Garnet","Eckstrand","","","","","","garnet@eckstrand.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"James","Brusstar","","","","","","gbrusstar@gmail.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Regina","Bruttell","","","","","","gerinab@aol.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Greg","Walters","","","","","","glwalt@gmail.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Dana","Rutland","","","","","","grutland@aol.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Gregory","Topp","","","","","","gtopp@wideopenwest.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Cathy","Gilbert","","","","","","hairsense1@hotmail.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Heidi","Kapsokavathis","","","","","","hikeannie@wowway.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"David","Sholly","","","","","","davidrsholly@hotmail.com","","","","","2009-02-16","2009-02-16","2009-02-16"
+"Tim","Hollis","","","","","","hollisti@msu.edu","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Janet","Tice","","","","","","htice@columbus.rr.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Brett","Cuper","","","","","","jacuper@comcast.net","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Jamye","Olthoff","","","","","","jamyejoy@hotmail.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Jeanine","Holderead","","","","","","jeanineholderead@yahoo.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Jeff","Hackett","","","","","","jeffjhack@hotmail.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Jennifer","Schmidt","","","","","","jenniferlynnschmidt@hotmail.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Jim","Beck","","","","","","jim.beck@dowcorning.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Jim","Streeter","","","","","","jim.streeter@emich.edu","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Nina","McIntyre","","","","","","jimandninamac@wowway.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Jimena","Loveluck","","","","","","jimena@comcast.net","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Jim","Jax","","","","","","jimjax@wowway.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Jennifer","Gruber","","","","","","jjgruber@wideopenwest.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"John","Margle","","","","","","jmarg51@yahoo.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Dave","Anderson","","","","","","tad94@comcast.net","","","","","2009-10-16","2009-10-16","2009-10-16"
+"John","Millerschin","","","","","","jmillerschin@auto-pr.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"","","","","","","","brian.hodek@kellogg.com","","","","","2009-06-03","2009-06-03","2009-06-03"
+"Julia","Totoraitis","","","","","","jmtotoraitis@oagr.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Tamara","Siddall","","","","","","jojosid@aol.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Marie Joyce","Chhun","","","","","","joyce_chhun@yahoo.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"John","Lindow","","","","","","jplindow@mac.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"James","Pratt","","","","","","jpratt0128@comcast.net","","","","","2007-07-09","2007-07-09","2007-07-09"
+"","","","","","","","hkleyn@grcc.edu","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Jonathan","Finch","","","","","","jtfinch@yahoo.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Jennifer","Lovell","","","","","","jtlovell@hotmail.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Kenneth","Brzozowski","","","","","","k2brzozowski@comcast.net","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Kimberley","Rose","","","","","","kar03akr04@yahoo.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Nicole","Cobe","","","","","","ncobe@alphacomm.net","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Kelly","Sprague","","","","","","kel267@hotmail.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Kelly ","Bagnall","","","","","","kelly.bagnall@amseco.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Kevin","Hodgins","","","","","","kevin.hodgins@comcast.net","","","","","2007-07-09","2007-07-09","2007-07-09"
+"","","","","","","","kathy_mcdonald@yahoo.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Kevin","Kott","","","","","","kkott@dspaceinc.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Lang","Balazer","","","","","","lang_m_balazer@whirlpool.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Mike","Calvert","","","","","","cmcalvert@roadrunner.com ","","","","","2009-10-16","2009-10-16","2009-10-16"
+"Sandy","Little","","","","","","littlejimsandy@aol.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Thomas","Forkin","","","","","","ljforkin@wowway.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Laura","Plischke","","","","","","lplischke@bcbsm.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Corey","Goodman","","","","","","lvbuza@kalcounty.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Amanda","Wolfbrandt","","","","","","mandella@comcast.net","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Michelle","Palmer","","","","","","mandm5748@comcast.net","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Randy","Heitz","","","","","","maplelawn@myclearwave.net","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Mark","Ruhala","","","","","","mcruhala@msn.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Kurt","Meador","","","","","","meadorktpg1@netscape.net","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Paul","Kozulis","","","","","","melinda.kozulis@comcast.net","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Matt","Funato","","","","","","mfunato@yamaha.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Michael","Gandham","","","","","","mjgandham@hotmail.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Michelle","Knezek","","","","","","mknezek@hotmail.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Kathy","Weaver","","","","","","mkw003@wowway.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Karl","Scott","","","","","","scotts26@sbcglobal.net ","","","","","2009-10-22","2009-10-22","2009-10-22"
+"Mark","Misch","","","","","","mmisch@aaahawk.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Charles","Rieckhoff","","","","","","ret08@comcast.net","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Mary","Raftery","","","","","","mrraftery@comcast.net","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Brent","Crist","","","","","","brentcrist@msn.com","","","","","2009-02-04","2009-02-04","2009-02-04"
+"Nedra","Lambert","","","","","","nlambert@twp.independence.mi.us","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Gloria","Esch","","","","","","nyesch5@hotmail.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Nicolle","Zinck","","","","","","nzinck@buckeye-express.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Pat","Tasich","","","","","","oakleaf7@sbcglobal.net","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Bob","Zaleski","","","","","","r_zaleski@hotmail.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Patricia","Stroker","","","","","","patriciastroker@sbcglobal.net","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Paul","Shaffstall","","","","","","paulshaf@windstream.net","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Paul","Twa","","","","","","paultwa@charter.net","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Janet","Piper","","","","","","peterpiper@shaw.ca","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Pandora","Knoy","","","","","","pknoy@comcast.net","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Stephen","Moore","","","","","","pleasehelp990@gmail.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Franz and Joan","Neubrecht","","","","","","fneubrecht@yahoo.com","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Pete","Rieveley","","","","","","prieveley@cogeco.ca","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Paul","Whitecar","","","","","","pwhitecar1@yahoo.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Julie","Orler","","","","","","r_orler@hotmail.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Rachelle","Beale","","","","","","rachelle.beale@comcast.net","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Alison","Hildebrand","","","","","","racy90@hotmail.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Carol","Knode","","","","","","ob1and2@charter.net","","","","","2010-03-16","2010-03-16","2010-03-16"
+"Rhonda","Morin","","","","","","rhondamorin12@yahoo.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Richard","McMullen","","","","","","richard.mcmullen@wmich.edu","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Richard","Moroso","","","","","","rmoroso@shaw.ca","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Rob","Perkins","","","","","","robert.r.perkins@pfizer.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Rob","Fazio","","","","","","robfazio@comcast.net","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Stacy","Gallagher","","","","","","rst90@comcast.net","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Sara","Stauffer","","","","","","rsstauffer@hotmail.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Natalie","Pappalardo","","","","","","nater1285@aol.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Steve","Cannon","","","","","","scannon1554@hotmail.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Steven","Dalga","","","","","","sdalga@comcast.net","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Keith","Kallen","","","","","","sdkallen@comcast.net","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Seowook","Park","","","","","","seowook@earthlink.net","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Sue","Poirier","","","","","","poirier3780@hotmail.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Simone","McFarlen","","","","","","simone1988@aol.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Kristen","Keegstra","","","","","","kristenkeeg@hotmail.com","","","","","2009-02-16","2009-02-16","2009-02-16"
+"Stephen","Heisler","","","","","","spheisler@ciaccess.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Brian","Kelly","","","","","","spk970@aol.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Nancy","Lopiccolo","","","","","","spsnancyrn@aol.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Stephen","Kim","","","","","","stevenskim@gmail.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Richard ","Keyes","","","","","","keyesjen@aol.com","","","","","2009-02-02","2009-02-02","2009-02-02"
+"Deb","Sumner","","","","","","sumnerd@westottawa.net","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Susan","Schuster","","","","","","susan.schuster@nationalcity.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Susan","Bartush","","","","","","susanbartush@sbcglobal.net","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Scott","Tarzwell","","","","","","swtarz@comcast.net","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Donald","McGee","","","","","","mcgees@accesstoledo.com","","","","","2009-02-16","2009-02-16","2009-02-16"
+"Therese","Mianecki","","","","","","t.mianecki@comcast.net","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Mary","Thoms","","","","","","thomsmary@hotmail.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Marie","Tighe","","","","","","tighe6@comcast.net","","","","","2007-07-09","2007-07-09","2007-07-09"
+"John Todd","Ralph","","","","","","toddralph@comcast.net","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Tom","Andrew","","","","","","tomandrew@comcast.net","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Tom","Fredericks","","","","","","tomfredericks@cablespeed.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Vincent","Pierik","","","","","","v.pierik@idealtech.us","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Jeff","VanLake","","","","","","vanlake4@comcast.net","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Rob","Vosler","","","","","","velvajean3@aol.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Ruth","Braun","","Ann Arbor","MI","48104","734-998-0594","ruthbbraun@gmail.com","","","","","2006-04-18","2006-04-18","2006-04-18"
+"William","Solinski","","","","","","wsollnn@comcast.net","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Francis","Steiner","2420 State Road","Hillsdale","MI","49242","517-437-3823","fxs@hillsdale.edu","","6","Please send information on your resort & properties","","","","2007-07-10"
+"Robert","Blunden","","","","","","clblunden@wowway.com","","","","","2007-07-13","2007-07-13","2007-07-13"
+"Kari","Routledge","","","","","","routlek@walledlake.k12.mi.us","","","","","2007-07-13","2007-07-13","2007-07-13"
+"Claudia","Rodgers","","","","","","roderinsurance@acd.net","","","","","2007-07-13","2007-07-13","2007-07-13"
+"Jessica","Boucher","117 W. Stoddard Street","Charlotte","MI","48813","517-541-3094","jessicab@accidentfund.com","","6","","Attempting to plan a family reunion for approx 170-200 people. Gathering window is between 6/15/09 and 8/15/09.  Reservations between 2 and 7 nights depending on the individual family.  Would require a meeting room large enough to accommodate a Saturday evening group dinner and presentation.  Please provide any available information including rate information.  Thank you for your assistance.","","","2007-07-19"
+"Ned","Sokoloff","","","","","","ned@specialtygroup.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Brian","Fitzpatrick","","","","","","Fitzpatrick.brian@towerautomotive.com","","","Internet availability","We'll be there from 07-26 thru 07-30.  Can I get an internet connection somewhere at Trout Creek?","","","2007-07-24"
+"Ann","Hogan","","","","","","hoganann44@hotmail.com","4","8","It is near our family's home.","","2007-09-01","2007-09-28","2007-07-31"
+"Kathleen","Gullette","","","","","","dkgullette5@msn.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Katie","","","","","","","katiemccrary1@aol.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Madeleine","Bowes","","","","","","bowesam@yahoo.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"","","","","","","","brucerogers@yahoo.com","","","","","2009-06-03","2009-06-03","2009-06-03"
+"Robert","Tomaszewski","","","","","","sueto@sbcglobal.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Paige and Michael","Domzalski","","","","","","paigeandmichael@comcast.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"","","","","","","","duke_jodie@sbcglobal.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Giancarlo","Pinterpe","","","","","","jelennie2@yahoo.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Diane","Walker","","","","","","precision_dwalker@yahoo.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Rob ","","","","","","","wpotter@lifetimeplanning.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Sylvia and Ronald","Sakuta","","","","","","ssaku@aol.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Kathy","Peters","","","","","","peterskg@sbcglobal.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Pam","Brooks","","","","","","perlbrooks@charter.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Jeffrey","Budaj","","","","","","jbudaj@tbrcpa.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Michelle","Young","","","","","","myoung@berkley.k12.mi.us","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Najat","LaFave","","","","","","najatlafave@comcast.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Kristine","Hudak","","","","","","kristineww@aol.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Dianne","Agro","","","","","","adagro@wowway.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Kenneth ","Allard","","","","","","kennypga@aol.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Marsha","Arbulu","","","","","","mnarbulu@mac.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Suzanne ","Artzberger","","","","","","sartz@comcast.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Patrice","Asimakis","","","","","","1patrice@comcast.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Kimberly","Auspitz","","","","","","auspitz@sbcglobal.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Todd","Bakran","","","","","","tbakran@altelco.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Kelly ","Balough","","","","","","kpage52@hotmail.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Michael ","Bindig","","","","","","biggie1226@hotmail.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Tonya","Bondale","","","","","","tbondale@charter.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Thomas","Bondy","","","","","","bethannieann@comcast.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Monica","Boynton","","","","","","mtb123@comcast.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Cheryl","Walter","","","","","","walter2063@sbcglobal.net","","","","","2010-03-16","2010-03-16","2010-03-16"
+"Dan","Chilcott","","","","","","ksdnchilcott@aol.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"","wohlscheid","","","","","","brianw@municipalsupply.com","","","","","2009-02-04","2009-02-04","2009-02-04"
+"Greg","Coursen","","","","","","courseng@aol.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Donna","Cukrowski","","","","","","wcukrowski@hotmail.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Patricia","Curd","","","","","","pkc906@aol.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Janet","Darby","","","","","","jdarby@chartermi.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Ken","Demski","","","","","","kdemski@comcast.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Sharon","Deptula","","","","","","sdeptula@us.ibm.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Jim","DeRupa","","","","","","jderupa@comcast.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Kari","DeSantis","","","","","","desantis4@comcast.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Pam","DeTizio","","","","","","detiz@usol.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Lorraine","Dugoff","","","","","","lorraine.dugoff@uchsc.edu","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Heidi","Elder","","","","","","eldertime@hughes.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Melissa","Engebretsen","","","","","","misses5e@yahoo.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Steven","Ensley","","","","","","scensley@aol.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Carolyne & Mark ","Hoerr","","","","","","mark@donhoerrandsons.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Roxanne","Ezzo","","","","","","roxanne@avci.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Deedee","Fair","","","","","","deedeekfair@comcast.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Tom","DeFouw","","","","","","coffeeman58@hotmail.com","","","","","2009-05-22","2009-05-22","2009-05-22"
+"Laura","Fiedernitz","","","","","","lfieb@comcast.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Renee","Fluker","","","","","","rfluker206@aol.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Sally","Fog","","","","","","wsfog531@comcast.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Richard","Goebel","","","","","","dickgoebel@tx.rr.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Susan","Golbiw","","","","","","sgolbiw@sbcglobal.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"James","Greene","","","","","","jegreene@chartermi.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Matthew","Greene","","","","","","mgreene@cicchicago.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"","","","","","","","bsparks21@wowway.com","","","","","2009-06-03","2009-06-03","2009-06-03"
+"Marti","Grifka","","","","","","martigra68@hotmail.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Barbara","Handy","","","","","","ashidol1@yahoo.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Sandy","Hebert","","","","","","dandylynn@charter.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Janet","Herwaldt","","","","","","spartan440@msn.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Monica","Hewitt","","","","","","ushewey@yahoo.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Michael","Hinz","","","","","","mfhinz@gmail.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Pamela","Hoelscher","","","","","","plhoelscher@juno.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Tana","Bridge","","","","","","tbridge@emich.edu","","","","","2009-02-16","2009-02-16","2009-02-16"
+"Sarah","Jegla","","","","","","djsjjegla@aol.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Thomas","Griffith","","","","","","howdyamy@comcast.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Stacey","Junn","","","","","","drillnfill1991@yahoo.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"David","Jurk","","","","","","davidjurk@comcast.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Shirley","Kadets","","","","","","smkad@yahoo.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Carol","Kanan","","","","","","jpkanan@comcast.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Achla","Karnani","","","","","","achla_k@yahoo.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Paul","Simmons","","","","","","pwsimmons313@yahoo.com ","","","","","2009-10-22","2009-10-22","2009-10-22"
+"Donna","Kenealy","","","","","","kenealydonna@sbcglobal.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Laura","Kenrick","","","","","","tlkenrick@ameritech.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Cecilia","Kiefiuk","","","","","","drcarolep@comcast.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Lucille","Kraus","","","","","","jwkraus@cogeco.ca","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Catherine","Kucherak","","","","","","cathy@kucherak.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Carol","Kuligoski","","","","","","lbuckeyes@charter.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"James","Kutz","","","","","","janet4248108@yahoo.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Nina","Bufalino ","","","","","","nina@investmentreo.com","","","","","2009-02-02","2009-02-02","2009-02-02"
+"Paul","Kuzemka","","","","","","fudejiu@netzero.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Pamela","Kyle","","","","","","pkyle@lakeorion.k12.mi.us","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Terry","LaBan","","","","","","tlaban@earthlink.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Julie","Landa","","","","","","slanda45@yahoo.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Jim","Langan","","","","","","jlangan1466@wowway.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Kelli","Lasagna","","","","","","lasagnakm@sbcglobal.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Paul","Lauer","","","","","","laup979@charter.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Ginger","Lawson","","","","","","glawson@wcs.k12.mi.us","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Judy","Legree","","","","","","ljujube@comcast.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Christin","Lehman","","","","","","lehmanfamily@charter.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Sanford","Lesnick","","","","","","ladymcmom@ameritech.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Robert","Britton","","","","","","britton.5@hotmail.com","","","","","2009-02-04","2009-02-04","2009-02-04"
+"Jeffrey","Litch","","","","","","jefflitch@yahoo.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"","","","","","","","btb4u@hotmail.com","","","","","2009-06-03","2009-06-03","2009-06-03"
+"Kuen Kuen","Liu","","","","","","kuenbird@yahoo.com.hk","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Sandra","Lorence","","","","","","csdangler@yahoo.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Ellen","Lounds","","","","","","elounds@comcast.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Jean","Lounsbury","","","","","","jlounsbury9137@msn.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Patty","Lusk","","","","","","patty11932@sbcglobal.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"James","MacDonald","","","","","","userj7798@aol.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Dale","Ott","","","","","","do7mucs@comcast.net","","","","","2009-02-16","2009-02-16","2009-02-16"
+"Laura","Makela","","","","","","lauramakela@gmail.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Andrew","Malyszek","","","","","","shrekvader@gmail.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Rebecca","Manship","","","","","","lmanship@indy.rr.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Chris","Marcangelo","","","","","","chrismarcangelo@mac.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"","","","","","","","hossman67@comcast.net","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Andrew","Maternowski","","","","","","chachalaca22@yahoo.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Tammy","Matthews","","","","","","matt_fam@hotmail.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Yolanda","Matthews","","","","","","chuckmatt@mindspring.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Steve","Maxim","","","","","","dmaxim2@cogeco.ca","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Mark","Bloom","","","","","","mark.bloom@ssi-tek.com","1","9","","Can you give me a price for the same unit we have stayed in, in the past.  can never remember the number.","2008-12-19","2008-12-20","2008-10-03"
+"Mark","McElwee","","","","","","mrm18@comcast.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"","","","","","","","kcadwell_kma@yahoo.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Martha","Merkel","","","","","","mmerkel19@comcast.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Alan","Michaels","","","","","","alanandbethm@aol.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Amy Jo","Middleton","","","","","","amyjo1019@yahoo.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Kim","Moesta","","","","","","kpmoesta@aol.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"","","","","","","","mike@garneragency.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Jerry","Risher","","","","","","jerryrisher@oclrx.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Garth","Moreau","","","","","","gmoreau@comcast.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Ron","Mowicki","","","","","","ronronowicki@msn.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Pam","Murrell","","","","","","pkmurrell@aol.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Patricia","Noll","","","","","","plnoll@yahoo.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Lisa","Norwick","","","","","","lnor63@aol.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Mark","Nowotarski","","","","","","mcnowotarski@bex.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Kevin","O'Keefe","","","","","","kokeefe2316@comcast.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Ellen","Potter","","","","","","ellen.humphrey@xerox.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Robert","Orosey","","","","","","papa.bob2@netzero.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"","","","","","","","rlstorer@dow.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Alison","Papin","","","","","","adpapin@aol.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Randy","Petiprin","","","","","","rpetiprin@comcast.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Jim","Petrena","","","","","","kpetrena@wideopenwest.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Javier","Pozo","","","","","","nancy.pozo@nationalcity.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Megan","Pugh","","","","","","mmpugh123@yahoo.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Linda","Pytel","","","","","","pytels@comcast.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Mary Jane","Rantz","","","","","","luv2skitr@yahoo.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Plamen","Ratchev","","","","","","plamen@ratchev.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Dennis","Reef","","","","","","dreef@mspcpa.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Cheryl","Reitzloff","","","","","","cherreitz@aol.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Kathy","Mikolajczak","","","","","","mikol@bex.net ","","","","","2009-02-02","2009-02-02","2009-02-02"
+"Ken","Brown","","","","","","brownken@comcast.net","","","","","2009-02-04","2009-02-04","2009-02-04"
+"Beth","Rogler","","","","","","rogsailer@charter.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Carthy","Romkema","","","","","","cathypage3@hotmail.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Louise","Sable","","","","","","lbsable@comcast.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Patrick","Samolewski","","","","","","pcs@svsu.edu","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Bob","Schaburg","","","","","","schaberg@i-c.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Tracy","Schatko","","","","","","tracy63@comcast.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Denise","Schesky","","","","","","dschesky@aol.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Ladye Mary","Scheuerman","","","","","","curts254@alltel.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Joan","Schrubba","","","","","","ronjoschrubba@yahoo.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Gary","Schwind","","","","","","gjschwind@sbcglobal.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Frank","Sebest","","","","","","fsebest@yahoo.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Bruce","Selman","","","","","","btch69linkinpark@yahoo.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Christine","Seno","","","","","","christineseno@mac.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Gunjan","Shah","","","","","","gps5657@hotmail.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Slavi","Slavov","","","","","","sgslavov@yahoo.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Steven","Sobek","","","","","","steve2247@sbcglobal.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Leonard","Sosnowski","","","","","","lsosnowski@yahoo.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Christy","Prather","","","","","","gprather5@aol.com","","","","","2009-02-16","2009-02-16","2009-02-16"
+"Anthony ","Stevenson ","","","","","","clamcentral@hotmail.com ","","","","","2009-10-22","2009-10-22","2009-10-22"
+"Mary","Stronati","","","","","","maryt710@aol.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Thomas","Strong","","","","","","tjstrong@pgatourhq.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Robert","Struble","","","","","","rstruble@iowatelecom.net","","","","","2008-10-06","2008-10-06","2008-10-06"
+"John","Thornburgh","","","","","","dthornburgh@orchard.org","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Joel","Toupin","","","","","","drjetamdg@aol.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Michael","Trainor","","","","","","mtrainor2@charter.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Maria","Lampinen","","","","","","maria1207@aol.com","","","","","2009-05-22","2009-05-22","2009-05-22"
+"Charles","Turnbull","","","","","","jillyflo@comcast.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"","","","","","","","bwarra612@yahoo.com","","","","","2009-06-03","2009-06-03","2009-06-03"
+"Steve","Urbaniak","","","","","","surbania@comcast.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Donald","Vachon","","","","","","don_vachon@bsbcom.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Steven","Van Doornik","","","","","","svandoornik@mmpc.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"","","","","","","","HOUSTONSILVFOX@COMCAST.NET","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Kevin","VanDette","","","","","","rkvgolfs@aol.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Leslie","Vanhouzen","","","","","","lvanhouzen@aol.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Marney","Vincentini","","","","","","mvincentini@hotmail.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"","","","","","","","kcwin45@yahoo.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Woei","Wang","","","","","","wanschyi@msu.edu","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Kent","Wantroba","","","","","","kentlisa6061@sbcglobal.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Charles","Weissman","","","","","","cweissman@fabricantweissman.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Jeffery","Westheimer","","","","","","judywestheimer@hotmail.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Sheila","Whelan","","","","","","sheila.whelan@sbcglobal.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Barry","Wigent","","","","","","bwigentcpa@comcast.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Ron","Winters","","","","","","ronald_winters@dell.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Bob","Wootton","","","","","","bjwootton@yahoo.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Jisun","Yang","","","","","","missyang82@hotmail.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Dennis ","Osworth ","","","","","","osworthda@yahoo.com","","","","","2009-02-02","2009-02-02","2009-02-02"
+"Valerie","Zale","","","","","","val725@hotmail.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Dr. Janet M.","Burns","","","","","","jmburns57@yahoo.com","","8","Please change my contact info to:  37941 Spring Lane, Farmington Hills, MI  48331 and home phone:  248-991-9924 and cell:  231-313-1869.  I am the owner of Unit #7.  Please advise that you have received this message.  Thank you.  ","","","","2007-08-29"
+"Nikki","","","","","","","nikki@troutcreek.com","","8","Hello","","","","2003-12-20"
+"Roger ","Kirwin","17527 S. Pecan Ln.","Tinley Park","IL","60487","","rocker918@gmail.com","1","4","I am interested in staying in Condo 106!","i was not able to view rates can you help me?","2008-01-06","2008-01-11","2007-09-06"
+"Frank","Maxwell","","","","","","SpartyMax@comcast.net","","4","","Pets permitted???","","","2007-09-10"
+"Brian ","Schad","","","","","","schads@earthlink.net","4","9","Interest in condo #5.  Am flexible with dates in late June.","","2008-06-19","2008-06-25","2007-09-12"
+"Linda ","Barry","4920 Deer Run Lane","Holt","Michigan","48842","517-6944699","lbarry@hpsk12.net","1","9","Elizabeth Roach; Thank you for replying back to me. I heard that you had a list of ALL the condo's that are at Trout Creek for sale, not just your listings and no, we don't have a realtor helping us. Thank you for your help. Linda Barry","","","","2007-09-13"
+"Penny","Severin","PO Box 10","Benton","IL","62812","618-435-5555","dpseverin@verizon.net","5","6","","We would like to bring our standard poodle, Truman.","2007-10-04","2007-10-07","2007-09-18"
+"Tim","Bender","","","","","","meltimbender@yahoo.com","","6","","We are thinking of staying at Trout Creek over Christmas week this year.  Is there a shuttle that week that runs to/from Trout Creek and the ski slopes?\r
+\r
+Thank you.\r
+\r
+Tim","","","2007-09-20"
+"dave ","","","","","","","dave@nexesrealty.com","","8","","I need Stewart to e-mail me ","","","2007-09-24"
+"Kowk Lock","Lam","","","","","","kl.lam@sympatico.ca","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Janice and George","Buchanen","","","","","","jbuchan1@aol.com","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Julie","Batog","6987 Martinchek Road","Petoskey","Mi ","49770","231.347.4030","juliebatog@hotmail.com","","2","","I saw on the your website that you have an indoor space available for weddings.  I would have a significantly larger reception than allowed indoors, but I was wondering if there was an outdoor open space available that could accomodate a tent for an outdoor reception? If so, would you know any price specification or availability?","","","2007-09-24"
+"Maureen ","Bonhard","","","","","","mbonhard@aol.com","","","","","2007-09-25","2007-09-25","2007-09-25"
+"Kathleen","Merchak","","","","","","kmerchak@peoplepc.com","","","","","2007-09-25","2007-09-25","2007-09-25"
+"Aaron ","Phillips"," ","","","","","tobesdrums@yahoo.com","","","","","2009-02-16","2009-02-16","2009-02-16"
+"Daniel","Bruetman","","","","","","bruetman@msn.com","","","","","2009-02-04","2009-02-04","2009-02-04"
+"Brian and Jane","Adamczyk","","","","","","janeadamczyk@hotmail.com","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Pat","Sherlock","","","","","","ptsherlock@aol.com","","","","","2007-09-25","2007-09-25","2007-09-25"
+"Nikki","","","","","","","nikki@troutcreek.com","","8","Hello","","","","2010-01-20"
+"Sharon","Bellefleur","","","","","","Aussiemom@comcast.net","","1","","We stayed here once while we went golfing and just loved the condos.  They were very clean and smoke free.  We would like to come and stay again in October, but we do have a small 28lb. dog and she travels everywhere with us.  Do you except small pets?  Thank you.","","","2007-09-27"
+"Lori","Andrezejewski","","","","","","loria2@hotmail.com","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Paul and Patricia","Dufault","","","","","","paul_g_dufault@comerica.com","","","","","2007-09-28","2007-09-28","2007-09-28"
+"","","","","","","","","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Kirk","Sledzinski","","","","","","sledzinski@aol.com","","","","","2009-05-22","2009-05-22","2009-05-22"
+"Ellen","Potter","","","","","","ellen.potter@xerox.com","","","","","2007-09-28","2007-09-28","2007-09-28"
+"","","","","","","","cahee201@yahoo.com","","","","","2009-06-03","2009-06-03","2009-06-03"
+"James","Collins","","","","","","jimfloc@aol.com","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Roger and Kathleen","Dooley","","","","","","rogermdooley@yahoo.com","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Thomas","Martinelli","","","","","","alyse.f.martinelli@att.com","","","","","2007-09-28","2007-09-28","2007-09-28"
+"","","","","","","","hrsmuck@comteck.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"John and Linda","Lamb","","","","","","llamb1@charter.net","","","","","2007-09-28","2007-09-28","2007-09-28"
+"","","","","","","","kcycholl@aol.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Gerald ","Risher","","","","","","jerry@oclrx.com","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Pam and Kevin","Cooper","","","","","","cooperdds@hotmail.com","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Bernadette","Lois","","","","","","slavicgal@yahoo.com","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Deb","Mustard","","","","","","dmustardwible@aol.com","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Sam and Marti","Osnowitz","","","","","","sosnowitz@buckeye-express.com","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Beth","Hess","","","","","","gbhess@juno.com","","","","","2008-11-13","2008-11-13","2008-11-13"
+"Mike and Bonny","Silver","","","","","","bonny428@sbcglobal.net","","","","","2007-09-28","2007-09-28","2007-09-28"
+"David and Heidi","Foxworthy","","","","","","hfoxworthy@hughes.net","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Bill and Nancy","Lamb","","","","","","wjlamb@sbcglobal.net","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Kevin and Kathleen","Summers","","","","","","ksummers@psedlaw.com","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Pat","Zawadzki","","","","","","mamazwad@aol.com","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Mike","Wehby","","","","","","mwehby@tacworldwide.com","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Karen","Knister","","","","","","k2shop@comcast.net","","","","","2009-02-16","2009-02-16","2009-02-16"
+"Neil and Jill","McCullough","","","","","","mccullough6@comcast.net","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Dennis","Perkins","","","","","","bwperkins@comcast.net","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Joel and Deb","LaMothe","","","","","","joelwswan@msn.com","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Jeff","Rosenthal","","","","","","jamroses@sbcglobal.net","","","","","2009-05-22","2009-05-22","2009-05-22"
+"Glenn ","Purvis","","","","","","mruiter@netzero.net","","","","","2008-10-06","2008-10-06","2008-10-06"
+"Larry and Sandra","Hartwig","","","","","","lhartwig@juno.com","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Roberta ","Kulawik","","","","","","bkulawik@cs.com","","","","","2007-09-28","2007-09-28","2007-09-28"
+"","","","","","","","canno1979@yahoo.com","","","","","2009-06-03","2009-06-03","2009-06-03"
+"Tracy","Dushane","","","","","","tracyd@peoplepc.com","","","","","2008-10-06","2008-10-06","2008-10-06"
+"Arnold and Clarita","Ketels","","","","","","arnold_ketels@yahoo.com","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Jason","Mayley","","","","","","mayles@sbcglobal.net","","","","","2008-10-06","2008-10-06","2008-10-06"
+"James","Sanborn","","","","","","james.sanborn@us.bosch.com","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Jennifer","Kelly","","","","","","jenatassi@sbcglobal.net","","","","","2008-10-06","2008-10-06","2008-10-06"
+"Mike and JoAnn","Sanborn","","","","","","mjsanborn@tc3net.com","","","","","2007-09-28","2007-09-28","2007-09-28"
+"David and Diana","Battin","","","","","","dddk_4@msn.com","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Louis and Laurell","Bruska","","","","","","rallyback@comcast.net","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Peter","Geshel","","","","","","pgeshel@hotmail.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Cindy and Steven","Schwartz","","","","","","mdkrx73@yahoo.com","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Scott","Kemerling","","","","","","amybk@wowway.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Larry","Boon","","","","","","larry.boon.ab8t@statefarm.com","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Jeff","Clemens","","","","","","finance@raycs.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Michelle & Rob","Shores","","","","","","rcshores@comcast.net","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Victoria","Getner","","","","","","vgetner@pappasfinancial.com","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Doug and Valerie","Pontious","","","","","","doug.pontious@comcast.net","","","","","2007-09-28","2007-09-28","2007-09-28"
+"","","","","","","","ja2boggs1@yahoo.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Gary and Kathryn","Manthey","","","","","","garymanthey@hotmail.com","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Craig and Barbara","Bailey","","","","","","bkbailey@accesstoledo.com","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Tony & Jan","Vettraino","","","","","","janvettraino@sbcglobal.net","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Mark and Angela","Jungwirth","","","","","","mjungwir@yahoo.com","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Michael","Dornan","","","","","","mdornan@ci.wixom.mi.us","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Paul and Ruth","O'Brien","","","","","","pobmsu@yahoo.com","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Joel","Rosenberg","","","","","","rosey4@aol.com","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Tony and Shannon","DeMartinis","","","","","","ademarti@ford.com","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Roger and Cinty","Novotney","","","","","","a089028@allstate.com","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Monica","Paquette","","","","","","mj.paquette@att.net","","","","","2007-11-21","2007-11-21","2007-11-21"
+"Kevin and Kim","Spillane","","","","","","kspillane@incat.com","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Howard","Merkel","","","","","","hmerkel@comcast.net","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Mary Beth ","Castorri","","","","","","marycastorri@comcast.net","","","","","2007-10-09","2007-10-09","2007-10-09"
+"Tim","Monicatti","","","","","","tsmonicatti@monicattichrysler.com","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Glenn","Reynolds","","","","","","garreynolds@comcast.net","","","","","2007-09-28","2007-09-28","2007-09-28"
+"June","Terens","","","","","","jterens@yahoo.com","","","","","2008-10-06","2008-10-06","2008-10-06"
+"Joseph","Arden Place Assoc.","","","","","","mjoseph@crawfordgrp.com","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Banion","Zielinski","","","","","","bettybzielinski@aol.com","","","","","2007-09-28","2007-09-28","2007-09-28"
+"James","Hatcher","","","","","","jbhjames@aol.com","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Jim","Line","","","","","","jline1373@charter.net","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Patrick","Wilson","","","","","","p0wilso1@gmail.com","","","","","2009-02-17","2009-02-17","2009-02-17"
+"April","Logiudice","","","","","","alogiudice@hotmail.com","","","","","2008-10-06","2008-10-06","2008-10-06"
+"Timothy and Jacqueline","Esper","","","","","","jacky_esper@comcast.net","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Herb and Kathy","Kindt","","","","","","hkindt46804@yahoo.com","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Harley and Sharon","Beslock","","","","","","sbeslock@bloomfieldtwp.org","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Dennis","Fodell","","","","","","dsfodellfam@comcast.net","","","","","2008-10-06","2008-10-06","2008-10-06"
+"Mike","Campabello","","","","","","campabello@gmail.com","","","","","2009-02-04","2009-02-04","2009-02-04"
+"Janet","Dobson","","","","","","janetdobson@yahoo.com","","","","","2008-10-06","2008-10-06","2008-10-06"
+"Grant and Anne","Brown","","","","","","granthb@aol.com","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Shari","Crowell","","","","","","csr@raderfishman.com","","","","<p>Shari</p>","2008-10-06","2008-10-06","2008-10-06"
+"Anthony and Alexandra","Pirie","","","","","","piriechiro@sbcglobal.net","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Carol","Sarosik","","","","","","csarosik@comcast.net","","4","","Do you take pets?","","","2007-10-11"
+"Gary ","Schamehorn","","","","","","gschamehorn@sterling-heights.net","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Dave and Sue","Johnson","","","","","","d.johnson@frontiernet.net","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Peter and Carol","Walters","","","","","","cwalters48@aol.com","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Kelly","Schulte","","","","","","kellys@hvc.rr.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Donald ","Walker","","","","","","upnorfus@i-star.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Renee ","Labadie","","","","","","rmanceau@hotmail.com","","","","","2007-11-07","2007-11-07","2007-11-07"
+"G.","Plaskie","","","","","","gplaskie@aol.com","","","","","2009-05-22","2009-05-22","2009-05-22"
+"Don and Elizabeth","Molosky","","","","","","lizroach@charter.net","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Michael","Kahl","","","","","","mlv86@aol.com","6","6","","Looking for lodging for 12 and 18 holes in the afternoon on the 8th, 36 holes on the 9th, and 18 holes in the morning on the 10th.  We've been doing golf trips in Michigan for the past 11 years and a re looking for some great golf with some great deals.  Thank you.","2008-05-08","2008-05-10","2007-10-12"
+"Kevin","Schultz","14501 Haggerty","Plymouth","Michigan","48154","734-891-0157","christe68@aol.com","4","9","","                  My name is Kevin Schultz.  I’m currently on the school board at New Morning School, which is located in Plymouth Michigan.   New Morning students learn on a 9 to 1 student/teacher ratio.  The school is celebrating our 35th year and we would like to make this years auction a huge success.  The auction is taking place at Laurel Manor in Livonia Michigan on April 5, 2008.  The theme of next years auction is the roaring twenties. We are asking for donations and/or advertisements this year, any donation would be greatly appreciated.   The deadline for auction merchandise is January 17, 2008.  Last years attendance was 600.  We are a non-profit organization. Thanks in advance.\r
+\r
+\r
+\r
+\r
+\r
+\r
+\r
+                                                               Kevin Schultz\r
+                                                               (VP of Membership)\r
+                                                               14501 Haggerty\r
+                                                               Plymouth, Michigan 48170\r
+                                                               (734) 891-0157\r
+                                                                                                                                                       www.newmorningschool.com\r
+","","","2007-10-18"
+"Debbie","Aceves","1529 Charlevois","Troy","mi","48085","248 457 1528","daceves@wowway.com","","4","","We stayed at your resort on October 19,20 and left on October 21.  We were in condo #47.  I left some of my clothes in the dresser that had the Tv on it in the bedroom. Could someone please mail me my jeans and I will send you a check.  I will try and call you on Sunday.\r
+\r
+Thank you","","","2007-10-21"
+"Thomas and Rosemary","Doyle","","","","","","doyma@att.net","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Robert","Herrgott","","","","","","jenny@21st-psi.com","","","","","2008-10-06","2008-10-06","2008-10-06"
+"Annelies","Trice","","","","","","1cougarmom@comcast.net","","","","","2007-11-20","2007-11-20","2007-11-20"
+"","","","","","","","casps@sbcglobal.net","","","","","2009-06-03","2009-06-03","2009-06-03"
+"","","","","","","","jala@hartmantyner.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Lori ","Ott","","","","","","lorijott@sbcglobal.net","","","","","2007-11-07","2007-11-07","2007-11-07"
+"Tejay ","Skidmore","","","","","","tms52901@yahoo.com","","","","","2007-11-07","2007-11-07","2007-11-07"
+"Shannon","Pacella","","","","","","pacellas@yahoo.com","","","","","2007-11-07","2007-11-07","2007-11-07"
+"Kara","Wood","","","","","","woodkara@yahoo.com","","","","","2007-11-07","2007-11-07","2007-11-07"
+"Lisa","Lazaroff","","","","","","agi_tator@yahoo.com","","","","","2007-11-07","2007-11-07","2007-11-07"
+"Terri","Wallace","","","","","","codybri@aol.com","","","","","2007-11-07","2007-11-07","2007-11-07"
+"Paula","Wilson","","","","","","pwilson72@yahoo.com","","","","","2007-11-07","2007-11-07","2007-11-07"
+"Rebecca","Pillion","","","","","","rebeccapillion@sbcglobal.net","","","","","2007-11-07","2007-11-07","2007-11-07"
+"Elizabeth","Peterson","","","","","","1peterson@lafcu.com","","","","","2009-02-02","2009-02-02","2009-02-02"
+"Lauren","Moeller","","","","","","pamoeller@aol.com","","","","","2009-02-17","2009-02-17","2009-02-17"
+"Robert","Friedrichs","","","","","","bfriedrichs@sanluisrassini.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Linda ","Farrow","","","","","","lpharoah@ameritech.net","","","","","2007-11-07","2007-11-07","2007-11-07"
+"Terri","Williams","","","","","","mmouse101@yahoo.com","","","","","2007-11-07","2007-11-07","2007-11-07"
+"","","","","","","","caw716@aol.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Kristin","Thompson","","","","","","kmt613@msn.com","","","","","2007-11-07","2007-11-07","2007-11-07"
+"chad","Parker","","","","","","caparks18@comcast.net","","","","","2009-02-04","2009-02-04","2009-02-04"
+"Kristen","Dow","","","","","","adow6985@aol.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Dave","Rich","","","","","","aems_medic19@hotmail.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Arlene","Feller","","","","","","afeller957@comcast.net","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Harry","Miller","","","","","","harry.miller@trw.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Harry","Rajt","","","","","","harry_rajt@hotmail.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Herbert","Driscoll","","","","","","hbdriscoll@charter.net","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Heather","Christian","","","","","","hchristian@hanover.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Marie","Kenny","2788 W Genesee St","Lapeer","MI","48446","810-245-4564","mebkenny@msn.com","","6","","Below is information on our benefit and our donation request.  I would love for you to receive some new business through this and also have it be financially beneficial for you.  If you wanted to do a free night with a paid night, or some sort of "extra's package" with a two night stay, or another idea of your choice, that would be wonderful!\r
+\r
+The soccer families from Lapeer Michigan are joining together in order to raise money for the new Lapeer East and Lapeer West varsity field.   We have two high schools and are working together as a community to create one varsity soccer field that both schools can use.  Our community Optimist group generously built a grass field.  We are now trying to raise money to finish the project.    Monies raised from this event will enable us to move towards furnishing the facility with team benches, bleachers, a sound system and storage shed. \r
+\r
+We are looking for donations that we can include in our auction on May 15.   The busy vacation time is soon to arrive and we are looking for new vacation ideas for our families that will draw their interest.    We would love to include you on our donors list and “top vacation destinations list”.  In return, your business name will appear in our fliers as well as any promotional material leading up to the date of the auction.  Ads will be run in the County Press (circulation 11,691) and LA View (circulation 35,000).  At the auction, each bidder will receive a program booklet that will include all your contact information as well.  We expect to have more than 600 bidders at the auction.  A tax deductible donor form is attached.\r
+\r
+Thank you for your consideration.  With your generosity we can make this a spectacular event and take a big step towards fulfilling facility goals.  We also hope that through your donation, some of our supporters will be visiting you for one of their vacation stops this year.\r
+\r
+\r
+\r
+Marie Kenny\r
+Lapeer East 1994\r
+Chairperson- Pasta Dinner/Auction\r
+2788 W. Genesee St.\r
+Lapeer, MI 48446\r
+mebkenny@msn.com \r
+(810) 245-4564\r
+","","","2009-04-02"
+"Anne","Kruszewski","","","","","","akruszewski207035mi@comcast.net","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Michelle","Albert","","","","","","albert_jen2002@hotmail.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"","","","","","","","jalexander@saultstar.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Ryan","Maier","","","","","","anryinfl@yahoo.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Bobbi","Galarno","","","","","","bgalarno@spsd.net","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Brian","Garvey","","","","","","bgarveycpa@sbcglobal.net","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Brian","Jaynes","","","","","","bjaynes@jerviswebb.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Robert","Garvey","","","","","","bobgarvey@ameritech.net","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Bernadette","Harkness","","","","","","bsharkne5@sbcglobal.net","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Linda","Burns","","","","","","burfam6@shianet.org","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Craig","Leland","","","","","","buroak2thdoc@embarqmail.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Bob","Weiss","","","","","","bweiss@vinu.edu","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Carolyn","Conklin","","","","","","cac82980@yahoo.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Caroline","Campbell","","","","","","campbellmom2@sbcglobal.net","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Christine","McCoy","","","","","","camtem@aol.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Michael","Kontos","","","","","","cathedraldean@rrohio.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"David","Cawthon","","","","","","cawthon@chartermi.net","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Carol","Lalka","","","","","","cclalka@yahoo.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Jane","Kerrigan","","","","","","bridgetsma@netzero.net","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Cynthia","Dudek","","","","","","cdudek4@sbcglobal.net","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Lori","Grysman","","","","","","cgrysman@rogers.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Cheryl","Lewandowski","","","","","","cheryl74hygiene@aol.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Cheryl","Krisniski","","","","","","cherylmel@comcast.net","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Harry","Cole","","","","","","cole22468@wideopenwest.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Dianna","Collins","","","","","","collinsd@ewashtenaw.org","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Deanna","Flynn","","","","","","crescent26@comcast.net","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Dawn","Cruz","","","","","","cruzindawn@comcast.net","","","","","2007-11-20","2007-11-20","2007-11-20"
+"John","Whitehead","","","","","","cwjw@wowway.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Carol","Barry","","","","","","6barry97@comcast.net","","","","","2009-02-02","2009-02-02","2009-02-02"
+"Thomas","Fedewa","","","","","","dalefedewa@yahoo.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"David","Edwards","","","","","","dane0123@charter.net","","","","","2007-11-20","2007-11-20","2007-11-20"
+"David ","Willson","","","","","","davewillson@comcast.net","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Steve","Carlson","","","","","","carlson54@msn.com","","","","","2009-02-04","2009-02-04","2009-02-04"
+"David","Briegal","","","","","","dbriegel@swmich.edu","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Patrick","McLaughlin","","","","","","patrick@mmgtv.com","","","","","2009-02-17","2009-02-17","2009-02-17"
+"Derek","Diacono","","","","","","ddiacono@aol.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"David","Griffus","","","","","","dgriffus@umich.edu","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Diane","Charbonneau","","","","","","dianecharb@hotmail.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Thomas & Denise","Crystal","","","","","","schdt597@cs.com","","","","","2009-04-06","2009-04-06","2009-04-06"
+"David","Nacht","","","","","","dnacht@nachtlaw.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Christine","McCarthy","","","","","","dnmccarthy@ameritech.net","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Bob","Quackenbush","","","","","","rquack@sbcglobal.net","","","","","2009-05-22","2009-05-22","2009-05-22"
+"Dorothea","Genetos","","","","","","dorotheaag322@aol.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Damon","Parker","","","","","","dpkts@aol.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"","","","","","","","cb_heaser@yahoo.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Oleg","Dubkovetski","","","","","","dubkovetski@sbcglobal.net","","","","","2007-11-20","2007-11-20","2007-11-20"
+"nicole","","","","","","","ndsnyder13@yahoo.com","","","","","2013-07-26","2013-07-28","2013-07-23"
+"Chris","Clark","","","","","","elclark@deloitte.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Linda","Emaus","","","","","","emo_mom49@yahoo.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Mike","Eykens","","","","","","eykens@sympatico.ca","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Gail","Roberts","","","","","","gail7084@aol.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"","","","","","","","james.faulkner@comcast.net","","","","","2009-06-04","2009-06-04","2009-06-04"
+"George","Ames","","","","","","games3832@comcast.net","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Gary","Garlock","","","","","","garlockg@aol.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Joyce","Stoflinsky","","","","","","joycestof@columbus.rr.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Tony","Cammarata","","","","","","gcamm71@hotmail.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Denise","Chapman","","","","","","gchapman@csdesigngroup.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"John","Girard","","","","","","girard@chartermi.net","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Joel","Drechny","","","","","","jcdrechny@sbcglobal.net","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Tracy","Hackman","","","","","","glenhackman@yahoo.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Amy and David","Green","","","","","","greenenterprises@comcast.net","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Liliana","Stoneback","","","","","","gstoneb669@comcast.net","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Harold","Shugarman","","","","","","hal@shugarman.net","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Heidi","Doyle","","","","","","hdoyle@charter.net","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Hina","Desai","","","","","","hisanjani@aol.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Howard","Lee","","","","","","howardlee@comcast.net","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Heather","Hufnagel","","","","","","hrhuf@voyager.net","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Joey","Huston","","","","","","huston@msu.edu","","","","","2007-11-20","2007-11-20","2007-11-20"
+"","","","","","","","kdjonas@charter.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Greg","Abraham","","","","","","infoarch2@msn.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Alicia","Knox","","","","","","jad0177@aol.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"James","Hummert","","","","","","jamiehummert@msn.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Roxanne","Brooks","","","","","","jamrbrooks@comcast.net","","","","","2007-11-20","2007-11-20","2007-11-20"
+"janet","Spiegel","","","","","","janetlspiegel@hotmail.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"John","Bahlman","","","","","","jbahlman@dstewart.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"","","","","","","","millsgang@shaw.ca","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Jack","Christensen","","","","","","jchris6811@aol.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"John","Lewis","","","","","","jdlewis172@comcast.net","","","","","2007-11-20","2007-11-20","2007-11-20"
+"","","","","","","","rlwagner99@comcast.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Jeff","Hutting","","","","","","jeff.hutting@autoliv.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Jennifer","Franke","","","","","","jenfranke1@aol.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Mark","","","","","","","idolguard-mcjd@yahoo.com","","9","","Looking to contact Liz Roach.  Is she still there selling real estate?  Do you have a contact #?\r
+\r
+Thanks,\r
+Mark","","","2011-09-23"
+"Jill","Bentley","","","","","","jillbentley4@comcast.net","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Joe ","Horn","","","","","","jh3157@att.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Joseph","Sullivan ","","","","","","sullijos@yahoo.com ","","","","","2009-10-22","2009-10-22","2009-10-22"
+"Richard & Susan","Dudzik","","","","","","dudzikrj@yahoo.com ","","","","","2009-04-06","2009-04-06","2009-04-06"
+"Dick","Hitch","","","","","","rphitch@ameritech.net","","","","","2009-05-22","2009-05-22","2009-05-22"
+"Jim","Williams","","","","","","jjw@wwrplaw.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"John","Kirwan","","","","","","kirwanje@aol.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Lisa","Fulgenzi","","","","","","jlfulgenzi@comcast.net","","","","","2007-11-20","2007-11-20","2007-11-20"
+"John","McGehee","","","","","","jmcgehee@comcast.net","","","","","2007-11-20","2007-11-20","2007-11-20"
+"James","Baumgartner","","","","","","jwbaumgartner1@comcast.net","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Marissa","Williams","","","","","","jnay@msdwt.k12.in.us","","","","","2007-11-20","2007-11-20","2007-11-20"
+"John","Fields","","","","","","jnfields1@hotmail.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Joerg","Burzer","","","","","","joerg.burzer@gmx.de","","","","","2007-11-20","2007-11-20","2007-11-20"
+"John","McMahon","","","","","","johng@mcmahonbaldwin.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Joshua","Dulin","","","","","","joshua_dulin@yahoo.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"","","","","","","","janetkellerman@yahoo.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Judy","Calewarts","","","","","","judith.calewarts@aurora.org","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Julie","MacArthur","","","","","","julie.macarthur@yahoo.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"","","","","","","","kellyo@chartermi.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Jason","Weisler","","","","","","jweisler@comcast.net","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Kathryn","Logan","","","","","","kalogan2@uiuc.edu","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Karen","Brines","","","","","","karenbrines@charter.net","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Michael","Sharp","","","","","","kathleen@plumspring.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Kathleen","Summers","","","","","","kathys711@aol.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Kevin","Beadle","","","","","","kb2697@att.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"","","","","","","","mistephans@sbcglobal.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Charlene","Madison","","","","","","kcabmadison@peoplepc.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Kathie & Mark","Cesario","","","","","","kcesario@mhc.net","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Patty","Kearly","","","","","","kearly@chartermi.net","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Kelly","Hahn","","","","","","kelpro12@yahoo.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Ken","McLaughlin","","","","","","kenmclaughlin@yahoo.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Mr. and Mrs.","Herman","","","","","","khahn@pentastaraviation.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Keri","Hultink","","","","","","khultink@aol.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"","","","","","","","rnimps@wcoil.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Kirk","Olson","","","","","","Kirklolson@msn.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"","","","","","","","srdreez@gmail.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Kristi","Lewis","","","","","","kjdlewis@comcast.net","","","","","2007-11-20","2007-11-20","2007-11-20"
+"","","","","","","","tom.nienhaus@live.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Karen","Sucher","","","","","","klsucher@aol.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"","","","","","","","z629@aol.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Kristy","Stratman","","","","","","kocenasek@co.genesee.mi.us","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Ann","Steenwyk","","","","","","kasteenwyk@charter.net","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Richard","Letarte","","","","","","kriss@nhtt.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Kristine","Austin","","","","","","kristine13@msn.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Kelly","Thomas","","","","","","krthomas1@hotmail.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Michael","La Charite","","","","","","lacharit@edzone.net","","","","","2007-11-21","2007-11-21","2007-11-21"
+"Renee","Lane","","","","","","lane447@comcast.net","","","","","2007-11-21","2007-11-21","2007-11-21"
+"Janet","pugno","","","","","","janpugno@yahoo.com","3","4","","We are arriving this Thurs, June 18th , Res # 80843.We will need two high chairs and 2 pack and play baby cribs.\r
+Thank you.\r
+Jan Pugno ","","","2009-06-15"
+"Lindsay","Nicholson","","","","","","lindsay_erickson@yahoo.com","","","","","2007-11-21","2007-11-21","2007-11-21"
+"Lisa","Bott","","","","","","lisabott@sbcglobal.net","","","","","2007-11-21","2007-11-21","2007-11-21"
+"Bill","Rimmke","","","","","","rimmsouth@yahoo.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Laurel","MacKay","","","","","","liwymi_1972@hotmail.com","","","","","2007-11-21","2007-11-21","2007-11-21"
+"Jane","McNally","","","","","","ljmcnally@shaw.ca","","","","","2007-11-21","2007-11-21","2007-11-21"
+"Lynne","Kent","","","","","","lkent329@aol.com","","","","","2007-11-21","2007-11-21","2007-11-21"
+"Tim and Laurette","Stone","","","","","","lmstone@comerica.com","","","","","2007-11-21","2007-11-21","2007-11-21"
+"Lori","Maurice","","","","","","lorim@ci.royal-oak.mi.us","","","","","2007-11-21","2007-11-21","2007-11-21"
+"Lisa","Sutton","","","","","","lsutton@hrblock.com","","","","","2007-11-21","2007-11-21","2007-11-21"
+"Luciana","Antonelli","","","","","","luciana_antonelli@yahoo.com","","","","","2007-11-21","2007-11-21","2007-11-21"
+"Lynn","Kennedy","","","","","","lynn.kennedy@eds.com","","","","","2007-11-21","2007-11-21","2007-11-21"
+"Jon Christian","McCall","","","","","","m3lamm@yahoo.com","","","","","2007-11-21","2007-11-21","2007-11-21"
+"Adam","Lis","","","","","","adamlis01@gmail.com","","","","","2009-02-02","2009-02-02","2009-02-02"
+"Anne Marie","Jurack","","","","","","mackybaby2@hotmail.com","","","","","2007-11-21","2007-11-21","2007-11-21"
+"Mary","Bester","","","","","","marybester@comcast.net","","","","","2007-11-21","2007-11-21","2007-11-21"
+"Paul","Beitz","","","","","","paul.beitz@cbre.com","","","","","2009-02-17","2009-02-17","2009-02-17"
+"Mary","Parsons","","","","","","maryparsons77@comcast.net","","","","","2007-11-21","2007-11-21","2007-11-21"
+"Tony           ","Ferlito","","","","","","tonyf@ferlitoconstruction.com","","","","","2009-04-06","2009-04-06","2009-04-06"
+"Lisa","Shepard","","","","","","mattshep@comcast.net","","","","","2007-11-21","2007-11-21","2007-11-21"
+"Matt","Sinke","","","","","","mattsinke@hotmail.com","","","","","2007-11-21","2007-11-21","2007-11-21"
+"Susannah","Thomas","","","","","","matt-susannah@chartermi.net","","","","","2007-11-21","2007-11-21","2007-11-21"
+"Melissa","Fabits","","","","","","mbfabits@hotmail.com","","","","","2007-11-21","2007-11-21","2007-11-21"
+"Matt","Catlin","","","","","","mcatlin@futureeng.com","","","","","2007-11-21","2007-11-21","2007-11-21"
+"Ann","Titus","","","","","","pdtamt@hotmail.com","","","","","2009-05-22","2009-05-22","2009-05-22"
+"Michael","Cox","","","","","","mcox@galaxyc.us","","","","","2007-11-21","2007-11-21","2007-11-21"
+"Molly","Evans","","","","","","mevans9@yahoo.com","","","","","2007-11-21","2007-11-21","2007-11-21"
+"","","","","","","","chris.waier@gmail.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"","","","","","","","janetlynnbree@comcast.net","","","","","2009-06-04","2009-06-04","2009-06-04"
+"","","","","","","","kemclean@dow.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Kathleen","Merryman","","","","","","mivol@sbcglobal.net","","","","","2007-11-21","2007-11-21","2007-11-21"
+"","","","","","","","mnmckellar@mshiplaw.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Marilyn","Westbrook","","","","","","mjwestbrook@comcast.net","","","","","2007-11-21","2007-11-21","2007-11-21"
+"Mark","Gates","","","","","","mmbagates@charter.net","","","","","2007-11-21","2007-11-21","2007-11-21"
+"Maria","Miller","","","","","","mmiller5@hfhs.org","","","","","2007-11-21","2007-11-21","2007-11-21"
+"Teressa","Zettelmaier","","","","","","mnikitas@tds.net","","","","","2007-11-21","2007-11-21","2007-11-21"
+"","","","","","","","robertf@myself.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"","","","","","","","staceybaker@campbelldodge.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Michael","Theile","","","","","","mtheile@co.genesee.mi.us","","","","","2007-11-21","2007-11-21","2007-11-21"
+"natalie","Snow","","","","","","nbncsnow@sbcglobal.net","","","","","2007-11-21","2007-11-21","2007-11-21"
+"Natasha","Crowell","","","","","","nbutkovich@yahoo.com","","","","","2007-11-21","2007-11-21","2007-11-21"
+"Nancy","Golden","","","","","","nkgolden@comcast.net","","","","","2007-11-21","2007-11-21","2007-11-21"
+"Gus","Kott","","","","","","noelkott@sbcglobal.net","","","","","2007-11-21","2007-11-21","2007-11-21"
+"","","","","","","","tomnewcomb@hotmail.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"James","Murray","","","","","","oedy@adelphia.net","","","","","2007-11-21","2007-11-21","2007-11-21"
+"Robert","Brown","","","","","","pachas@sbcglobal.net","","","","","2007-11-23","2007-11-23","2007-11-23"
+"Phyllis","Allen","","","","","","pachesney1@yahoo.com","","","","","2007-11-23","2007-11-23","2007-11-23"
+"Linda","Parker","","","","","","parkerdirtcycle@sbcglobal.net","","","","","2007-11-23","2007-11-23","2007-11-23"
+"John","Cooper","","","","","","johncooper02@sprynet.com","","9","","Arriving with group for Buttons on Thursday, Condo numbers 18 and 20.  Is there an outdoor fire pit for evening relaxing on property?","","","2009-06-08"
+"Patricia","Riggs","","","","","","patlriggs@comcast.net","","","","","2007-11-23","2007-11-23","2007-11-23"
+"amy","kremer","","","","","","amykremer72@yahoo.com","2","6","","","2010-12-27","2010-12-30","2010-12-20"
+"Dan","Stuart","","","","","","danbstuart@yahoo.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Phillip","Labelle","","","","","","philip.labelle@marriott.com","","","","","2007-11-23","2007-11-23","2007-11-23"
+"Pamela","Forton","","","","","","profftu@hotmail.com","","","","","2007-11-23","2007-11-23","2007-11-23"
+"Peter","Vanden Berg","","","","","","p.vberg@att.net","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Floy","Schaeffer","","","","","","pshaeffam@aol.com","","","","","2007-11-23","2007-11-23","2007-11-23"
+"Randy","","","","","","810-635-2916","","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Bob","Musch","","","","","","r.musch@dowcorning.com","","","","","2007-11-23","2007-11-23","2007-11-23"
+"Dottie","Britz","","","","","","randdcellars@aol.com","","","","","2007-11-23","2007-11-23","2007-11-23"
+"Jessica","Adams","","","","","","adamsj18@gmail.com","","","","","2009-02-02","2009-02-02","2009-02-02"
+"Richard","Bryant","","","","","","rbryant156@aol.com","","","","","2007-11-23","2007-11-23","2007-11-23"
+"Rebecca","Gowan","","","","","","rgowan@randmcnally.com","","","","","2007-11-23","2007-11-23","2007-11-23"
+"Susan","Halonen","","","","","","rhalonen@comcast.net","","","","","2007-11-23","2007-11-23","2007-11-23"
+"Rhonda","Gould","","","","","","rhondagreg87@aol.com","","","","","2007-11-23","2007-11-23","2007-11-23"
+"Joseph","Rebh","","","","","","rrconstruction05@sbcglobal.net","","","","","2007-11-23","2007-11-23","2007-11-23"
+"Richard","Storch","","","","","","richard.storch@hp.com","","","","","2007-11-23","2007-11-23","2007-11-23"
+"Rose","Noble","","","","","","rosen@catholicweb.com","","","","","2007-11-23","2007-11-23","2007-11-23"
+"Richard","Bainter","","","","","","rbainter@newmarcorp.com","","","","","2007-11-23","2007-11-23","2007-11-23"
+"Sheila","McNab","","","","","","mcnab@comcast.net","","","","","2007-11-23","2007-11-23","2007-11-23"
+"Neil ","Wallace ","","","","","","newall@aol.com","","","","","2009-02-05","2009-02-05","2009-02-05"
+"Paula","Harris","","","","","","paulaharris@juf.org","","","","","2009-02-17","2009-02-17","2009-02-17"
+"Rob","Johnson","","","","","","rwjohnson@aaamichigan.com","","","","","2007-11-23","2007-11-23","2007-11-23"
+"Deborah       ","Filos","","","","","","dfilos@comcast.net","","","","","2009-04-06","2009-04-06","2009-04-06"
+"Sandy","Lorence","","","","","","sandyfleet@sbcglobal.net","","","","","2007-11-23","2007-11-23","2007-11-23"
+"Sashi","Krishnamoorthy","","","","","","sashi_arthi@yahoo.com","","","","","2007-11-23","2007-11-23","2007-11-23"
+"Manny","Sanchez","","","","","","sbsan@charter.net","","","","","2007-11-23","2007-11-23","2007-11-23"
+"Sandra","Dailey","","","","","","sdailey11@comcast.net","","","","","2007-11-23","2007-11-23","2007-11-23"
+"","","","","","","","ciucanudobra@aol.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Suzanne","Knoff","","","","","","sdknoff@aol.com","","","","","2007-11-23","2007-11-23","2007-11-23"
+"","","","","","","","janiwilliams@yahoo.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Scott","Wooster","","","","","","sewooster@hotmail.com","","","","","2007-11-23","2007-11-23","2007-11-23"
+"Sharon","Koscik","","","","","","sharon.koscik@osumc.edu","","","","","2007-11-23","2007-11-23","2007-11-23"
+"Michele","Short","","","","","","shortj@plainfieldchartertwp.org","","","","","2007-11-23","2007-11-23","2007-11-23"
+"Scott","Hunter","","","","","","shunter@amwaygrand.com","","","","","2007-11-23","2007-11-23","2007-11-23"
+"","","","","","","","ken@completeco.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Sandy","Brady","","","","","","slb@oaklandcountycu.com","","","","","2007-11-23","2007-11-23","2007-11-23"
+"Kirk","Sledzinski","","","","","","sledski1@aol.com","","","","","2007-11-23","2007-11-23","2007-11-23"
+"Julia","Royzenblat","","","","","","slyjul_6973@yahoo.com","","","","","2007-11-23","2007-11-23","2007-11-23"
+"Shari","Maat","","","","","","smaat@charter.net","","","","","2007-11-23","2007-11-23","2007-11-23"
+"","","","","","","","moesern@wideopenwest.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Scott","Larson","","","","","","smlarsen1@juno.com","","","","","2007-11-23","2007-11-23","2007-11-23"
+"rebecca","Stasch","","","","","","stasch5445@comcast.net","","","","","2007-11-23","2007-11-23","2007-11-23"
+"","","","","","","","roger.quagliano@quebecorworld.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Steven","Pasbjerg","","","","","","stevepasbjerg@wowway.com","","","","","2007-11-23","2007-11-23","2007-11-23"
+"Amy","Stygles","","","","","","stygles@comcast.net","","","","","2007-11-23","2007-11-23","2007-11-23"
+"","","","","","","","stahlemhs@ameritech.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"","","","","","","","tompark@parkinsurance.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Katrin"," ","","","","","","fins2theleft@charter.net","","","We have a reservation for fathers day weekend under Storer and need to know if wireless internet access is available.  Please advise","","","","2009-06-08"
+"Svetlana","Zikherman","","","","","","szikherman@yahoo.com","","","","","2007-11-23","2007-11-23","2007-11-23"
+"Suzanne","Best","","","","","","t.t.best@att.net","","","","","2007-11-23","2007-11-23","2007-11-23"
+"Ted","Salna","","","","","","Ted_Salna@yahoo.com","","","","","2007-11-23","2007-11-23","2007-11-23"
+"Dennis","Dameron","","","","","","tenadameron@comcast.net","","","","","2007-11-23","2007-11-23","2007-11-23"
+"Tim","Tenbusch","","","","","","tenbuschii@hotmail.com","","","","","2007-11-23","2007-11-23","2007-11-23"
+"Steve","","","","","","","stevepercha@umich.edu","0","4","","I am unable to view the prices for the available condos on the weekend on Jan 18 - could you please give me the rates?  Also, are there any ski packages available with a reservation for this weekend?\r
+\r
+Thank you!!\r
+\r
+Steve","2008-01-18","2008-01-20","2007-12-06"
+"Thomas","Enders","","","","","","the@salvagegroups.com","","","","","2007-11-23","2007-11-23","2007-11-23"
+"Bob and Nan","Commissaris","","","","","","nthompson@jvtr.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Richard","Anderson","","","","","","theramax@aol.com","","","","","2007-11-23","2007-11-23","2007-11-23"
+"Tim","Hunnicutt","","","","","","thunnicutt@hoveycompanies.com","","","","","2007-11-23","2007-11-23","2007-11-23"
+"Tom","Lewis","","","","","","tlewis3@hfhs.org","","","","","2007-11-23","2007-11-23","2007-11-23"
+"Kent Cornwall","Kent Cornwall","224 Lawrence Road","NEW YORK","NEW YORK","11111","000-000-0000","kent3236@gmail.com","","","Search Engine Optimization\r
+We would like to get your website on first page of Google.\r
+All of our processes use the most ethical "white hat" Search Engine Optimization techniques that will not get your website banned or penalized.\r
+Please reply and I would be happy to send you a proposal.\r
+In order for us to respond to your request for information, please include your company’s website address (mandatory) and or phone number.\r
+","","","","2009-09-12"
+"Cheri","Fox","","","","","","pcfoxhouse@comcast.net","","","","","2009-02-17","2009-02-17","2009-02-17"
+"Anthony","Modaffare","","","","","","tmodaffare@ser-us.com","","","","","2007-11-23","2007-11-23","2007-11-23"
+"Kimberly","Hageman","","","","","","todkimhag@yahoo.com","","","","","2007-11-23","2007-11-23","2007-11-23"
+"Thomas","Cousins","","","","","","tomandsharyn@aol.com","","","","","2007-11-23","2007-11-23","2007-11-23"
+"Nancy ","Daniel","","","","","","njdaniel@sbcglobal.net","","","","","2009-02-05","2009-02-05","2009-02-05"
+"Julie","Bowles","","","","","","tribowles@yahoo.com","","","","","2007-11-23","2007-11-23","2007-11-23"
+"Tricia","Findh","","","","","","trishfinch@yahoo.com","","","","","2007-11-23","2007-11-23","2007-11-23"
+"Dan & Joanne","Kristensen","","","","","","kristensen@comcast.net","","","","","2009-04-06","2009-04-06","2009-04-06"
+"Victoria","Galpin","","","","","","victoriag@juno.com","","","","","2007-11-23","2007-11-23","2007-11-23"
+"Victoria","Shanahan","","","","","","vshanahan16@hotmail.com","","","","","2007-11-23","2007-11-23","2007-11-23"
+"Laura","Ditto","","","","","","vwditto@adelphia.net","","","","","2007-11-23","2007-11-23","2007-11-23"
+"David","Murbach","","","","","","davidmurbach@sbcglobal.net","","","","","2009-05-22","2009-05-22","2009-05-22"
+"","","","","","","","clark.mike@yahoo.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Will","Iglikowski","","","","","","wiglikow@umich.edu","","","","","2007-11-23","2007-11-23","2007-11-23"
+"Laura","Wilczynski","","","","","","wilczynl@saline.k12.mi.us","","","","","2007-11-23","2007-11-23","2007-11-23"
+"Janette","Carras","","","","","","williamcarras@comcast.net","","","","","2007-11-23","2007-11-23","2007-11-23"
+"William","Roemer","","","","","","wroemer@bex.net","","","","","2007-11-23","2007-11-23","2007-11-23"
+"","","","","","","","janluedtke@comcast.net","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Eric","Zimmerman","","","","","","zimco01@yahoo.com","","","","","2007-11-23","2007-11-23","2007-11-23"
+"","","","","","","","kenfine@aol.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Marsha","Lyttle","","","","","","mra-inc@chartermi.net","5","6","","Tried to check rates and availability on line but site doesn't allow a "back" function to view other condos without starting search over.  Please advise rate and any availability for this date period.","2007-12-27","2007-12-30","2007-11-23"
+"Judy ","Dodge","2470 walenjus","Holt","MI","48842","517 353-4420 ext. 307","dodgej@msu.edu","5","4","","Are small dogs (around 5lbs) allowed?","","","2007-11-29"
+"Irene","Marco","2648 Alger Street SE","Grand Rapids,","MI","49546","616-974-0664","i.marco@yahoo.com","1","","I am interested in units for sale.","Unit 12 and 38.","2007-12-29","2008-01-02","2007-11-29"
+"Henry","Vecchioni","7657 Elmbrooke Way","Brighton","MI","48116","810-229-4848","hvecchio@charter.net","","9","","I am contacting you to ensure we pay the balance for reservation #76358, 12/29/07-1/01/08. Please call me. Thank you.","","","2007-11-30"
+"","","","","","","","rolmaster7@charter.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Donna","Poyner","","","","","248-885-0446","donna.poyner@caretechsolutions.com","","8","","I will be staying in one of your condos over the next couple days and I was wondering if the wireless internet is available inside all of the condos or just in your conference room?","","","2007-12-10"
+"chad","osborne","41422 coolidge st","belleville","michigan","48111","734-834-3621","vbfd30@comcast.net","6","1","","can we substitute one course for another in the big fore package.","2008-04-01","2008-08-31","2007-12-28"
+"Joe","","","","","","","741@yahoo.com","","7","","You do not need to respond, but I think it would be a great idea if you guys paired with nubs and boyne to create ski and stay pacages. I hope you will consider doing this because I am thinking about coming to trout creek soon.","","","2008-01-02"
+"","","","","","","","stank5486@aol.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Jim","Lucas","","","","","920-540-0632","jim.avs@hotmail.com","","9","","Last summer my family and I stayed in unit 128 for an extended period of time. We were very happy with our stay and I'm sure we will be returning. My question is, can you get me the brandand style information of the bed in the master bedroom of this unit? We haven't slept as good as when we were there. Thank you,JimLucas","","","2008-01-08"
+"","","","","","","","tr.collins@comcast.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Nick","Roopas","4152 Lake Forest Drive East","Ann Arbor","MI","48108","7343415443","nickroopas@yahoo.com","","","","","","","2010-04-15"
+"Cecelia","Maloney","CP Road","New York ","New York ","10001","","cmceceliamaloney540@gmail.com","","6",""," Do you wish you could increase your online leads?  Getting a 1st page Google ranking is easier and more cost-effective than you might think.  We have helped a lot of businesses thrive in this market and we can help you!  Simply hit reply and I’ll share with you the cost and the benefits. See you at the top! \r
+","","","2009-07-15"
+"","","","","","","","kenretire@att.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Matthew","Smith","4975 west river road","Mt Pleasant","MI","48858","1-989-330-4460","mattsmithomatic@gmail.com","5","6","","I would like a room with the dual showers if possible.","2008-04-13","2008-04-20","2008-02-06"
+"Randal","Huber","","","","","","rhuber@firstii.com","","","","","2007-09-28","2007-09-28","2007-09-28"
+"Eric","Toczylowski","","","","","","estoz@wowway.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Dora","Ferrari","","","","","","dferrari01@gmail.com","2","","Actually considering a purchase situation for a summer home for a family of equestrians","","","","2008-02-22"
+"Ron","Brown","GR","GR","MI","49506","616-956-7163","Ron@RBBusinessImageServices.com","","8","Attn/Marketing Director\r
+\r
+Would you like to affordably advertise Traverse City to millions of affluent West Michigan consumers ?\r
+\r
+Rates from only $300/mo\r
+\r
+At RiverTown Crossings Mall-Busiest location in West Michigan with 15 million annual visitors\r
+\r
+At Celebration Cinemas: Grand Rapids,Muskegon,Mount Pleasant,Lansing,Benton Harbor,Portage\r
+\r
+Email us for more info.\r
+","","","","2008-02-23"
+"Jim & Barb       ","Lawson","","","","","","bjlawson@hughes.net","","","","","2009-04-06","2009-04-06","2009-04-06"
+"Raymond","Nowicki","6460 Sunningdale Dr.","Bloomfield Hills","MI","48301","248-408-4099","raynman219@gmail.com","5","9","","","2013-05-17","2013-05-18","2013-04-05"
+"Julie","Petrie","","","","","","jpetrie@fhps.us","","","","","2008-03-12","2008-03-12","2008-03-12"
+"Shawna","Clute","1102 MeadowView Dr.","Jackson","Ga","30233","989-295-7071","shopaholic24seven@gmail.com","","4","","Hi, I was just wondering if you had a package deal for renting your conference/banquet room and renting 2 condos for family? We live in Georgia and we are planning to have our small wedding in Petoskey/Harbor Springs area, I am just wondering if having a small wedding ( about 30-35 guest attending)in your banquet room is available to do. The date we are looking at to have the actual wedding is June 26,2008.\r
+\r
+Any suggestions would be helpful.\r
+\r
+Thank you,\r
+Troy & Shawna ","","","2008-03-10"
+"","","","","","","","kzoowave@comcast.net","","","","","2008-03-12","2008-03-12","2008-03-12"
+"","","","","","","","dcopeland@businesspeople.com","","","","","2008-03-12","2008-03-12","2008-03-12"
+"Sandra","Werner","","","","","","sanwerner@comcast.net","","","","","2008-03-12","2008-03-12","2008-03-12"
+"Jennifer","Otersen","","","","","","njotersen@verizon.net","","","","","2009-02-05","2009-02-05","2009-02-05"
+"","","","","","","","force4@hotmail.com","","","","","2008-03-12","2008-03-12","2008-03-12"
+"","","","","","","","lpgasman1075@hotmail.com","","","","","2008-03-12","2008-03-12","2008-03-12"
+"","","","","","","","claudiahuffmaster@yahoo.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Amy","Gilliam","","","","","","agilliam@acsc.net","","","","","2009-02-02","2009-02-02","2009-02-02"
+"Karen","Johnson","","","","","","mark-karen@comcast.net","","","","","2008-03-12","2008-03-12","2008-03-12"
+"","","","","","","","jaquette@charter.net","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Michele","Pirrone","","","","","","michele_pirrone@hotmail.com","","","","","2008-03-12","2008-03-12","2008-03-12"
+"Kevin","DeTrude","","","","","","kdetrude@dslindiana.net","","","","","2008-03-12","2008-03-12","2008-03-12"
+"","","","","","","","kenn32@comcast.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"","","","","","","","mush11@comcast.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Andrew","Daily","","","","","","adaily@twmi.rr.com","","","","","2008-04-15","2008-04-15","2008-04-15"
+"David","Brainard","1939 Providence NE","Grand Rapids","MI","49525","616-292-6411","davidbrainard@cbc-on-line.com","","8","Having been in the area...see comments below.","We have spent between 10 days and 2 weeks at Boyne Highlands 4 of the last 5 Summers. \r
+We are planning to come North again in July and are weighing out our \r
+options.  Looking at probably July 10-19.  We'll have two adults and 4 kids (ages 9 and under).  I need your best rate as we will be comparing with what the \r
+Highlands has to offer.\r
+\r
+Please e-mail me your response.\r
+\r
+--David--\r
+","2008-07-10","2008-07-19","2008-03-31"
+"Kevin","Rouse","","","","","","kkjr107@aol.com","","9","","I stayed in Unit 20 last weekend with the Rouse-Ayoub party, I believe I left my eye glassed in downstairs front bedroom on dresser. Any way you could ask cleaning staff our take a look for me?","","","2008-04-04"
+"sheila","semrou","313 E Warnimont Ave","Milwaukee","WI","53207","414 861 6675","ssemrou@milwpc.com","5","6","","Can you mail me a hardcopy brochure","","","2008-04-10"
+"Kelly ","Wellings","431 Kimberly","Birmingham","MI","48009","248 203 2914","kelbuckley@hotmail.com","4","6","","Hello,\r
+We are very interested in coming to stay at your resort with our 2 and 4 year old and we would like to know how far away the nearest sandy beaches,  restaurants and downtown harbor springs are please.  Thank you very much for your help and hopefully we'll see you soon.\r
+Kind regards\r
+Kelly Wellings","2008-08-11","2008-08-21","2008-04-10"
+"","","","","","","","rosecity1@comcast.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Jamy","Hengesbach","","","","","","jrh779@yahoo.com","5","8","More info on Unit # 29 that's for sale.  Is there a rental program and can you provided gross income amounts for a year.  Is there an association fee and what does it cover?  Thanks, ","","","","2008-04-25"
+"","","","","","","","stevegz02@yahoo.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Lori","Wilson","","","","","","cuneofam@hotmail.com","","","","","2008-04-29","2008-04-29","2008-04-29"
+"","","","","","","","trberndt@yahoo.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Liam","Van Vorhis","","","","","","mr.vanvorhis@yahoo.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Sam","Masih","","","","","","smasih4@hotmail.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Josh","Yurich","","","","","","joshuayurich@gmail.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Dan","Kelly","","","","","","superdan777@gmail.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Jerry","Bollman","","","","","810-343-8282","","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Jennifer","Hercreg","","","","","","jhercreg@sbcglobal.net","","","","","2008-04-29","2008-04-29","2008-04-29"
+"Christian","Houy","","Howell","MI","48843","","CAHOUY@SBCglobal.net","","","owner guest","","2003-08-17","2003-08-17","2003-08-17"
+"Alex","Hultgren","","","","","","ahultgre@umich.edu","","","","","2008-04-29","2008-04-29","2008-04-29"
+"","","","","","","","coachperrie@charter.net","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Roy","Schneider","","","","","","artimiss@bex.net","","","","","2008-05-01","2008-05-01","2008-05-01"
+"C.M.","Keoleian","","","","","","asarmoudlian@msn.com","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Bonnie","Perkins ","","","","","","bonnieperkins@comcast.net","","","","","2009-04-06","2009-04-06","2009-04-06"
+"Amber","Vaughn","","","","","","avaughn@emich.edu","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Andy","Geater","","","","","","andygeater@aol.com","","","","","2008-04-29","2008-04-29","2008-04-29"
+"Thomas","Hughes","","","","","","angelalhughes@hotmail.com","","","","","2008-04-29","2008-04-29","2008-04-29"
+"J","Rocholl","","","","","","jrocholl@comcast.net","","","","","2009-05-22","2009-05-22","2009-05-22"
+"Bill","Candey","","","","","","bcandey@wadetrim.com","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Zaharias","Veziridis","","","","","","angelika.veziridis@googlemail.com","","","","","2008-04-29","2008-04-29","2008-04-29"
+"","","","","","","","jaycarr63@msn.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Ark","Kalinowski","","","","","","arkkal@cogeco.ca","","","","","2008-04-29","2008-04-29","2008-04-29"
+"Kristin","Dolinsky","","","","","","babykennedysmom@yahoo.com","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Jill","Barthlow","","","","","","bartjilll@charter.net","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Brynne","Coletti","","","","","","basmfc@aol.com","","","","","2008-05-01","2008-05-01","2008-05-01"
+"","","","","","","","nadolnyjenna@yahoo.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Dean","Tondreau","","","","","","maxig88@att.net ","","","","","2009-10-22","2009-10-22","2009-10-22"
+"Kathy","Leiter","","","","","","timgandkathyj@charter.net ","","","","","2009-10-26","2009-10-26","2009-10-26"
+"","","","","","","","rpkys@aol.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Thomas","Jordan","","","","","","BDJordan86@aol.com","","","","","2008-05-01","2008-05-01","2008-05-01"
+"","","","","","","","stevek@deckernut.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Barbara","Dawes","","","","","","bdawes@hmfdlaw.com","","","","","2008-05-01","2008-05-01","2008-05-01"
+"","","","","","","","trick@toronto.ca","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Randall","Vaughn","","","","","","leslielvaughn@comcast.net","","","","","2009-06-27","2009-06-27","2009-06-27"
+"Bobby","V","","","","","","veliofski@hotmail.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Mark","Thibault","","","","","","markt@bcmac.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Blair","Williams","","","","","","blairwill@wideopenwest.com","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Balajee","Nallamothu","","","","","","bnallamothu@gmail.com","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Bob ","Hanson","","","","","","bob.hanson@hutchinsonssi.com","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Jan","Rich","","","","","","bobandjan@toast.net","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Bob","Minnema","","","","","","bobminn@sbcglobal.net","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Cole","Weber","","","","","","coleweber@bell.blackberry.net","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Patricia","Hardy","","","","","","bozhardy@aol.com","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Aldona","Pleirys","","","","","","brakauskas01@comcast.net","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Brandon","Odell","","","","","","brandon.odell@hotmail.com","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Brian","Scully","","","","","","brian.p.scully@gmail.com","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Brian","Wohlscheid","","","","","","brianw@alertequip.com","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Brittnee","Huntley","","","","","","brittineeo@bex.net","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Bruce","Havenga","","","","","","bruce.havenga@focuspg.com","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Stephen","Kale","","","","","","sjkale@ameritech.net","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Kevin","Wolfram","","","","","","kswolfram@charter.net","","","","","2009-07-17","2009-07-17","2009-07-17"
+"David ","Ro","","","","","","burntmushu@yahoo.com","","","","","2008-05-01","2008-05-01","2008-05-01"
+"May","Pak","","","","","","butterfly6787@hotmail.com","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Scott","Abbott","","","","","","darillest356@aol.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Carol","Durnwald","","","","","","cabuss12@aol.com","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Dave","Lichner","","","","","","djlwarrenville@yahoo.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Carol","Stapleton","","","","","","carolstapleton@comcast.net","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Demian","Manceau","","","","","","carriemanceau@yahoo.com","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Catherine","Adams","","","","","","catherine_m_adams@yahoo.com","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Cathleen","DeBurton","","","","","","cgdeburton@hotmail.com","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Christine","Grifka","","","","","","cgrifka48843@aol.com","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Megan","Ristau","","","","","","gregandmeg@comcast.net","","","","","2008-11-25","2008-11-25","2008-11-25"
+"Christy","Winnell","","","","","","christy_winnell@whirlpool.com","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Dan","Allen","","","","","","danallensr@yahoo.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Ji","Cleis","","","","","","cleis5@charter.net","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Cindy ","Schwartz","","","","","","schw21@aol.com","","","","","2009-04-06","2009-04-06","2009-04-06"
+"Clint","Guess","","","","","","clint_guess@yahoo.com","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Colleen","Dougherty","","","","","","cmdougherty@logic.bm","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Colleen","Flanagan","","","","","","cmflanagan@ameritech.net","","","","","2008-05-01","2008-05-01","2008-05-01"
+"C. Michael","Healy","","","","","","cmichael.healy@ilitchholdings.com","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Bonnie","Nungester","","","","","","CNunge6341@aol.com","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Michael","Markowitz","","","","","","nm3djs@comcast.net","","","","","2009-02-05","2009-02-05","2009-02-05"
+"Rob","Bailey","","","","","","concorp@aol.com","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Colin","Connor","","","","","","connorc18@hotmail.com","","","","","2008-05-01","2008-05-01","2008-05-01"
+"John","Fluharty","","","","","","coquettefluharty@yahoo.com","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Mark ","Dagnan","","","","","","countrylawn@mac.com","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Christina","Palo","","","","","","cpalo@comcast.net","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Craig","Grembowski","","","","","","craigtamgrem@peoplepc.com","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Chuck","Meek","","","","","","CWMMEEK@AOL.COM","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Carol ","VanSickle","","","","","","cwv@trihull.com","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Debi","Kaczynski","","","","","","dakaczynski@comcast.net","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Daniel","Maas","","","","","","Danielpmaas@maplenet.net","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Joe","Kucik","","","","","","dc7730@yahoo.com","","","","","2008-05-01","2008-05-01","2008-05-01"
+"P","Lamarche","","","","","","plamarche@blonde-little.com","","","","","2009-05-22","2009-05-22","2009-05-22"
+"","","","","","","","coloradogradys@gmail.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"","","","","","","","jbring@hotmail.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Deborah","Katz","","","","","","debkatz@mac.com","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Dan ","Harkins","","","","","","dharkins1@cogeco.ca","","","","","2008-05-01","2008-05-01","2008-05-01"
+"","","","","","","","kerschke@aol.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"","","","","","","","nancyapeterson4@aol.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Denise","VanDrie","","","","","","dkvdrie@comcast.net","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Dan ","Leffers","","","","","","dleffers@pdr-usa.net","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Debbie","Maniko","","","","","","dmaniko@chartermi.net","","","","","2008-05-01","2008-05-01","2008-05-01"
+"","","","","","","","rracic@sympatico.ca","","","","","2009-06-07","2009-06-07","2009-06-07"
+"John","Dicker","","","","","","dicker677@comcast.net","","","","","2008-05-01","2008-05-01","2008-05-01"
+"","","","","","","","stevemarcial@hotmail.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"David ","Shawn","","","","","","donnashawn@yahoo.com","","","","","2008-05-01","2008-05-01","2008-05-01"
+"","","","","","","","trisha@cablespeed.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Drew","Grzegorczyk","","","","","","drewgrzegorczyk@delta.edu","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Alison","Schwartz","","","","","","dschwartz1@comcast.net","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Bob and Joan","Bowman","","","","","","usbowmans@cox.net","","","","","2009-06-27","2009-06-27","2009-06-27"
+"Brian","Vella","","","","","","bcvella@hotmail.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Don","Nellis","","","","","","don_nellis@msn.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Elizabeth","Mosher","","","","","","elizabeth.mosher@farmington.k12.mi.us","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Dan","Woods","","","","","1-810-239-5143","","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Eric","Merkle","","","","","","emerkle@bdo.com","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Sabrina","Williams","","","","","","eshwilliams83@yahoo.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Thomas","Peitz","","","","","","extruguru@chartermi.net","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Renee","Hubbard","","","","","","fatherhubbard@sbcglobal.net","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Robert","Garrison","","","","","","citysweet1@aol.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Ron","Englehart","","","","","","rengleha@itape.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Carole","Fetke","","","","","","fetke@sbcglobal.net","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Annette","Fink","","","","","","finkville@bex.net","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Marc","Laytham","","","","","","marcus.laytham@louisvilleky.gov","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Aaron","Freudigman","","","","","","fordfreud@yahoo.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Paul","Driedger","","","","","","pdriedgr@mnsi.net ","","","","","2009-10-20","2009-10-20","2009-10-20"
+"","","","","","","","adams@wmich.edu","","","","","2009-11-11","2009-11-11","2009-11-11"
+"Greg","Benefiel","","","","","","g.benny@charter.net","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Glenn","King","","","","","","agking@peoplepc.com","","","","","2009-02-02","2009-02-02","2009-02-02"
+"George","Edwards","","","","","","gedwards@pls-usa.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Geogre","Kinsler","","","","","","geokinsler@yahoo.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Norman ","Bird ","","","","","","norm_l_bird@comerica.com","","","","","2009-02-05","2009-02-05","2009-02-05"
+"Giancarlo","Pinterpe","","","","","","giancarlo.pinterpe@grubb-ellis.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Jennifer","Gilmore","","","","","","gilmore610@comcast.net","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Greg","Lewandowski","","","","","","greglewand@aol.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Lori","Wilson","","","","","","gringargentina@yahoo.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Charles","Handley","","","","","","Handleychaz@aol.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Daniel","Harro","","","","","","harroc@iserv.net","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Amy","Eagle","","","","","","eaglefamly@yahoo.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Diane","Moritz","","","","","","hcmiii@sbcglobal.net","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Rachel","Helms","","","","","","helmsr@frcohio.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Tina","Hopp","","","","","","hopt@chartermi.net","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Travis ","Piper","","","","","","pipers0511@comcast.net","","","","","2009-02-17","2009-02-17","2009-02-17"
+"Michelle ","Barclay","","","","","","prestonmichelle@hotmail.com","","","","","2009-10-16","2009-10-16","2009-10-16"
+"Josephine       ","Simon ","","","","","","bsimon44@gmail.com","","","","","2009-04-06","2009-04-06","2009-04-06"
+"Jason","Shaw","","","","","","jasonshaw@delta.edu","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Joseph","Trippel","","","","","","joe.trippel@gmail.com","","","","","2009-05-22","2009-05-22","2009-05-22"
+"Jaymee","Gross","","","","","","jaymee_gross@hotmail.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Judith","Landau","","","","","","jblandau@comcast.net","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Julie","Byrd","","","","","","jbyrd96@yahoo.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Theresa","Caruana","","","","","","jcar415@comcast.net","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Carolyn","Brooks","","","","","","jcbrooksie@comcast.net","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Jean","Charboneau","","","","","","jcharboneau@comcast.net","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Joseph","Reid","","","","","","jdreid3@capitolbancorp.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Jane","Debbrecht","","","","","","jedebb@aol.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"James","Patee","","","","","","jamespattee@comcast.net","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Jennifer","Backus","","","","","","jennifer.backus@dominos.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"James","Fitch","","","","","","jfitch3@ford.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Jim","Pappas","","","","","","jim@s3svc.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"","","","","","","","akiko@chartermi.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"Madisn","Baja","","","","","","jjbbaja@chartermi.net","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Joseph","Behrend","","","","","","jjbehrend@comcast.net","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Janet","Kaczmarek","","","","","","jkaczmarek@comcast.net","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Joshua","Rhoda","","","","","","jlrhoda76@comcast.net","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Jonathon","Mattis","","","","","","jmattis@owens-minor.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"","","","","","","","jbsearch310@yahoo.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Angela","Feltz","","","","","","jnafeltz@aol.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"James","Bohdan","","","","","","jnbohdan@juno.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"","","","","","","","kevbo@kevbo.us","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Jodi","Fichera","","","","","","jodifichera@yahoo.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"John","Thornburgh","","","","","","john.thornburgh@icemiller.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"","","","","","","","nantzw@bronsonhg.org","","","","","2009-06-07","2009-06-07","2009-06-07"
+"","","","","","","","rrrobien@hotmail.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"E.","Murray","","","","","","joy.murray@cengage.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Joseph","Zimmerman","","","","","","jpzimmerman24@msn.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Joe","Quay","","","","","","jquay1@stu.wccnet.edu","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Jean","Scroggin","","","","","","jscroggin@fumcmid.org","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Jim","Suchara","","","","","","jsuchara@eeiglobal.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"John","Travis","","","","","","jtravisanminc@aol.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Julia","Dos Santos","","","","","","julia.navaro@detroitdiesel.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Kevin & Kathy","Merlo","","","","","","kamerlo@comcast.net","","","","","2008-05-03","2008-05-03","2008-05-03"
+"","","","","","","","stewartcarpetcleaning@gmail.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Karen","Woodgate","","","","","","karwp@aol.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Kathy ","Bender","","","","","","kbender@chartermi.net","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Kim ","Danowski","","","","","","kdanowski@msn.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Matt","Kelleher","","","","","","kellehermd@yahoo.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Mira","Cooper","","","","","","agracoopkids@yahoo.com","","","","","2009-02-02","2009-02-02","2009-02-02"
+"Lory","Kingsley","","","","","","Kingsley3@comcast.net","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Ken","Keegan","","","","","","kjkeegan@comerica.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Jackie","Kleino","","","","","","kleinoj@msn.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Kristin","Combs","","","","","","kristi@strategicmail.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Keith","Roeder","","","","","","kroeder33@comcast.net","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Marsha & Tom ","Franke","","","","","","marshafranke@gmail.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Lynn","Dumais","","","","","","ladumais@comcast.net","","","","","2008-05-03","2008-05-03","2008-05-03"
+"John","Lang","","","","","","Langski@comcast.net","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Dan","LaPorte","","","","","","laportedan@yahoo.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Michelle","Lather","","","","","","lathermb@chartermi.net","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Laura","Chaput","","","","","","laurachaput@gmail.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Patricia ","Kerich","","","","","","pkerich@att.net","","","","","2009-02-17","2009-02-17","2009-02-17"
+"JEFF AND PAM ","THORNBURGH","","","","","","jthornburgh@machiningconcepts.net","","","","","2009-04-06","2009-04-06","2009-04-06"
+"David","Kaminski","","","","","","davidk025@comcast.net","","","","","2009-05-22","2009-05-22","2009-05-22"
+"","","","","","","","cunninghammichele@rocketmail.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Michael","LeFevre","","","","","","lefevre.mike@aod.org","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Leonard","Jenkins","","","","","","lenjenkins1@aol.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"","","","","","","","jcarlinodds@yahoo.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Sandra","Likic","","","","","","likics@yahoo.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"","","","","","","","kevin.knight@safholland.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Amy","Contrera","","","","","","amycontrera@comcast.net","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Lisa","Wehrmeister","","","","","","lmw54729@aol.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Macj","Adama","","","","","","lookmack@hotmail.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Ryan","Lopez","","","","","","lopez773@yahoo.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Loro","Shea","","","","","","LORIASHEA@SBCGLOBAL.NET","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Mike ","Rowley","","","","","","m_goblue51@yahoo.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"","","","","","","","ngiebink@umich.edu","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Andy","Trestrail","","","","","","ltmariner@comcast.net","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Andrew","Scott","","","","","","afscott4@hotmail.com","","","","","2009-07-30","2009-07-30","2009-07-30"
+"Joann","Vettraino","","","","","","m1jv4@comcast.net","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Paul","MacIntyre","","","","","","macintyreltd@aol.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"","","","","","","","rsmith0047@xplornet.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Kyle","Mahan","","","","","","maha4@fsuimail.ferris.edu","","","","","2008-05-03","2008-05-03","2008-05-03"
+"M. Annabelle","Alberts","","","","","","maralberts@deloitte.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Marcella","Ruscio","","","","","","marcella.ruscio@mac.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Marcia","Podolinsky","","","","","","marciajean@brktel.on.ca","","","","","2008-05-03","2008-05-03","2008-05-03"
+"","","","","","","","sthiel@airadv.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Marty ","Gorno","","","","","","martingorno123@hotmail.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Larry","Spedden","","","","","","lspeedo@yahoo.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"","","","","","","","tsday96@aol.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Teresa","Schaber","","","","","","matteresa@aol.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Matt","Stusick","","","","","","Matthew.Stusick@Xerox.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Bob & Judy","Elgin","","","","","","raelgin@cox.net","","","","","2009-06-27","2009-06-27","2009-06-27"
+"Tyler","Truskoski","","","","","","knightshockey22@gmail.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Alan","Whitehead","","","","","","al.white@td.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Mary","Nicholson","","","","","","MBNICH@aol.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Mary","Boster","","","","","","mboster@cinci.rr.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Donna","Brannagan","","","","","","mdbraggs@sympatico.ca","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Bill","Beslock","","","","","","Beslock@sbcglobal.net","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Marcie","Fischer","","","","","","mdfische@oakland.edu","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Mark","Blough","","","","","","meetama@aol.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Neal","Stone","118 Lawrence Road","New York","New York","11111","000-000-0000","nealstone123@gmail.com","6","1","","Search Engine Optimization\r
+\r
+We would like to get your website on first page of Google.\r
+All of our processes use the most ethical "white hat" Search Engine Optimization techniques that will not get your website banned or penalized.\r
+Please reply and I would be happy to send you a proposal.\r
+","","","2009-04-06"
+"Bob ","Beras","","","","","","rberas@donerus.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Jean-Pierre","Meijer","","","","","","MeijerJP@MSN.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Sylvia","Meijer","","","","","","MeijerSylvia@Hotmail.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Mike ","Schaller","","","","","","meschaller@dow.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Carol","Cleary","","","","","","ccleary@indy.rr.com","","","","","2009-02-07","2009-02-07","2009-02-07"
+"Polly","Crane ","","","","","","pollywog08@hotmail.com","","","","","2009-02-17","2009-02-17","2009-02-17"
+"Carl","Hereford","","","","","","nh01478@hotmail.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Michael","Renehan","","","","","","mprenehan@msn.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Marcia","Ramos","","","","","","mramos52@gmail.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Maurren","Rouse-Ayoub","","","","","","mrouse-ayoub@fishmangroup.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"","","","","","","","dan.shar@comcast.net","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Tom ","Beaumont","","","","","","tbeaumont1@cogeco.ca","","","","","2009-10-16","2009-10-16","2009-10-16"
+"","","","","","","","jcelgin@cox.net","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Tracy","Metzger","","","","","","metzger.4@hotmail.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Nicholas","Maloof","","","","","","ndmaloof@comcast.net","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Michelle","Royer","","","","","","michelleroyer@comcast.net","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Nicholas","Tomoff","","","","","","nick.tomoff@gmail.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Nicole","Shumway","","","","","","nshumway@biggby.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Roy","Harcourt","","","","","","nycroyboy@aol.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Davis","O'Brien","","","","","","obrien@millercanfield.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Barbara","O'Connor","","","","","","oconnorx2@sbcglobal.net","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Johann","Odermann","","","","","","odiekenyon87@yahoo.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Paul","Ozier","","","","","","ozr130@yahoo.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Pam","King","","","","","","PAMMYKING8384@AOL.COM","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Robert","Blazoff","","","","","","rblazoff@yahoo.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Lou-Anne","Perfetto","","","","","","persetto4@cogeco.ca","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Sandra","Pierce","","","","","","nbdpierce@aol.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Danielle","Riddell","","","","","","pgriddell@msn.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Joe","Sainato","","","","","","pharma1valpo@yahoo.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"","","","","","","","Kheiters@bloomfieldtwp.org","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Peter","Guthat","","","","","","pjguthat@hotmail.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Craig","Cavagnetto","","","","","","craig.cavagnetto@globalcrossing.com ","","","","","2009-10-16","2009-10-16","2009-10-16"
+"Patricia","Lucas","","","","","","plucas72@aol.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Dyana","Polderzyk","","","","","","polderdd@meijer.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"","","","","","","","ngrady08@gmail.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Robert","Bokram","","","","","","r.bokram@us.ionbond.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"John","Todevic ","","","","","","jtodevic@onlink.net ","","","","","2009-10-22","2009-10-22","2009-10-22"
+"","","","","","","","rstacy@trilla.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Heidi","Piela","","","","","","jchpiela@hotmail.com","","","","","2008-11-13","2008-11-13","2008-11-13"
+"Richard","Conrad","","","","","","rconrad@bright.net","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Kathy","Reed","","","","","","reedteam@chartermi.net","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Robert","Gerych","","","","","","rgerych@att.net","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Ricky","Carlson","","","","","","Rickyacarlson@westbristol.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Robin","Dame","","","","","","rldame@yahoo.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"","","","","","","","sue.perlin@plantemoran.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Robin","Gallagher","","","","","","robin.gallagher@yahoo.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Robin","Delaney","","","","","","robindelaney@comcast.net","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Mike","Kowalski","","","","","","rocoko@comcast.net","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Michelle","McWilliams","","","","","","prettykitty682@yahoo.com","","","","","2009-02-17","2009-02-17","2009-02-17"
+"Shelly","Claycomb","","","","","","sclay@chartermi.net","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Kelly","Sakkinen","","","","","","sakkink@lcc.edu","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Steve & Judy","Loofborow","","","","","","sal@hardwoodsolutions.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Steve","Sendelbach","","","","","","spsendelbach@hotmail.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Amy","Hilarides","","","","","","satkcat@sbcglobal.net","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Don","Holliday","10135 Park Stream Drive","Indianapolis","IN","46229","317-894-0579","donlynnh@sbcglobal.net","","5","","We are looking for a location for our 2010 family reunion. Approximately 140-150 people, 35-45 units. Is this a group you could handle?. Also do you have a map of your facility?","2010-07-10","2010-07-17","2009-04-07"
+"Curtis","Sawdon","","","","","","sawdon5c@aol.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Bob","Mumma","","","","","","bobmumma@earthlink.net","","","","","2009-05-22","2009-05-22","2009-05-22"
+"Cindy","Scott","","","","","","scott654@comcast.net","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Steven","Solys","","","","","","ssolys@comcast.net","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Vicky","Joldersma","","","","","","scottjoldersma@sbcglobal.net","","","","","2008-05-04","2008-05-04","2008-05-04"
+"","","","","","","","danieljbarberi@yahoo.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"","","","","","","","jcvelthoven@comcast.net","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Sharon","Moser","","","","","","shariandscottmoser@comcast.net","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Sharon","Cooper","","","","","","sharonoftroy@yahoo.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Mike","Silver","","","","","","sharslip@aol.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"","","","","","","","kickbxgayle@bex.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Sharon","Schultz","","","","","","shashultz@yahoo.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Beth","Baker","","","","","","sheepacres@gmail.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"","","","","","","","nhendry@comcast.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"","","","","","","","rubia702000@yahoo.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"","","","","","","","Supamonk@aol.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Delbert","Raymond III","","","","","","skraymon@sbcglobal.net","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Steve","Leynzon","","","","","","sleynzon@twmi.rr.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Sharon","Severson","","","","","","sls007401@charter.net","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Sabrina","Milan","","","","","","SMILAN@AMERISURE.COM","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Sarah","Sutton","","","","","","snbksutton@msn.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"","","","","","","","tsickon@comcast.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Lorie","Reits","","","","","","jreits@hansonlogistics.com","","","","","2009-06-27","2009-06-27","2009-06-27"
+"Steve","Rusgo","","","","","","srusgo@aol.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Phillip","Armstrong","","","","","","parmstrong62@comcast.net","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Joseph","Trippel","","","","","","joe.trippel@gmail.com ","","","","","2009-10-22","2009-10-22","2009-10-22"
+"Sherri","Bassett","","","","","","ssbassett@localnet.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Sharon","Slipek","","","","","","sslip@att.net","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Susanne","Monforton","","","","","","ssoo44@yahoo.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Susan","Springer","","","","","","sspringer@scslakeview-k12.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Josephine","Stablein","","","","","","stableinut@aol.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Frederick","Ziegel","","","","","","fdziegel@mackinacresearch.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Steve","Marcial","","","","","","steve@kzooevents.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Mary","Pohlman","","","","","","stjudepohlman@juno.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Dave","Stephenson","","","","","","dstephenson10@cogeco.ca","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Marty","Bernstein","","","","","","stocktonbond@comcast.net","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Lonn","Vasquez","","","","","","lonnyshots@yahoo.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"James","Armstrong","","","","","","stretch@rcn.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Beth","Barton","","","","","","stu16beth@yahoo.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Susan","Davis","","","","","","sue_davis34@yahoo.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Wanda","Benford","","","","","","wbenford@gmail.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Nicholas & Jeane","Redman","","","","","","Sumtinez@msn.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Benjamin","Cook","","","","","","surgesy@hotmail.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Suzann","Humara","","","","","","suzaries@hotmail.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Ronald","Szalewicz","","","","","","szalewicz@wowway.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Tammy","Suiter","","","","","","tammy.suiter@jpmchase.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Phillip","Hong","","","","","","taniatlw@hotmail.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Peter ","Taylor","","","","","","taylorp@comcast.net","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Bizhong","Zhu","","","","","","bizhongzhu1@sbcglobal.net","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Emma","Bailey","","","","","","tbaileymd@yahoo.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Marsha","Wrenn","26700 Jefferson Ct.","Bay Village","OH","44140","440-835-1431","marshawrenn@wowway.com","1","6","","Hi Debbie - thanks again for all your helpful info this morning.  My kids have since tried to get on the website and it is again not working.  Thought I'd pass this along since you said you are not aware when it's not working (or you may be having work done on it).  My daughter is checking her schedule and I will get back to you ASAP.  Hopefully, Unite 90 and 134 will still be open.  Many thanks!","2009-07-11","2009-07-18","2009-02-18"
+"Theresa","Silverman","","","","","","TERRISILVERMAN@VERIZON.NET","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Terry","Slocum","","","","","","slocumagency@nomadinton.net","","","","","2009-05-22","2009-05-22","2009-05-22"
+"Cheryl","Schimizzi","","","","","","vcschimizzi@comcast.net","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Caroline","Watt","","","","","","bandcwatt@rogers.com ","","","","","2009-10-22","2009-10-22","2009-10-22"
+"Annette","Cowger","","","","","","thecowger6@aol.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"","","","","","","","daolivi@sympatico.ca","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Blair","Thomas","","","","","","Thomasbl@cooley.edu","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Jean","VanDrie","","","","","","tillthen@sbcglobal.net","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Tim","Jarzembowski","","","","","","timjarz@yahoo.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Terrance","Kissane","","","","","","TJKissane@dow.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Terry","Fry","","","","","","terryzr1@yahoo.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"John","Heid","","","","","","tmarasco@ford.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"David","Pritchard","","","","","","tpritcha@consolidated.net","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Travis","Ransom","","","","","","TRAVIS.RANSOM@YAHOO.COM","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Travis","Harrington","","","","","","travis_harringtonw@yahoo.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"","","","","","","","nichols48335@yahoo.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Timothy","Veeser","","","","","","tveeser@hotmail.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Kurt","Weber","","","","","","type2u@comcast.net","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Teri","Belleau","","","","","","tbelleau@sjgh.ca","","","","","2009-10-16","2009-10-16","2009-10-16"
+"","","","","","","","susan@galloupguitars.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Kristin","Moore","","","","","","vkdmoore@sbcglobal.net","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Carl Shimbo","","","","","","","vpontious@aol.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Thomas","Contrucci","","","","","","vraecontrucci@wowway.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Thomas","Waraksa","","","","","","waraksa1@comcast.net","","","","","2008-05-04","2008-05-04","2008-05-04"
+"William","Brinkerhoff","","","","","","wbrinker@umich.edu","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Wendy","Davis","","","","","","wdavis@beckmanlawson.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Melissa","Wenzler","","","","","","wenzler@comcast.net","","","","","2008-05-04","2008-05-04","2008-05-04"
+"William","Compton","","","","","","wgcompton@comcast.net","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Wayne","Geik","","","","","","wgeik@kallashenk.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"William","Wilkinson","","","","","","wilkin42@msu.edu","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Jeff","Wilson","","","","","","wilsonpullum@cablespeed.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Wojciech","Waszkiewicz","","","","","","wojtek_91@yahoo.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Lorrie","Wolowich","","","","","","wolowil@adsb.on.ca","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Andrew","Pavlopoulos","","","","","","andyp11668@yahoo.com","","","","","2009-06-27","2009-06-27","2009-06-27"
+"Frederick","Horndt","","","","","","yo-freddie@juno.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Chris","Bendixen","","","","","","bendixen@prodigy.net","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Margaret","Buchness","","","","","","zochesca@yahoo.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"kathryn","smith","21130 Equestrian Trail","northville","MI","","","thomas.smith1119@sbcglobal.net","3","6","","Are any of the condos pet friendly?","2008-08-01","2008-08-30","2008-05-12"
+"Jim","Small","","","","","","jamessmall@cox.net","","9","","do you have high speed internet connections available for my laptop?","","","2008-05-14"
+"John","Lauer","","","","","","bedrocks3@gmail.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Arnold","Bostelaar","","","","","","arnboss@shaw.ca","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Bob","Arery","","","","","","raavery@comcast.net","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Lisa","Wolf","","","","","","dalijojen@aol.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Jeff","Hayes","","","","","","hj818@aol.com ","","","","","2009-10-30","2009-10-30","2009-10-30"
+"Julie","Sellers","","","","","","Jewelz6964@aol.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"C","Stuard","","","","","","cstuard2@msn.com","","","","","","","2010-04-16"
+"katelynn","","","","","","","k8_denardo@hotmail.com","","4","","I used to (1998-2001-ish) stay at trout creek when my mother would have medical conferences there. i loved the resort. it was perfect in every way. there were these brownies that i would always look forward to having there. i think they were catered in. any idea were they might have gotten them? local bakeries, grocery stores,etc.? or even better, would you happen to have the recipe? any information would be gladly appreciated. thanks.","","","2008-05-25"
+"Scott","Kuligoski","1511 S. Grant St.","Bay City","MI","48708","989-894-9068","skooly@msn.com","","9","","I am a former guest and I am going to be coming up in early july to stay for a week.  I was told there are places that Rent full size cribs.  I was wondering if you could provide me with some names and phone numbers.  I would like to rent a crib so, I don't have to bring my own.  Thank you vey much for time and all of your help!!!","","","2008-06-06"
+"Jodie","Matuz","","","","","","jodie.matuz@muskegoncc.edu","0","6","","I am planning a vacation for 3 families – 6 adults and 6 kids under 5.  We are looking for the last week in September – dates are flexible.  Probably about 3-5 nights (depending on your proximity to Mackinaw City?!?!)  Do you have something available {specials maybe??} and if so, the rates?  The men especially are interested in fishing - is that available? We appreciate your information!!","","","2008-06-09"
+"DOLORES","COWAN","317 MILLCREEK DRIVE","SAULT STE. MARIE","ONTARIO","P6B 6H6","705 253-3310","cowand@sah.on.ca","1","4","","","","","2008-06-14"
+"Michelle","Cairnduff","","","","","","5duffs@sbcglobal.net","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Joseph","James","","","","","","adajamesgang@comcast.net","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Daniel","Jacobs","","","","","","djacobs1220@aol.com","","","","","2009-02-19","2009-02-19","2009-02-19"
+"Brian","Collins","","","","","","bcollins12@hotmail.com","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Agnes","Khu","","","","","","amkhu@chartermi.net","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Anne","Ward","","","","","","anneward@wideopenwest.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Ann","Szczepaniak","","","","","","anngerrys@aol.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Pat","Gray","","","","","","apgray@aol.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Greg","Apple","","","","","","apples4iu@sbcglobal.net","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Amy","Peterson","","","","","","amymariewilliams@hotmail.com","","","","","2009-02-02","2009-02-02","2009-02-02"
+"Arnold","Coleman","","","","","","arnoldcoleman@gmail.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Dan","Bacigal","","","","","","bacigald@msu.edu","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Sally","Backofen","","","","","","backofes@cooley.edu","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Brian & Nancy","Grady","","","","","","bgrady@mi.rr.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Beth","","","","","","","acwalsh1@yahoo.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Steve","Blahunka","","","","","","blahunkas@aol.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Beverly","Wolkow","","","","","","bold31@aol.com","","","","","2009-05-22","2009-05-22","2009-05-22"
+"Laura","Carpenter","","","","","","carpfenton@aol.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Christi","Brilinski","","","","","","cjbrilinski@core.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Jill & John ","Bertich","","","","","","jj_0428@yahoo.com ","","","","","2009-10-16","2009-10-16","2009-10-16"
+"George","Allen","","","","","","divallen@aol.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Linda","Silvasi","","","","","","dsilvasi@aol.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Boge","Sokoloski","","","","","","dsokoloski@bcbsm.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Pete","Karsten","","","","","","pete.karsten@baker.edu","","","","","2009-07-17","2009-07-17","2009-07-17"
+"","","","","","","","jeanneoconnor2@earthlink.net","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Fatima","Kapadia","","","","","","fatimak@gmail.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"John","Friend","","","","","","friendxfour@msn.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Jeff","Fulton","","","","","","fultonj@ewashtenaw.org","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Barbara","Danaj","","","","","","funonmiela@comcast.net","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Greg","LaMore","","","","","","g.lamore@sbcglobal.net","","","","","2008-06-17","2008-06-17","2008-06-17"
+"","","","","","","","kimtykosky@yahoo.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Karen","Lorenz","","","","","","gklorenz@comcast.net","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Phyllis","Gruszczynski","","","","","","gruszczynski@comcast.net","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Gary","Smithson","","","","","","gsmithson62@yahoo.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Kathleen","Rutherford","","","","","","gwr22@att.net","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Heungho","Lee","","","","","","heungholee@hotmail.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Gary","Hoipkemier","","","","","","hoipkemier@juno.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Isabell","Scherg","","","","","","isabellscherg@online.de","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Jack","Rummel","","","","","","jack.rummel@axa-advisors.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Jeff","Maund","","","","","","jam5002@hotmail.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Jane","Finn","","","","","","janefinn@acd.net","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Jason","Schneider","","","","","","jasonschneider04@hotmail.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Dale","Ahlschwede","","","","","","jdahlschwede@yahoo.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Jean","Berlin","","","","","","jean.ann.1956@hotmail.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Jennifer","Hokanson","","","","","","jenniferdrummond_20@hotmail.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Dale","Vanderlan","","","","","","djvlaan@comcast.net","","","","","2009-02-19","2009-02-19","2009-02-19"
+"Jack","Tracy","","","","","","jjtracy@sbcglobal.net","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Roy","Wiegand ","","","","","","royw@zoominternet.net ","","","","","2009-10-22","2009-10-22","2009-10-22"
+"Jeff","Patsy","","","","","","jpatsy@wowway.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Mark","Haase","","","","","","mark.haase@stocksupply.com","","","","","2009-05-22","2009-05-22","2009-05-22"
+"Ken","Van Tine","","","","","","kvantine@in-formstudio.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Lauren","Kern","","","","","","lauren.kern@comcast.net","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Luretta","Deschner","","","","","","ldeschner222841@comcast.net","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Veronica","Logan","313 Droste","East Lansing","MI","48823","517-333-8234","nurseronnie@sbcglobal.net","6","9","","We have had the pleasure of staying at 2 of your rental properties in the past and have been exceptionally pleased.  Are there any rental homes available for this time frame?  A four BR 3BTH would also work for us. Please notify us as of anything avail.  Thank You!\r
+Mrs. Logan","2008-12-20","2008-12-24","2008-10-21"
+"Sabrina","Reilly","","","","","","sabrina.reilly@ncoa.org","","","","","2008-06-17","2008-06-17","2008-06-17"
+"LIsa","Vitale","","","","","","lisavitale@comcast.net","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Shanna","Render","","","","","","locs00@yahoo.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Ron","Mathison","","","","","","statewideron@charter.net","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Diana","Rogers","","","","","","cdlr55@aol.com","","","","","2009-02-07","2009-02-07","2009-02-07"
+"","","","","","","","jebrinkman79@hotmail.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"","","","","","","","kirkherman@aol.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Michael","Mepi","","","","","","mikentlc@yahoo.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Martha","Sapp","","","","","","msapp@bortocpa.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Marianne","Viviano","","","","","","mviviano@viviano.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"","","","","","","","njkaneris@sbcglobal.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Pat","Sproat","","","","","","patknirk@aol.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"","","","","","","","salinejuli@aol.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Carman","Bean ","","","","","","cbean@federalscrew.com ","","","","","2009-10-16","2009-10-16","2009-10-16"
+"Caroline","Szlamkowicz","","","","","","piper3@peoplepc.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Peter","Harvieux","","","","","","pjharvey59@hotmail.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Jagadise","Turimella","","","","","","ppatel@globaleprocure.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Pat","O'Sullivan","","","","","","pujo22@gmail.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Richard","Aldrich","","","","","","rald711@yahoo.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Robert","Byrne","","","","","","rbyrne@sha.net","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Renee","Harrison","","","","","","reneeharrison@comcast.net","","","","","2008-06-17","2008-06-17","2008-06-17"
+"","","","","","","","susiecorsetti@hotmail.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Rhonda","Bernstein","","","","","","rgbernstein","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Rob","Milosch","","","","","","robrm@pga.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Brian","Harrington","","","","","","ruthann113000@yahoo.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"","","","","","","","TTomita@advics-na.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Susan","Tuttle","","","","","","sbt@charterinternet.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Peter","Klimek","","","","","","peter.klimek@mti.ca","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Julie","Swager","","","","","","seejulierun@gmail.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Serge","Devolder","","","","","","serge.devolder@gmail.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"John","Doyle","","","","","","john.doyle@us.contiautomotive.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Stephenie","Ison","","","","","","slison@dow.com","","","","","2009-10-26","2009-10-26","2009-10-26"
+"Shannon","Stickler","","","","","","sklanseck@yahoo.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Sian","Hewitt","","","","","","sian.hewitt@nissanofwindsor.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"James","Webb","","","","","","sonlit7@hotmail.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Stacey","Basa","","","","","","staceybasa@yahoo.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Stephan","Morgan","","","","","","stephanmorgan@sbcglobal.net","","","","","2008-06-17","2008-06-17","2008-06-17"
+"","","","","","","","andyb@kdccpa.com","","","","","2009-05-22","2009-05-22","2009-05-22"
+"Scott","Usitalo","","","","","","susitalo@seedstrategy.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Polly","Anderson","","","","","","polly.anderson@aurora.org ","","","","","2009-10-16","2009-10-16","2009-10-16"
+"Cheryl","Summers","","","","","","cdsums@verizon.net","","","","","2009-02-07","2009-02-07","2009-02-07"
+"Lucas","Blois ","","","","","","lucasblois@yahoo.ca ","","","","","2009-10-16","2009-10-16","2009-10-16"
+"Thomas","Erickson","","","","","","te1251@msn.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Perry","Cormier","","","","","","pccormier@gmail.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"","","","","","","","jeepscott@sbcglobal.net","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Todd","Dasy","","","","","","toddd@lammersheating.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"","","","","","","","knappkin@ameritech.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"","","","","","","","njslav@watchtv.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Bill","Schafer","","","","","","WDSchafer@dow.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Lynn","Whitely","","","","","","whitely6@sympatico.ca","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Richard and Carol","Maruk","","","","","","rmaruk@scionsteel.com","","","","","2007-09-28","2007-09-28","2007-09-28"
+"GAGIK","BABAKHANYAN","2507 Littletell ave.","West Bloomfield","MI","48324","248 910 2290","g_babakhanyan@yahoo.com","0","8","Freinds","","2008-07-03","2008-07-06","2008-07-01"
+"Colin","","","","","","","colin@smartboxllc.com","","8","google","please forward pricing and availability info for 2.  Thanks","","","2008-07-14"
+"Scott","Abbott","3330 merrill ave.","royal oak","mi","48073","248835 2995","darillest356@aol.com","3","8","radio station","","2008-07-25","2008-07-28","2008-07-16"
+"Eilene ","Kane","","","","","","eilene_kane@hermanmiller.com","6","6","","I have a reuniton I'm trying to put together.  It would be 30 people.... 24 adults, and 5 childern (1 15-year-old, and 5 under the age of 8).  Is there anyway of getting a group rate?  Everyone would be there Fri & Sat... about half would stay on Sun, and about 8 would like an extended stay.  Thanks!","2009-07-17","2009-07-20","2008-07-22"
+"kate","curkovic","5243 ridgebrook drive","portage","mi","49002","269.544.0265","katecurk@yahoo.com","4","6","","I am interested in the stay three nights get the fourth free promotion.  I was wondering if these condos were part of that deal?","2008-08-15","2008-08-19","2008-08-01"
+"Michael","Willkom","768 Helen Ave","Brunswick","OH","44212","330-635-5511","steve.willkom@ixetic.com","","6","","Hello,\r
+\r
\r
+\r
+We are considering a family reunion in mid to late June 2009, in N.MI.  The size of the family is 100 and I expect at least 80 to attend.  The duration of the stay would be between 5-7 days, this is flexible. \r
+We have about 60 adults (9/10 seniors) 18 young adults and around 22 children.  Out of the 100 family members, we would need to divide rooms by about 27-28 couples.\r
+\r
\r
+\r
+I don’t know what other information you need at this time but please respond with any questions.\r
+","","","2008-08-07"
+"","","","","","","","info@troutcreek.com","","","","","2008-09-12","2008-09-12","2008-09-12"
+"Denise","Forrest","","","","","","art2mom@comcast.net","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Brian ","Marx","","","","","","bmarx@resortsandlodges.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"William","Bolding","","","","","","boldinglandscape@aol.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Virginia","Bubb","","","","","","bubbginny@hotmail.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Carol","St. Henry","","","","","","c.sthenry@comcast.net","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Carol","Lenger","","","","","","carol.lenger@gmail.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Jaime","Berkley","","","","","","abrcrmbdab@hotmail.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Charlene","Ebert","","","","","","charleneebert@sbcglobal.net","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Christy","Smith","","","","","","christy.smith@la-z-boy.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Christy","Weaver","","","","","","clfweaver@gmail.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"","","","","","","","sandsleepman@gmail.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"","","","","","","","swansonrobert@att.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Melissa","Corbett","","","","","","corbett@comcast.net","","","","","2008-09-22","2008-09-22","2008-09-22"
+"","","","","","","","vbalcom@rc.edu","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Christine","Siegel","","","","","","csiegel@comcast.net","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Michelle","Waskevich","","","","","","cwaskevich@aol.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Rick","Janderwski","","","","","","RJanderwski@comcast.net","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Michael","Chumbley ","","","","","","michael.chumbley@hotmail.com ","","","","","2009-10-16","2009-10-16","2009-10-16"
+"Dane","Turner","","","","","","daneturner_ttr@yahoo.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"David","Bennett","","","","","","david.bennett@us.pilkington.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Mary","Solomon","","","","","","dot1061@aol.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"MI Ice SB","Sheehan","","","","","","dawnnotshawn@comcast.net","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Denise","Dragonetti","","","","","","ddragonetti@comcast.net","","","","","2008-09-22","2008-09-22","2008-09-22"
+"","Colasinski","","","","","","kc49golfer@yahoo.com","","","","","2009-05-22","2009-05-22","2009-05-22"
+"Ron","Sichau","","","","","","densichau@hotmail.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Twila","Depaolo","","","","","","depedwin@aol.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Patrick","Fleming","","","","","","derek@eeiglobal.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Deb","Trucks","","","","","","deb.k.trucks@dowcorning.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Dan","Goeckel","","","","","","dgoeckel@idccorporation.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Wendy","Dijanni","","","","","","dijanni@comcast.net","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Doug","Jaeger","","","","","","d-jaeger@sbcglobal.net","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Dennis","Palka","","","","","","djpalka@sbcglobal.net","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Charles","Garavaglia","","","","","","cgaravaglia@bergsteel.com","","","","","2009-02-07","2009-02-07","2009-02-07"
+"Dmitry","Vikhter","","","","","","dvikhter@sbcglobal.net","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Dave ","White","","","","","","dwhite25@cogeco.ca","","","","","2008-09-22","2008-09-22","2008-09-22"
+"James","Forster","","","","","","jforster@fs4sports.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Elaine","Push","","","","","","elaine.push@terumomedical.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Frank","Mallo","","","","","","ski1962@msn.com","3","7","","","","","2008-10-23"
+"Erin","Shovlin","","","","","","eshovlin@mac.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Eunice","Kim","","","","","","eunice.ys.kim@gmail.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Raul","Felman","","","","","","felcoint@aol.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Frank ","Fetters","","","","","","FFETTERS@LEAR.COM","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Ralph","Fiegelist","","","","","","fiegelist@comcast.net","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Christina","Hasselkus","","","","","","chasselkus@comcast.net","","","","","2008-11-13","2008-11-13","2008-11-13"
+"R. Gary","Winters","","","","","","rgarywinters@zoomtown.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Brad","Swartzentruber","","","","","","swartzy2k@hotmail.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Andrew","Brown","1218 east grand river","east lansing","mi","48823","810 919 1322","brown262@msu.edu","6","9","","This isn't a reservation, but more of an inquiry, my organization on campus would like to organize a ski weekend for approximately 75 people, could you accommodate us and could you offer a group discount? i'm very interested in what you could do to make this work for our group. \r
+\r
+Thanks!\r
+Andrew","2010-02-12","2010-02-14","2009-11-29"
+"Craig","Woodbeck","","","","","","cwoodbeck@hotmail.com ","","","","","2009-10-22","2009-10-22","2009-10-22"
+"Jack","Rummel","","","","","","gbrummel@sbcglobal.net","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Sheryl","Gibbons","","","","","","gibbonsgs@sbcglobal.net","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Robert","Granadier","","","","","","granadier@butzel.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Greg","Silage","","","","","","gsil624@ameritech.net","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Mary E.","Strebeck","","","","","","gstrebeck010@earthlink.net","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Steve","Hoelscher","","","","","","hoelschersteve@yahoo.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Heather","Peshl","","","","","","htippett@hotmail.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"John","Keenan","","","","","","jakeenan@charter.net","","","","","2008-09-22","2008-09-22","2008-09-22"
+"John ","Gordon","","","","","","jbgordon@analysts.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Jordon","Hoffman","","","","","","jdhoffman2@verizon.net","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Jeff","Whitmore","","","","","","jeffreywhitmore@gmail.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Brian ","Bunker","","","","","","jenbrianbunker@yahoo.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"","","","","","","","dawaligora@yahoo.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Joe","Tobin","","","","","","jjjjtobin@yahoo.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Jeffrey","Kaloustian","","","","","","jkaloustian@gmail.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Dennis","Weathers","","","","","","dennis_weathers@hotmail.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"John","Bojko","","","","","","jmbojko@yahoo.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Jeff","Lambert","","","","","","jmlambert1@att.net","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Jill","Moore","","","","","","jmoore@ghbh.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"John","Mcleod","","","","","","johnm@jcmventures.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"John","Greshan","","","","","","johnnygresham@hotmail.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Jodi","Gomez","","","","","","jrgomez105@comcast.net","","","","","2008-09-22","2008-09-22","2008-09-22"
+"MI Ice SB","Sheehan","","","","","","jsheehan@stonebrook-mi.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"","","","","","","","jeffnkaren@embarqmail.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Joe","Walewski","","","","","","jwalew@yahoo.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Jennifer","Willbur","","","","","","jwillbur@ymcametrodetroit.org","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Michael","Jones","","","","","","kahjones@live.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Sonya & Todd","Kaminski","","","","","","kaminskitodd@yahoo.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Margaret","Horton","783 E Monon Rd","Monon","IN","47959-0747","219-253-7883","horton@urhere.net","6","6","","We will need a 5 bedroom condo.  If other family members can come, they will need another one or two small condos.","2009-07-24","2009-07-30","2009-11-30"
+"Kathleen","Luchkovic","","","","","","kathyzeck@yahoo.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Kristen","McGlaughlen","","","","","","kcm.detroit@comcast.net","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Gary","Ogden","","","","","","ogdengary@hotmail.com","","","","","2009-05-22","2009-05-22","2009-05-22"
+"","","","","","","","dbaird02@sbcglobal.net","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Paul","Cartwright","","","","","","pacartwright@thinkarbor.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Catherine","Tufnell","","","","","","ktufnell@proassurance.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Lesley","Philips","","","","","","lap825@aol.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Lola","Audu","","","","","","laudu@grar.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Chanel","Grayson","","","","","","chanelkami@hotmail.com","","","","","2009-02-07","2009-02-07","2009-02-07"
+"Michael","Schrier","","","","","","leslie-schrier@uiowa.edu","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Lincoln","Herweyer","","","","","","lgherweyer@netscape.net","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Lisa","Cohn","","","","","","lscohn@sbcglobal.net","","","","","2008-09-22","2008-09-22","2008-09-22"
+"","","","","","","","jenniferalfonsi@yahoo.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"MI Ice SB","Sheehan","","","","","","m.mckenna@hotmail.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Mark","Ribick","","","","","","mark@speedysites.net","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Maynard","Buszek","","","","","","mbuszek@wideopenwest.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Mechelle","Reid","","","","","","mechreid1@aol.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"","","","","","","","knrplus3@comcast.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Melinda","Gaukel","","","","","","mgauk@comcast.net","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Margaret","Pierce","","","","","","mgopierce@wowway.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"","","","","","","","nlhulbert@charter.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Michelle","Osborne","","","","","","michelleosb@gmail.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Michael","Orwig","","","","","","mikeorwig@cavtel.net","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Mark","French","","","","","","mj_french@hotmail.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Mary ","Krone","","","","","","mkrone@new.rr.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"MI Ice SB","Sheehan","","","","","","mlair1@aol.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Robert","Roberts","","","","","","molly_megan_emma@yahoo.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Steve","Moran","","","","","","moranatslah@comcast.net","","","","","2008-09-22","2008-09-22","2008-09-22"
+"","","","","","","","saultgirl@yahoo.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Steve","Zinberg","","","","","","stevezinberg@rogers.com ","","","","","2009-10-22","2009-10-22","2009-10-22"
+"Nancy","Sergeant","","","","","","nancy_sergeant@sbcglobal.net","","","","","2008-09-22","2008-09-22","2008-09-22"
+"","","","","","","","swart@kalamazoo.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Robert","Bird","","","","","","nomosumma@yahoo.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Carol","Clark","","","","","","joe088@sympatico.ca","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Paula","Johnson","","","","","","paulajohnson@ontargetliving.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Patrick","Benedict","","","","","","pbenedic@umich.edu","","","","","2008-09-22","2008-09-22","2008-09-22"
+"","","","","","","","virtuoz1981@yahoo.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Robert","Baker","","","","","","bakerlee3@yahoo.ca","","","","","2009-06-27","2009-06-27","2009-06-27"
+"Angela","Lieffers","","","","","","petestulipbug@yahoo.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Michael","Kressin","","","","","","kressinmj@yahoo.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Pamela","Hankins","","","","","","PMHankins@gmail.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"David","Fugate","","","","","","psymsu@hotmail.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Lucian","Harbar","","","","","","luciansr@hotmail.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Susan","Rafferty","","","","","","rafferty44@aol.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"","","","","","","","jevz8363@hotmail.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Richard","Carmichael","","","","","","rickthedogtrainer@gmail.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Diane ","Terry","","","","","","dlterry001@hotmail.com","","","","","2009-04-08","2009-04-08","2009-04-08"
+"Mark","Palazzo","","","","","","Runwus4@aol.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Sandra","Ross","","","","","","sandraross@wideopenwest.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Jeremy","Schaffer","","","","","","schafdawg37@yahoo.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Steven","Challa","","","","","","schalla@choiceonemail.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Sasko","Dimoski","","","","","","sdimoski@tmgsports.net","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Stephen","Estey","","","","","","sestey@dykema.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Shari","Crowell","","","","","","sharic2006@yahoo.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"TL","","","","","","","tlkel@avci.net","4","6","","","","","2010-01-05"
+"Diane","Koenig","","","","","","soccermomdmk@aol.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Sharon","Walenga-Maynard","","","","","","ssmaynard@hotmail.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"","","","","","","","ah@edmondsonhall.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"Thomas","Woidat","","","","","","tewoidat@yahoo.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Kim","Hamann","","","","","","thehamann5@wowway.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Theresa","Dombrow","","","","","","theresa.dombrow@stjohn.org","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Trish","Hill","","","","","","thill@vironintl.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Terry","Morin","","","","","","tmorin@southgateprocess.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"","","","","","","","shbarber77@hotmail.com","","","","","2009-05-22","2009-05-22","2009-05-22"
+"","","","","","","","dc45chicago@hotmail.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Rew","Jenny","","","","","","trew3@comcast.net","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Laura","Huff","","","","","2317596400","Laura@nexesrealty.com","","","","I would like a price on and 4 night golf package for 4 couples playing 2 different courses we are open to any of them whatever would be cheaper","2014-07-02","2014-07-06","2014-02-05"
+"Larry","Vallar","","","","","","vallarltv@aol.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Albert","Versteeg","","","","","","versteeg@sentex.net","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Cindy","Wagonschutz","","","","","","wagonsct@comcast.net","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Steve","Walker","","","","","","walkersoccer@msn.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"","","","","","","","koester315@comcast.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Wendy","Holden","","","","","","wholden5@yahoo.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"","","","","","","","NList@chs-mi.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"","","","","","","","sbagdade@aol.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"rita","topouzian","5045 dianna drive","Bloomfield Hills,","michigan","48302","248-302-2928","ritatopouzian@hotmail.com","4","9","","Please email prices thanks","2008-12-27","2008-12-30","2008-09-25"
+"","","","","","","","taylorj77@comcast.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Brian and Sheila","Petty","","","","","","sjpshera@aol.com","","","","","2008-09-29","2008-09-29","2008-09-29"
+"","","","","","","","vpopov01@comcast.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Chris ","Gowman","","","","","","c.gowman@sbcglobal.net","","","","","2008-09-29","2008-09-29","2008-09-29"
+"David","Campbell","","","","","","dave_campbell_2001@yahoo.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Julian","Turkewycz","","","","","","turkewycz@sbcglobal.net","","","","","2008-09-29","2008-09-29","2008-09-29"
+"Bruce","Simon","","","","","","brucesimon@realestateone.com","","","","","2008-10-01","2008-10-01","2008-10-01"
+"Elizabeth","Flynn","","","","","","flynne13@gmail.com","","","","","2008-10-06","2008-10-06","2008-10-06"
+"Lynda","English","","","","","","englishl1@michigan.gov","","","","","2008-10-06","2008-10-06","2008-10-06"
+"Lil","Spencer","","","","","","spence1003@aol.com","","","","","2008-10-06","2008-10-06","2008-10-06"
+"Linda","Shallman","","","","","","lindashallman@comcast.net","","","","","2008-10-06","2008-10-06","2008-10-06"
+"Gaylon","Brooks","","","","","","gbrooks5446@wideopenwest.com","","","","","2008-10-06","2008-10-06","2008-10-06"
+"Colleen","Howley-Resto","","","","","","luris@me.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Kari","Routledge","","","","","","kariroutledge@wlcsd.org","","","","","2008-09-22","2008-09-22","2008-09-22"
+"susan","brintnall","38 waring welfare","boerne","tx","78006","830-456-5858","russ_n_sue@yahoo.com","6","4","interested condo #1","","2010-07-06","2010-07-12","2009-09-17"
+"Richard","Parker","","","","","","parker-rick@hotmail.com","","","","","2007-11-23","2007-11-23","2007-11-23"
+"Katherine","Ieremias","","","","","","fisherka@msu.edu","","","","","2008-09-22","2008-09-22","2008-09-22"
+"LaShawn","Edwards","","","","","","pledwards@lighthouse.net","","","","","2008-11-13","2008-11-13","2008-11-13"
+"Allison","Gardella","","","","","","pagardella@wideopenwest.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Angela","Booker","","","","","","abookah67@yahoo.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Carey","Lange","","","","","","sistercarey@aol.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Karen","Landa","","","","","","danny716@comcast.net","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Tricia","Pasek","","","","","","mtpasek@yahoo.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Coleen","Kemner","","","","","","office@napoleonlawn.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Candice","Montie","","","","","","candanski@aol.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Barbara","Sullivan","","","","","","bsulli8138@aol.com","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Roxie","McUmber","","","","","","roxie.mcumber@gmail.com","","","","","2009-02-02","2009-02-02","2009-02-02"
+"Lois","Nuthals","","","","","","tlnute@aol.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"James","Renken","","","","","","jsrenken@aol.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Susan","Engelhart","","","","","","sengelhart@tds.net","","4","","<p>Hi, are dogs allowed at your condos?</p>","","","2008-02-07"
+"Scott","Gilbert","1221 E. Geneva Dr.","Dewitt","Mi","48820","","gibstracity@hotmail.com","2","9","Was there in 2007","We have a group of 12. We go somewhere every year and I wanted to get a quote. We are flexible on the units along as no one has to bouble up in a bed, We play 18 holes friday, 36 saturday and 18 on sunday.\r
+\r
+Thanks","2010-06-11","2010-06-13","2010-01-12"
+"","","","","","","","rdefrain@hrc-engr.com","","","","","2009-05-22","2009-05-22","2009-05-22"
+"Mark","Lingo","","","","","","mlingohoops@yahoo.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Donna","Kerry","","","","","","dzkerry@att.net","","","","","2005-08-02","2005-08-02","2005-08-02"
+"Kimberly","Valacak","","","","","","charlottetooo@gmail.com","","","","","2009-02-07","2009-02-07","2009-02-07"
+"Susan","Peterson","","","","","","spetersen@ingmarmed.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"","","","","","","","DDBEAN@COMCAST.NET","","","","","2009-06-04","2009-06-04","2009-06-04"
+"James","Kocsan","","","","","","ckocsan@aol.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Brett","Rycus","","","","","","spartanbj@comcast.net","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Lori","Cuddeback","","","","","","ljcuddeback@aol.com","","","","","2005-06-02","2005-06-02","2005-06-02"
+"","","","","","","","kpacifico@comcast.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"","","","","","","","page_m@oakhills.hccanet.org","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Beverly ","Boas","","","","","","bboas72@gmail.com ","","","","","2009-10-16","2009-10-16","2009-10-16"
+"Mark and Tayna","Albers","","","","","","albers@comcast.net","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Kathy","Seymour","","","","","","rickseymour44@comcast.net","","","","","2003-11-29","2003-11-29","2003-11-29"
+"Le Anne","Schmidt","","","","","","leanneanded@hotmail.com","","","","","2005-08-30","2005-08-30","2005-08-30"
+"Betty","Maxwell","","","","","","maxwellph@comcast.net","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Teri","Belleau","","","","","7058484492","rick.belleau@hotmail.com","","","","","2013-05-30","2013-06-02","2013-04-25"
+"Jeff","Cousins","","Toledo","OH","43606","","jcousins@fncuthbert.com","","6","","","2003-08-13","2003-08-13","2003-08-13"
+"Julie ","Horan","","","","","","joehoran@aol.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"","","","","","","","taz1004@sbcglobal.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Diane","Miller","","","","","","cdmiller1305@charter.net","","","","<p>Diane</p>","2008-10-06","2008-10-06","2008-10-06"
+"Pam","Shearer","","","","","","bshearer@ameritech.net","","","","","2005-10-26","2005-10-26","2005-10-26"
+"","","","","","","","vringler@cox-applicators.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Donald","Hudak","","","","","","donhudak@sbcglobal.net","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Tim & Jill Wegmann","","","","","","","twegmann@southslope.net","","","","","2009-12-09","2009-12-09","2009-12-09"
+"Gwendolyn","Melton","","","","","","wmelton@accretivesolutions.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"margret","mancia","","","","","","margretmancia@yahoo.com","","","","","2008-10-06","2008-10-06","2008-10-06"
+"Janet","Abou-Ganim ","","","","","","jabouganim@yahoo.com","","","","","2009-02-21","2009-02-21","2009-02-21"
+"Carey","Costantini","","","","","","chcost1@fuse.net","","","","","2009-02-07","2009-02-07","2009-02-07"
+"Loraleigh","","","","","","","loraleigh44@hotmail.com","","9","","Do you offer any military discounts?  Is there anything available with a ski package Feb 19-21?  Thank you!","","","2010-01-13"
+"Jo","Golda","","","","","","jo@josorganizing.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Michelle","Steadman","","","","","","steady_4@sympatico.ca","","","","","2009-04-09","2009-04-09","2009-04-09"
+"Scott","Driesenga","","","","","","srdriesenga@charter.net","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Anthony","Belmonte","","","","","","babygrand14@comcast.net","","","","","2008-10-06","2008-10-06","2008-10-06"
+"Mike","Davidson","","","","","","harleymanmike@comcast.net","","","","","2009-05-22","2009-05-22","2009-05-22"
+"carmen","fuller","","","","","","ccjfuller@hotmail.com","","","","","2008-10-06","2008-10-06","2008-10-06"
+"Jan & Robert M.","Ramirez","","","","","","jlramirez@comerica.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Renee","smiley","","","","","","rsmiley3@woh.rr.com","","","","","2008-10-06","2008-10-06","2008-10-06"
+"","","","","","","","jguelker@yahoo.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"","","","","","","","kroggent@umflint.edu","","","","","2009-06-07","2009-06-07","2009-06-07"
+"","","","","","","","paps73@hotmail.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"","","","","","","","scarletn@oakgov.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Mark","Zwygart","","","","","","markzwygart@yahoo.ca","","","","","2009-10-16","2009-10-16","2009-10-16"
+"Craig","Dembeck ","","","","","","zachdog1@covad.net ","","","","","2009-10-20","2009-10-20","2009-10-20"
+"Gino","Cavallo","","","","","","gino@cliffeprinting.ca","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Ken","MacIsaac","","","","","","k.macisaac@yahoo.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Deborah","Perlman","","","","","","dperlman77@gmail.com","","","","","2009-12-09","2009-12-09","2009-12-09"
+"Jack","Horvath","8366 Jeanette Lane","Cincinnati","OH","45249","513 2479919","jhorvath1@cinci.rr.com","3","6","","Please let me know of availability and costs","2009-12-26","2009-12-29","2009-12-12"
+"mary","","","","","48021","","maryzeus39@myway.com","1","6","","Is there beach access for swimming on your premises?  Kitchen is essential for us + pool indoors.","","","2010-01-17"
+"","","","","","","","debbedubey@yahoo.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Christopher","Albertson","","","","","","chrisa@lightcorp.com","","","","","2009-02-07","2009-02-07","2009-02-07"
+"Connie","Chroshuk","","","","","","cchroshuk@sympatico.ca","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Rick","","","","","","","2cookiewebdesign@charter.net","","2","Hello -\r
+\r
+Do you offer condos for rent with 3-6 month leases?\r
+\r
+Thanks,\r
+\r
+Rick LT","","","","2011-04-22"
+"Ann","Butler","","","","","","sie1213@hotmail.com","","","","","2009-04-14","2009-04-14","2009-04-14"
+"Linda","Krause","","","","","","wpk46@aol.com","","","","","2009-05-22","2009-05-22","2009-05-22"
+"Mike","Suraci","","","","","705-942-3890","","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Timothy","MacIntyre","","","","","","themacintyres@gmail.com","","","","","2009-02-21","2009-02-21","2009-02-21"
+"","","","","","","","jihoon.park@marriot.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"","","","","","","","kurtange@sbcglobal.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"","","","","","","","paulaperfect@roadrunner.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"","","","","","","","sdidion@verizon.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"","","","","","","","tddchildress@yahoo.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Glenn","Peggs","","","","","","gapeggs@hotmail.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"","","","","","","","weatherman995@gmail.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Charles ","Elfont","","","","","","cj@mpw.com ","","","","","2009-10-20","2009-10-20","2009-10-20"
+"kelly","frakes","","","","","","kelly.frakes.ccb2@statefarm.com","","","are there vendors at the scrapbooking weekend","","","","2009-07-04"
+"Karen","Swan","","","","","","kmswan@med.umich.edu","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Mark","Remeis","","","","","","mremeis@aagreen.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Donald","Flanagan","","","","","","dflanagan@62regina.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Frank","Tolusic","","","","","317-409-1688","","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Sarah","Hickens","","","","","","redjungle@comcast.net","1","6","","I'd also like a quote for the 2 bed & 2 bath w/o loft","2010-02-12","2010-02-15","2009-12-20"
+"Dr. Linda","Kimball","","","","","","kimballl_48917@yahoo.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"donna","pruitt","7755 newbury Rd","tipp city","oh","45371","937-248-1444","dpruitt@nationalpropertyadvisors.com","3","2","need cost for each day in Jan.& Feb","","","","2010-01-19"
+"Ann","Butler","","","","","","rbutler7@cogeco.ca","","","","","2009-04-14","2009-04-14","2009-04-14"
+"Patty","Wurm","","","","","","pattimommy@aol.com","","","","","2008-11-13","2008-11-13","2008-11-13"
+"Diane ","Crest","","","","","","d5ca7@aol.com","","","","","2008-11-13","2008-11-13","2008-11-13"
+"Susan","Sobiechowski","","","","","","xmarylandgirlx5@yahoo.com","","","","","2009-02-21","2009-02-21","2009-02-21"
+"Tammy","Grant","","","","","","Tammy@AdventureNORTH.net","","","","","2009-04-23","2009-04-23","2009-04-23"
+"Christopher","Sommers","","","","","","christopher.sommers@dana.com","","","","","2009-02-07","2009-02-07","2009-02-07"
+"","","","","","","","mshuttleworth1965@hotmail.com","","","","","2009-05-22","2009-05-22","2009-05-22"
+"","","","","","","","deschenes4@comcast.net","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Debbie ","Grigg","","","","","","megmaddeb@netzero.com","","","","","2008-11-13","2008-11-13","2008-11-13"
+"","","","","","","","jillgadola@yahoo.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"","","","","","","","kurtfilips@wowway.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Matthew","Robinson","","","","","","mattrobinson37@hotmail.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Tammy","Beaudry","","","","","","tlbeaudry@sbcglobal.net","","","","","2008-11-13","2008-11-13","2008-11-13"
+"Emily","Matelski","","","","","","ematelski@gmail.com","","","","","2008-11-13","2008-11-13","2008-11-13"
+"Becky","Bruckman","","","","","","bruckman@racc2000.com","","","","","2008-11-13","2008-11-13","2008-11-13"
+"Joanna","Slaght","","","","","","joannaslaght@hotmail.com","","","","","2008-11-13","2008-11-13","2008-11-13"
+"Heather","Grogg","","","","","","hlgrogg@sbcglobal.net","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Denise ","Carpenter","","","","","","dscarpenter@voyager.net","","","","","2008-11-13","2008-11-13","2008-11-13"
+"Kimberly","Caulkins","","","","","","kcaulkins68@gmail.com","","","","","2008-11-13","2008-11-13","2008-11-13"
+"","","","","","","","sdimilia@charter.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Dan","Loimer","","","","","","danl@michvet.com","","","","","2008-11-13","2008-11-13","2008-11-13"
+"","","","","","","","tealroe@charter.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"","","","","","","","wendyannschmidt9@comcast.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Yves","Doyon","","","","","","marlo_58@hotmail.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"","","","","","","","alh810home@aol.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"Scott","O'Neill","","","","","","soneil@kpmg.ca","","","","","2009-07-17","2009-07-17","2009-07-17"
+"donna","pruitt","7755 newbury Rd","tipp city","oh","45371","937-248-1444","dpruitt@nationalpropertyadvisors.com","3","2","need cost for each day in Jan.& Feb","Would this be a ski in- ski out at Nubs Nob?","","","2010-01-19"
+"Albert","Black","","","","","","AGB42@aol.com","","","","","2007-01-19","2007-01-19","2007-01-19"
+"Lisa","Veurink","","","","","","lmveurink@gmail.com","","","","","2009-04-24","2009-04-24","2009-04-24"
+"Janet","McPhail","","","","","","rickjen@xcelco.on.ca","","","","","2008-11-13","2008-11-13","2008-11-13"
+"Jennifer ","Smith","","","","","","mail@jsmithattorney.com","","","","","2009-02-03","2009-02-03","2009-02-03"
+"Gwendolyn ","Melton","","","","","","tdhour@yahoo.com","","","","","2008-11-13","2008-11-13","2008-11-13"
+"Megan","Hintz","","","","","","lakelizards4@hotmail.com","","","","","2008-11-13","2008-11-13","2008-11-13"
+"Tom ","Doerflinger","","","","","","tom.doerflinger@abnamro.com ","","","","","2009-10-16","2009-10-16","2009-10-16"
+"Jessie","Seronko","","","","","","jesntom2@hotmail.com","","","","","2008-11-13","2008-11-13","2008-11-13"
+"Jackie ","Harris","","","","","","harrishome@parishonline.tv","","","","","2008-11-13","2008-11-13","2008-11-13"
+"Kris","Trudeau","","","","","","ktrudeau@charterinternet.com","","","","","2008-11-13","2008-11-13","2008-11-13"
+"Kathy","Nixon","","","","","","tknix@comcast.net","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Bob","Stackowiak","","","","","","bobs@sharedimaging.com","","","","","2009-05-22","2009-05-22","2009-05-22"
+"","","","","","","","jim.piel@comcast.net","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Nancy","Nowak","","","","","","nowakn2002@yahoo.com","","","","","2008-11-13","2008-11-13","2008-11-13"
+"Marshall","Pallett","","","","","","midwestce@hotmail.com","","","","","2008-11-13","2008-11-13","2008-11-13"
+"Angie","Davis","","","","","","hotpeppers2000@yahoo.com","","","","","2008-11-13","2008-11-13","2008-11-13"
+"Diane ","Miller","","","","","","jdmiller@sault.com","","","","","2008-11-13","2008-11-13","2008-11-13"
+"William","Boas","","","","","","william.boas@raymondjames.com ","","","","","2009-10-16","2009-10-16","2009-10-16"
+"Ellen","McLean","","","","","","elmclean@wowway.com","","","","","2008-05-01","2008-05-01","2008-05-01"
+"","","","","","","","pbkenyon@comcast.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"","","","","","","","sep@h2law.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"","","","","","","","teamteel@charter.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"","","","","","","","wheatgerm@sbcglobal.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Mary Ann","Hayden","","","","","","maryannhayden@hotmail.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Diane- CVB","","","","","","","","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Demian","Manceau","","","","","","cmoss@alumni.nmu.edu","","","","","2008-11-13","2008-11-13","2008-11-13"
+"Ryan","Dumsa","","","","","","dumsarya@msu.edu","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Janice","Klein","","","","","","jkathome@sbcglobal.net","","","","","2008-11-13","2008-11-13","2008-11-13"
+"Jeannine","Rintala","","","","","","jdrathome@yahoo.com","","","","","2008-11-13","2008-11-13","2008-11-13"
+"Kurt","Voparil","","","","","","kvoparil@hotmail.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Alicia","Greenough","","","","","","adgreenough@yahoo.com","","","","","2008-11-13","2008-11-13","2008-11-13"
+"Tracy","Labadie","","","","","","talabadie@hotmail.com","","","","","2008-11-13","2008-11-13","2008-11-13"
+"Andre","Oggie","","","","","","babyo@hotmail.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Kurt","Dettloff","","","","","","kdettloff@lear.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Trey ","Curran","","","","","","tcurr45@vzw.blackberry.net","","","","","2009-10-20","2009-10-20","2009-10-20"
+"Criss","Rigg","","","","","","criss@pr-weld.com","","","","","2008-11-13","2008-11-13","2008-11-13"
+"Carolyn","Johnson","","","","","","darolyn1@verizon.net","","","","","2008-11-13","2008-11-13","2008-11-13"
+"Paul","Morrison","","","","","","paulmorrison1@sympatico.ca","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Amber","Ryan","","","","","","ambyryan@hotmail.com","","","","","2008-11-13","2008-11-13","2008-11-13"
+"Therese","Chambers","","","","","","therese.chambers@gmail.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"John","Meehan","","","","","","jmeehan@treasurecoastfoodbank.org","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Avinash","Rao","","","","","","avinashrao00@gmail.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Shane","Witowski","","","","","734-323-0163","","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Bruce","Smith","","","","","616-901-7836","","","","","","2009-07-18","2009-07-18","2009-07-18"
+"Candy ","Watts","","","","","","scswatts@hotmail.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Ben","Berkenpas","","","","","","bberk0719@sbcglobal.net","","","","","2009-07-18","2009-07-18","2009-07-18"
+"Randy","Christopher","","","","","","randy@galvcast.net","","","","","2009-07-18","2009-07-18","2009-07-18"
+"William","Heiob","","","","","","wheiob@hotmail.com","","","","","2009-07-18","2009-07-18","2009-07-18"
+"Sally","Arnold","","","","","","antiquemama10@yahoo.com","","","","","2008-04-29","2008-04-29","2008-04-29"
+"William","Coghill","","","","","","coghill@mchsi.com","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Ben","Harwood","","","","","","btharwood@gmail.com","","","","","2009-07-18","2009-07-18","2009-07-18"
+"James","Johnson","","","","","","shellycorky@hotmail.com","","","","","2009-07-18","2009-07-18","2009-07-18"
+"Gabby ","Denton ","","","","","","gabbydenton@comcast.net ","","","","","2009-04-24","2009-04-24","2009-04-24"
+"Debbi","Day","","","","","","dday@manisteecountymi.gov","","","","","2009-02-23","2009-02-23","2009-02-23"
+"Mark","Sarafa","","","","","","marksarafa@comcast.net","","","","","2009-05-22","2009-05-22","2009-05-22"
+"","","","","","","","djwhip@comcast.net","","","","","2009-06-04","2009-06-04","2009-06-04"
+"","","","","","","","jim_murray@roadrunner.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"","","","","","","","labellogic@aol.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"","","","","","","","peg1172@comcast.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Sarah","Johnston","","","","","","slynnejohnston@mail.com","","","","","2008-11-14","2008-11-14","2008-11-14"
+"Monica","Wiggins","","","","","","wiggkk@aol.com","","","","","2008-11-14","2008-11-14","2008-11-14"
+"Marcy","Fisher ","","","","","","marcyfisher@earthlink.net","","","","","2009-02-03","2009-02-03","2009-02-03"
+"Cyndi ","Yingling","","","","","","cyndiy@triton.net","","","","","2008-11-14","2008-11-14","2008-11-14"
+"","","","","","","","sfarwell22@aol.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Juliet","Stockman","","","","","","thestockmans@roadrunner.com","","","","","2008-11-14","2008-11-14","2008-11-14"
+"Michelle ","Labadie","","","","","","mlabadie@charter.net","","","","","2008-11-14","2008-11-14","2008-11-14"
+"Betty","Dahn","","","","","","boop48@chartermi.net","","","","","2008-11-14","2008-11-14","2008-11-14"
+"Claire","Schultz","","","","","","claireschultz@gmail.com","","","","","2009-02-07","2009-02-07","2009-02-07"
+"Dianne","LaChance","","","","","","lachance@hughes.net","","","","","2008-11-14","2008-11-14","2008-11-14"
+"","","","","","","","whudupg112@yahoo.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Dawn","Ludwig","","","","","","ludwiglink@yahoo.com","","","","","2008-11-14","2008-11-14","2008-11-14"
+"Diane","Herman","","","","","","mommasmail43506@yahoo.com","","","","","2008-11-14","2008-11-14","2008-11-14"
+"Julie","Vaughn","","","","","","vaughnjulie@yahoo.com","","","","","2008-11-14","2008-11-14","2008-11-14"
+"Tim","Shafer","","","","","","shafershuffle@gmail.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Brian","Frania","","","","","","bfrania@jaguaroftroy.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Glenn","Purvis","","","","","","skis46@comcast.net","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Heather","Pascoe","","","","","","heather.pascoe@akzonobel.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Robin & Chris ","Schweizer","","","","","","schweizer5@comcast.net","","","","","2008-11-17","2008-11-17","2008-11-17"
+"Sam","Geckler","","","","","","nbgeckler@cummins.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Terence","Stobbe","","","","","","terry140055@yahoo.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Jonathan","Mattis","","","","","","dkmattis@comcast.net","","","","","2008-11-17","2008-11-17","2008-11-17"
+"Carol","Thorne","","","","","","cmthorne@att.net","","","","","2008-11-17","2008-11-17","2008-11-17"
+"David","Homan","","","","","","cshoman@aol.com","","","","","2008-11-17","2008-11-17","2008-11-17"
+"John","Diiorio","","","","","","jdiiorio1@ameritech.net","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Gary","Ogden","","","","","","ogdengary@hotmail.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Dave & Janet","Donaldson","","","","","","ddonaldson9915@msn.com","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Victor","Dean","","","","","","deancrewof3@charter.net","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Bruce","Lockman","","","","","","blockman03@juno.com","","","","","2005-05-27","2005-05-27","2005-05-27"
+"Joel","Wittenberg","","","","","","kuchinic@aol.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Denise","Ridenour","","","","","","bdridenour@wowway.com","","","","","2005-08-29","2005-08-29","2005-08-29"
+"Sandra","Tomkovicz","","","","","","stomkovi@comcast.net","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Ronald","Prybycien","","","","","","zzkops@yahoo.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"James","Waske","","","","","","jameswaske@comcast.net","","","","","2008-11-17","2008-11-17","2008-11-17"
+"Vince","Poczik","","","","","","vpoczik@yahoo.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Theresa","Sharpe","","","","","","theresasharpe@comcast.net","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Joel","Webb","","","","","","jawebb24@gmail.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Richard","Demkovich","","","","","","rick@envirodevelopmentsolutions.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Joseph","Norber","","","","","","jnorber1@sbcglobal.net","","","","","2006-04-19","2006-04-19","2006-04-19"
+"Roger & Joyce","Nyman","","","","","","nymanr@meijer.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"James","Forgie","","","","","","jforgie@charter.net","","","","","2006-04-19","2006-04-19","2006-04-19"
+"ANGELA","CARSON","","","","","","angela2angelacarson.com","","","","","2008-11-17","2008-11-17","2008-11-17"
+"debby","hannigan","1460 chesterfield ","birmingham","michigan","48009","248-467-6118","debby.hannigan@corp.aol.com","1","7","","skiing special tickets..","2010-02-14","2010-02-19","2010-01-19"
+"Sinkovitz","Suzzane","","","","","","smsinkovitz@yahoo.com","","","","","2008-11-17","2008-11-17","2008-11-17"
+"Pam","Cavanagh","","","","","","pcavanagh@assante.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Fred","Flavell","","","","","","huntin55@aol.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Mary","Olex","","","","","","maryolex@yahoo.com","","","","","2008-11-17","2008-11-17","2008-11-17"
+"Philip","Saroli","","","","","","PSAROLI@YAHOO.COM","","","","","2008-05-04","2008-05-04","2008-05-04"
+"gary ","Larson","","","","","","glarson@twmi.rr.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Vicki","Terry","","","","","","vterry72@msn.com","2","8","We are interested in 3 units for 13 people total.  Do any of your units allow dogs?","","2010-07-17","2010-07-24","2010-01-19"
+"","","","","","","","dkbitterman@aol.com","","","","","2009-06-04","2009-06-04","2009-06-04"
+"David","Kane","","","","","","davidk@dankanechev.ca","","","","","2008-04-29","2008-04-29","2008-04-29"
+"Linda ","McEneany","","","","","","pmceneany1@aol.com","","","","","2009-04-24","2009-04-24","2009-04-24"
+"Frances","Davis","","","","","","peterand3@msn.com","","","","","2008-03-12","2008-03-12","2008-03-12"
+"Jane","Beaudoin","","","","","","jbeaudoin@bbbmi.com","","","","","2009-02-23","2009-02-23","2009-02-23"
+"","","","","","","","jimolsen8@comcast.net","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Barbara","Quinting","","","","","","mqbaker@aol.com","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Jay","Poplawski","","","","","","jlpoplawski@sbcglobal.net","","","","","2008-04-29","2008-04-29","2008-04-29"
+"Sean","Galbraith","","","","","","sg@eclipsecapitalgroup.com ","","","","","2009-10-16","2009-10-16","2009-10-16"
+"Ralph","Clemens","","","","","","ralph0307@aol.com","","","","","2008-11-17","2008-11-17","2008-11-17"
+"Jim","Warren","","","","","","warrenjimwarren@aol.com","","","","","2008-11-17","2008-11-17","2008-11-17"
+"Joseph","Oddo","","","","","","jcoddo@comcast.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"FRED","HUYSENTRUYT","","","","","","seenile@comcast.net","","","","","2008-11-17","2008-11-17","2008-11-17"
+"Ben","Chartier","","","","","","Bhchartier@comerica.com","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Joan","Blodgett","","","","","","joan1555@hotmail.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Sharon","George","","","","","","sgeorge2@wowway.com","","","","","2008-11-17","2008-11-17","2008-11-17"
+"Connie","Fuller","","","","","","corbgradjack@hotmail.com","","","","","2008-11-17","2008-11-17","2008-11-17"
+"","","","","","","","perimeterllc@aol.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Beverly","Schultz","","","","","","beverlyschultz@sbcglobal.net","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Robert","Lenard","","","","","","rlenard4834@wowway.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"","","","","","","","sgloss@somersetent.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Sylvia","Sumner","","","","","","sylviasumner@comcast.net","","8","Online","<p>Can you please tell me if you are on the beach?</p>","","","2008-07-13"
+"Tom & Sharon","Haller","","","","","","shaller8@hotmail.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Julie","Dietrich","","","","","","jmdietrich@mac.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"Brenda","Ganas","","","","","","bganas@sbcglobal.net","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Elliot","Alfredson","","","","","","ealfredson@twmi.rr.com","","","","","2008-05-01","2008-05-01","2008-05-01"
+"","","","","","","","terimorton@gmail.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Rusne","Kasputis","","","","","","rusnern@hotmail.com","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Paul","Dushane","","","","","","pjdushane@ameritech.net","","","","","2004-07-13","2004-07-13","2004-07-13"
+"Tim","Trinka","","","","","","stmtrinka@earthlink.net","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Assunta","Benvenuto","","","","","","sbenvenu@dmc.org","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Deb","Fahr","","","","","","d_fahr@yahoo.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Dale ","Chon","","","","","","dmchon@yahoo.com","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Carmen","Marion","","","","","","hcmarion@sbcglobal.net","","","","","2008-05-03","2008-05-03","2008-05-03"
+"","","","","","","","william.bull@comcast.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Sarah","Hartman","","","","","","sshcpa@comcast.net","","","","","2008-11-17","2008-11-17","2008-11-17"
+"Scott","Griswold","","","","","","scottgriswold@sympatico.ca","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Eve","Goeddel","","","","","","ecg@gtldc.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Karen","VanStright","","","","","","kvanstri@grcs.org","","","","","2004-12-31","2004-12-31","2004-12-31"
+"Douglas","Kearns","","","","","","kearn1@bellnet.ca","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Bill","Boras","","","","","","odshot68@yahoo.com ","","","","","2009-10-16","2009-10-16","2009-10-16"
+"Mike","Driest","","","","","","m.driest@comcast.net","","","","","2006-04-19","2006-04-19","2006-04-19"
+"John","Goddeeris","","","","","","goddeeri@gmail.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Dawn","Erkfritz","","","","","","clea603@aol.com","","","","","2009-02-07","2009-02-07","2009-02-07"
+"Bruce","Rogers","","","","","","bcrogers@charter.net","","","","","2004-10-22","2004-10-22","2004-10-22"
+"Doug","Schram","","","","","","luv2scuba@wowway.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"","Hendrick","","","","","","mahendrick@msn.com","","","","","2008-11-17","2008-11-17","2008-11-17"
+"Mark & Barbara","Seski","","","","","","mark_seski@ml.com","","","","","2009-02-03","2009-02-03","2009-02-03"
+"","","","","","","","mkzollner@comcast.net","","","","","2008-11-17","2008-11-17","2008-11-17"
+"Karen and Bill","Strong","37347 Catherine Marie","Sterling Heights","MI","48312","586 983-4119","strongtalk@comcast.net","2","9","","<p>We are interested in receiving the buy two nights get the third free. But, we would also like a fourth night. Can you please quote us a price. Thanks</p>","2008-03-23","2008-03-27","2008-02-17"
+"Gloria","Delano","","","","","","gloria.delano@gmail.com","","","","","2007-09-25","2007-09-25","2007-09-25"
+"Abby","LaLonde","","","","","","abby_harju@yahoo.com","","","","","2009-02-23","2009-02-23","2009-02-23"
+"Margaret","Hollingsworth","","","","","","peghollingsworth@yahoo.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Michael","Pieroni","","","","","","pep078@yahoo.com","","","","","2006-10-11","2006-10-11","2006-10-11"
+"Sarah","Wiese","","","","","","sarahwiese@gmail.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Erica","Marlatt","","","","","","eac60@yahoo.com","","","","","2009-04-24","2009-04-24","2009-04-24"
+"Matt ","Cox","","","","","","mattmardell@yahoo.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Patricia","Gratopp","","","","","","pdq@i-is.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"David","Democh","","","","","","d-moneyretired93005@hotmail.com","","","","","2009-05-22","2009-05-22","2009-05-22"
+"Marcia","Arthur","","Huron","OH","44839","419-433-6577","jarthur@buckeye-express.com","1","6","","","2006-04-18","2006-04-18","2006-04-18"
+"Dan","","","","","","","dan@troutcreek.com","","","","","2010-01-20","2010-01-20","2010-01-20"
+"","","","","","","","dmorelli2005@comcast.net","","","","","2009-06-04","2009-06-04","2009-06-04"
+"Brian","Rosinski","","","","","","brosinksi@sbcglobal.net","","","","","2009-10-16","2009-10-16","2009-10-16"
+"","","","","","","","larry.lyng@sbcglobal.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Janet","Yntema","","","","","","Janety602@aol.com","","","","","2008-05-03","2008-05-03","2008-05-03"
+"Steve","Burke","","","","","","joneil@airmaninc.com","","","","","2007-01-23","2007-01-23","2007-01-23"
+"Corinna","Ohmstedt","","","","","","cohmstedt@aol.com","","","","","2007-01-20","2007-01-20","2007-01-20"
+"Kerry","Boon","","","","","","sweetbriar4@yahoo.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Melissa","Pinion","","","","","","cliffandmel@charter.net","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Robin ","Whitney","","","","","","rwhitney@dillin.com","","","","","2008-05-04","2008-05-04","2008-05-04"
+"Mark","Zickel","","","","","","krzickel@charter.net","","","","","2008-11-17","2008-11-17","2008-11-17"
+"Valerie and Mark","Morsfield","","","","","","mmorsfield@comcast.net","","","","","2004-12-27","2004-12-27","2004-12-27"
+"Janette","Carras","","","","","","jcarras@cramerminock.com","","","","","2008-11-17","2008-11-17","2008-11-17"
+"Barbara","Benson","","","","","","babbenson@aol.com","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Patrick","Oates","","","","","","paddyoates@hotmail.com","","","","","2007-07-09","2007-07-09","2007-07-09"
+"Scott","Kemmerling","","","","","","skemmerling@calldcc.com","","","","","2008-11-17","2008-11-17","2008-11-17"
+"","","","","","","","petersb4@msu.edu","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Frank","Hutchinson","","","","","","farmhutch@sbcglobal.net","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Dorothe","Patterson","","","","","","dorothe@comcast.net","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Bruce","Havenga","","","","","","bhavenga@seyfarth.com","","","","","2008-11-17","2008-11-17","2008-11-17"
+"","","","","","","","sgshoha@gmail.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"","","","","","","","the5stros@yahoo.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"","","","","","","","william.piontkowski3@ge.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"George","Green","","","","","","skisoo@hotmail.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Derrick","Ayers","","","","","","derrick.ayers@53.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Steven","Still","","","","","","still2503@ameritech.net","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Tom","Doerflinger","","","","","","tom.doerflinger@bankofamerica.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Al","Whitehead","","","","","","whitea3@hotmail.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Tom","Mulready","","","","","","tmulready@gagemotormall.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Marty","Ryan","","","","","","martymryan8@hotmail.com","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Otto","Borgeson","","","","","","otnanborg@att.net ","","","","","2009-10-16","2009-10-16","2009-10-16"
+"Richard","Regan","","","","","248-345-8097","","","","","","2009-07-17","2009-07-17","2009-07-17"
+"Steven","Bowman","","","","","","stevemary@suddenlink.net","","","","","2009-07-18","2009-07-18","2009-07-18"
+"David","Kerner","","","","","","dakerner@comcast.net","","","","","2009-07-18","2009-07-18","2009-07-18"
+"Marci","Kosac","","","","","","list12@hotmail.com","","","","","2009-07-18","2009-07-18","2009-07-18"
+"Bill","Lyle","","","","","","bill.lyle@hylant.com","","","","","2009-07-18","2009-07-18","2009-07-18"
+"Felicia","Sams","Cumberland Blvd SE","Atlanta","GA","30339","","seo.sales.traffic@gmail.com","6","0","Dear site owner We are interested to increase traffic to your website, please get back to us in order to discuss the possibility in further detail Thanks\r
+","","","","2009-11-07"
+"Tim","Manley","","","","","","tim.manley@att.net","","","","","2009-07-18","2009-07-18","2009-07-18"
+"Nancy","Monterusso","","","","","","nancy.monterusso@nationalcity.com","","","","","2009-07-18","2009-07-18","2009-07-18"
+"Joseph","Swanson","224 Lawrence Road  ","New York","NY","11111","000-000-0000","joseph23001@gmail.com","","6","","We would like to get your website on first page of Google. All of our processes use the most ethical "white hat" Search Engine Optimization techniques that will not get your website banned or penalized. Please reply and I would be happy to send you a proposal. In order for us to respond to your request for information, please include your company’s website address (mandatory) and or phone number.\r
+","","","2009-09-26"
+"Barry","Piccirillo","","","","","","b.piccirillo@hotmail.com","","","","","2009-07-18","2009-07-18","2009-07-18"
+"Jen","Stabnik","","","","","","moorjen@hotmail.com","","","","","2009-07-18","2009-07-18","2009-07-18"
+"Karen","Thompson","","","","","","Cheers908@aim.com","","","","","2009-07-18","2009-07-18","2009-07-18"
+"","","","","","","","sugawa@iace-usa.com","","","","","2009-07-18","2009-07-18","2009-07-18"
+"Ralph","Weibel","","","","","","rweibel@waw.misd.net","","","","","2009-07-18","2009-07-18","2009-07-18"
+"Dale","Wiper","","","","","","whipper@sympatico.ca","","","","","2009-07-18","2009-07-18","2009-07-18"
+"Steve","Velzen-Haner","","","","","","Svelzenhaner@comcast.net","","","","","2009-07-18","2009-07-18","2009-07-18"
+"Tim","Sullivan","","","","","","timsullivan312@msn.com","","","","","2009-07-18","2009-07-18","2009-07-18"
+"Mike","Schultz","","","","","","mjschultz357@charter.net","","","","","2009-07-18","2009-07-18","2009-07-18"
+"George","Semaan","","","","","","gmsemaan@yahoo.com","","","","","2009-07-18","2009-07-18","2009-07-18"
+"Joe","Orlich","","","","","","joeorlich@gmail.com","","","","","2009-07-18","2009-07-18","2009-07-18"
+"Dan","Mancina","","","","","","d.mancina@hotmail.com","","","","","2009-07-18","2009-07-18","2009-07-18"
+"Pete","Merckx","","","","","","pmerckx@charter.net","","","","","2009-07-18","2009-07-18","2009-07-18"
+"William","Murphy","","","","","","murphman51@hotmail.com","","","","","2009-07-18","2009-07-18","2009-07-18"
+"Bernie","Lisiak","","","","","","blysiak@sympatico.ca","","","","","2009-07-18","2009-07-18","2009-07-18"
+"John","Lafeuer","","","","","586-801-3095","","","","","","2009-07-18","2009-07-18","2009-07-18"
+"John","Kermin","","","","","","johnkerwin80@gmail.com","","","","","2009-07-18","2009-07-18","2009-07-18"
+"Chris","Kintz","","","","","","clkint@mrtransportation.com","","","","","2009-07-18","2009-07-18","2009-07-18"
+"nicolas","Pietrangelo","19212 n shore dr.","Spring Lake","MI","49456","6168426813","batterydoc@yahoo.com","4","9","","","2013-12-20","2013-12-23","2013-09-25"
+"Stephen","Janson","","","","","","stevie_j61@yahoo.com","","","","","2009-07-18","2009-07-18","2009-07-18"
+"Daniel","Jacobs","","","","","","Daniel.Jacobs@dla.mil","","","","","2009-07-18","2009-07-18","2009-07-18"
+"Robert","Helminen","","","","","","rhmcontractors@gmail.com","","","","","2009-07-18","2009-07-18","2009-07-18"
+"Richard","Hovsepian","","","","","","richard.n.hovsepian@flagstar.com","","","","","2009-07-18","2009-07-18","2009-07-18"
+"Dean","Horley","","","","","","jdh1@iwarp.net","","","","","2009-07-18","2009-07-18","2009-07-18"
+"Steve","Guy","","","","","","uwosteve@hotmail.com","","","","","2009-07-18","2009-07-18","2009-07-18"
+"Mike","Goldfine","","","","","","cgoldfine2@aol.com","","","","","2009-07-18","2009-07-18","2009-07-18"
+"Kevin","Elliot","","","","","","kevine2721@aol.com","","","","","2009-07-18","2009-07-18","2009-07-18"
+"Andrew","Donnelly","","","","","","ajdpistons@att.net","","","","","2009-07-18","2009-07-18","2009-07-18"
+"Scott","Cassidy","","","","","","","","","","","2009-07-18","2009-07-18","2009-07-18"
+"Haley","Batt","","","","","","haleykbatt@yahoo.com","","","","","2009-07-18","2009-07-18","2009-07-18"
+"Ron","Bertrand","","","","","","ronbertrand30@hotmail.com","","","","","2009-07-18","2009-07-18","2009-07-18"
+"liz","pappas","457 allard","grosse pte farms","mi","48236","3134172334","lizannepappas@sbcglobal.net","0","9","","","2009-08-27","2009-08-30","2009-07-22"
+"Dave","Hauskins","1460 Van Auken SE","Grand Rapids","MI","49508","616-452-1642","dh1460@yahoo.com","6","9","","","","","2009-07-28"
+"Alan","Freeborn","406 Brookside","Ypsilanti","Michigan ","48197","734 434-0414","freeboa@peoplepc.com","3","8","Stay 3 nights 4th night free billboard in Detroit","","2009-04-08","2009-08-08","2009-07-28"
+"Jennifer","Abdella","2535 13th St. NW, # 301","Washington","DC","20009","","jen.abdella@gmail.com","","8","Michigan Pure Magazine","We will be in Michigan the week of August 10, and we may be able to come by and take a look at the accommodations and facilities.  Please let me know if we need to make an appointment. \r
+\r
+We are planning a family reunion for the summer of 2011 (likely July); approximately 45 people will attend.  Any information you could provide would be most appreciated.\r
+\r
+Thanks!","","","2009-08-04"
+"Joseph Swanson","Joseph Swanson","224 Lawrance Road ","New York","New York","11111","000-000-0000","joseph2319@gmail.com","6","6","We Would like to get your website on first page of Google.All of our processes use the most ethical "white hat" Search Engine Optimization techniques that will not get your website banned or penalized.Please reply and I would be happy to send you a proposal.","We Would like to get your website on first page of Google.All of our processes use the most ethical "white hat" Search Engine Optimization techniques that will not get your website banned or penalized.Please reply and I would be happy to send you a proposal.","","","2009-08-08"
+"Bella","Garza","224 Lawrence Road","New York","New York","11111","0000000000","bella3250@gmail.com","5","8","We would like to get your website on first page of Google.\r
+\r
+All of our processes use the most ethical "white hat" Search Engine Optimization techniques that will not get your website banned or penalized.\r
+\r
+Please reply and I would be happy to send you a proposal.\r
+\r
+In order for us to respond to your request for information, please include your company’s website address (mandatory) and or phone number.\r
+","We would like to get your website on first page of Google.\r
+\r
+All of our processes use the most ethical "white hat" Search Engine Optimization techniques that will not get your website banned or penalized.\r
+\r
+Please reply and I would be happy to send you a proposal.\r
+\r
+In order for us to respond to your request for information, please include your company’s website address (mandatory) and or phone number.\r
+","","","2009-08-18"
+"Christine","Sedlacek","","","","","","humandocmom@aol.com","","8","","I will be staying in unit 93 for 1 week, starting April 22.  Is there anything to do there then?  Pool open? Hiking? Makinaw Island?\r
+973-214-3199","","","2010-04-22"
+"Janet","Herwaldt","2212  Chase Pointe Ct.","Flushing","Michigan","48433","910-659-8190","treelords@aol.com","","","Regarding Unit 131.  We received an e-mail a while back re: converting our fireplace to gas.  I've deleted that message and don't remember who sent it to me.  My brothers and I have to decided to look into converting and were wondering if the person who is in charge of that area could e-mail me.  We do have a few questions...and when I called no one there was able to answer!","thanks for your assistance!! \r
+\r
+Janet  :-)","","","2009-08-19"
+"","","","","","","","byrnes@msu.edu","","","","","2009-11-11","2009-11-11","2009-11-11"
+"carol","silver","2550 driftwood dr","waterford","mi","48329","2487601284","cannsilver1@yahoo.com","","","yes, i would like someone to please email me my confirmation sheet, and total of bill so that i can give our roommates a copy for their balance. I know that we our in bldg 2 condo 10.  thank you","","","","2009-08-31"
+"Susan","Krueger","","","","","","krueger.s@att.net","","9","","Do any of your condos accept pets? I have a Wheaton terrier (does not shed) and would be interested in a 1BR for 2 nights next week, Sept 8th thru 10th.  Thank you!","","","2009-09-01"
+"Matt","Ryder","","","","","","mryder@rogers.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Thomas","Brennan","","","","","","brennans06@ymail.com ","","","","","2009-10-16","2009-10-16","2009-10-16"
+"Sharyn","Czegus","","","","","","sczegus2@att.net ","","","","","2009-10-20","2009-10-20","2009-10-20"
+"Keith ","Dempsey","","","","","","sparkyb@email.com ","","","","","2009-10-20","2009-10-20","2009-10-20"
+"Gary ","Drinkhorn ","","","","","","golfnut7777@msn.com ","","","","","2009-10-20","2009-10-20","2009-10-20"
+"Jeff","Dufon","","","","","","jeffdufon@ameritech.net ","","","","","2009-10-20","2009-10-20","2009-10-20"
+"Rick ","Faught","","","","","","rfaught@emmco.com ","","","","","2009-10-20","2009-10-20","2009-10-20"
+"Jason","Gunder","","","","","","jason.gunder@hdfsi.com ","","","","","2009-10-20","2009-10-20","2009-10-20"
+"Lorraine","Hart","","","","","","lhart1707@comcast.net ","","","","","2009-10-20","2009-10-20","2009-10-20"
+"Natalie","Heger","","","","","","natalie_heger@yahoo.com ","","","","","2009-10-20","2009-10-20","2009-10-20"
+"Annette","Helmkay","","","","","","anmohe@aol.com ","","","","","2009-10-20","2009-10-20","2009-10-20"
+"Michael","Higgens","","","","","","mikehiggy@juno.com ","","","","","2009-10-20","2009-10-20","2009-10-20"
+"Mark","Houser","","","","","","mhouser@apolloexpressinc.com ","","","","","2009-10-20","2009-10-20","2009-10-20"
+"Larry","Iliff","","","","","","liliff@zoominternet.net ","","","","","2009-10-20","2009-10-20","2009-10-20"
+"Scott","Jensen","","","","","","scooter37@chartermi.net ","","","","","2009-10-20","2009-10-20","2009-10-20"
+"Andrew","Johnston ","","","","","","andrew.johnston86@gmail.com ","","","","","2009-10-20","2009-10-20","2009-10-20"
+"Neal ","Jordan ","","","","","","njordan@ccrtc.com","","","","","2009-10-20","2009-10-20","2009-10-20"
+"Tom ","Kat","","","","","","tomkato@charter.net ","","","","","2009-10-20","2009-10-20","2009-10-20"
+"Linda","Krause","","","","","","linda.krause@jtmarshinc.com ","","","","","2009-10-20","2009-10-20","2009-10-20"
+"Brian ","Krus ","","","","","","krusfamily@comcast.net ","","","","","2009-10-20","2009-10-20","2009-10-20"
+"Leo ","","","","","","","leeyogasm@gmail.com ","","","","","2009-10-20","2009-10-20","2009-10-20"
+"Kevin ","Loganr","","","","","","logan-k@solve.net ","","","","","2009-10-20","2009-10-20","2009-10-20"
+"Dennis ","Loughlin ","","","","","","dloughlin@wnj.com ","","","","","2009-10-20","2009-10-20","2009-10-20"
+"Brad","Marsh","","","","","","bradmarsh7@hotmail.com ","","","","","2009-10-20","2009-10-20","2009-10-20"
+"Tim","McDaniel","","","","","","mcdanielpack@charter.net","","","","","2009-10-20","2009-10-20","2009-10-20"
+"Randall ","McArthur ","","","","","","randymcarthur@navigatorpg.com ","","","","","2009-10-20","2009-10-20","2009-10-20"
+"Arun","Mehta","","","","","","akcmehta@wowway.com ","","","","","2009-10-20","2009-10-20","2009-10-20"
+"Jordan","Miller","","","","","","jordanmiller_pt@hotmail.com ","","","","","2009-10-20","2009-10-20","2009-10-20"
+"Greg","Murray","","","","","","gemurray47@yahoo.ca","","","","","2009-10-20","2009-10-20","2009-10-20"
+"Gordon ","Nisbet","","","","","","gordon_nisbet@suth.com ","","","","","2009-10-20","2009-10-20","2009-10-20"
+"Rick ","O'Cull ","","","","","","rick@careyelectric.com","","","","","2009-10-20","2009-10-20","2009-10-20"
+"Sam","Osnowitz","","","","","","samosnowitz@bex.net ","","","","","2009-10-20","2009-10-20","2009-10-20"
+"John ","Perini ","","","","","","perini@maximcompany.com ","","","","","2009-10-20","2009-10-20","2009-10-20"
+"Tom","Petho","","","","","","petho.thomas@con-way.com ","","","","","2009-10-20","2009-10-20","2009-10-20"
+"John","Schaupp","","","","","","john_schaupp@yahoo.com","","","","","2010-01-20","2010-01-20","2010-01-20"
+"Suzanne","Pullman","","","","","","suzanne.pullman@moen.com ","","","","","2009-10-20","2009-10-20","2009-10-20"
+"Bruce","Rarrick ","","","","","","brarric@entery.com ","","","","","2009-10-20","2009-10-20","2009-10-20"
+"Brad","Rickard","","","","","","bbbrickard@yahoo.com ","","","","","2009-10-20","2009-10-20","2009-10-20"
+"Joel ","Roach ","","","","","","jpr31@chrysler.com ","","","","","2009-10-20","2009-10-20","2009-10-20"
+"Glenn ","Scala ","","","","","","gscala@twmi.rr.com ","","","","","2009-10-20","2009-10-20","2009-10-20"
+"James","Seasly","","","","","","jcyclone@mac.com ","","","","","2009-10-20","2009-10-20","2009-10-20"
+"Terra","Salas","313 Georgian Oak Ct","Lake Dallas","TX","75065","214-675-6938","terras@charter.net","5","8","","I wanted to know if you are havign a scrapbooking package the weekend listed.","2009-03-19","2009-03-21","2009-10-24"
+"Joan","Schrubba","","","","","","jschrubba@newpassages.org","","","","","2009-10-20","2009-10-20","2009-10-20"
+"Andrea ","Sheppard","","","","","","andrea.sheppard@abbott.com ","","","","","2009-10-20","2009-10-20","2009-10-20"
+"Jay ","Silha","","","","","","jaysilha@comcast.net ","","","","","2009-10-20","2009-10-20","2009-10-20"
+"Frank","Sorentino ","","","","","","fsorentino@optimvalue.com ","","","","","2009-10-20","2009-10-20","2009-10-20"
+"Susan","Souckey","","","","","","pandssouckey@nti.sympatico.ca ","","","","","2009-10-20","2009-10-20","2009-10-20"
+"James","Tassoni","","","","","","jdtcpa1@hotmail.com ","","","","","2009-10-20","2009-10-20","2009-10-20"
+"Jayne","Vandermolen ","","","","","","jvandermolen@lvmcapital.com ","","","","","2009-10-20","2009-10-20","2009-10-20"
+"Terry","VanDyke","","","","","","terry_van_dyke@hotmail.com ","","","","","2009-10-20","2009-10-20","2009-10-20"
+"Ken ","Yates","","","","","","kyates@wowway.com ","","","","","2009-10-20","2009-10-20","2009-10-20"
+"Connie","Demar","","","","","","cdemar@comcast.net ","","","","","2009-10-21","2009-10-21","2009-10-21"
+"Frank R. ","Martinex, III","","","","","","fr_martinez@sbcglobal.net ","","","","","2009-10-21","2009-10-21","2009-10-21"
+"Herbert ","Ross","","","","","","herbnsue41@hotmail.com ","","","","","2009-10-21","2009-10-21","2009-10-21"
+"Ella","MacLean","","","","","","clean5clan@yahoo.com ","","","","","2009-10-21","2009-10-21","2009-10-21"
+"Kay","Bumstead","","","","","","kbumstead@homesteadrealtorsinc.com ","","","","","2009-10-21","2009-10-21","2009-10-21"
+"Alison","Gould ","","","","","","ajg1437@aol.com ","","","","","2009-10-21","2009-10-21","2009-10-21"
+"Matt","Walsh","","","","","","mwalsh@hap.org ","","","","","2009-10-21","2009-10-21","2009-10-21"
+"Martin ","Jackson ","","","","","","ston@cbpu.com ","","","","","2009-10-21","2009-10-21","2009-10-21"
+"Eric","Abbott","","","","","","erabbot@microsoft.com ","","","","","2009-10-21","2009-10-21","2009-10-21"
+"Chad","Bowles","","","","","","chad.t.bowles@daimler.com ","","","","","2009-10-21","2009-10-21","2009-10-21"
+"Mary Ann ","Brooks ","","","","","","wbrooks7@xcelco.ca","","","","","2009-10-21","2009-10-21","2009-10-21"
+"Fred ","Binder ","","","","","","fredbinder@comcast.net ","","","","","2009-10-21","2009-10-21","2009-10-21"
+"Cathy ","Belsito ","","","","","","belsitz@hotmail.com ","","","","","2009-10-21","2009-10-21","2009-10-21"
+"Susan ","Bologna ","","","","","","backmasu@comcast.net ","","","","","2009-10-21","2009-10-21","2009-10-21"
+"Ernest","Bracken","","","","","","ernest.bracken@sympatico.ca","","","","","2009-10-21","2009-10-21","2009-10-21"
+"Marilyn ","Carr ","","","","","","forecarr@wincome.net ","","","","","2009-10-21","2009-10-21","2009-10-21"
+"Tina","DiFranco ","","","","","","tdifbrat@comcast.net ","","","","","2009-10-21","2009-10-21","2009-10-21"
+"Annette ","Dark ","","","","","","adark@cogeco.ca ","","","","","2009-10-21","2009-10-21","2009-10-21"
+"John ","D","","","","","","tpccorp@sbcglobal.net ","","","","","2009-10-21","2009-10-21","2009-10-21"
+"Rob","deBortoli ","","","","","","bon.rob@sympatico.ca","","","","","2009-10-21","2009-10-21","2009-10-21"
+"Bob ","Dorsch ","","","","","","dorschb@aol.com ","","","","","2009-10-21","2009-10-21","2009-10-21"
+"Jeffrey","Eastman ","","","","","","jeffreyeastman@yahoo.com ","","","","","2009-10-21","2009-10-21","2009-10-21"
+"Barry","Flaga ","","","","","","barry.flaga@gmail.com ","","","","","2009-10-21","2009-10-21","2009-10-21"
+"Kerrie","Grant","","","","","","kszusz@hotmail.com ","","","","","2009-10-21","2009-10-21","2009-10-21"
+"Jerry ","Hammond ","","","","","","jerryh74@hotmail.com ","","","","","2009-10-21","2009-10-21","2009-10-21"
+"Terry","Herwig ","","","","","","wigs38@hotmail.com ","","","","","2009-10-21","2009-10-21","2009-10-21"
+"John ","Huish ","","","","","","jrh32@netzero.net ","","","","","2009-10-21","2009-10-21","2009-10-21"
+"","","","","","","","bbdgm@sbcglobal.net","","","","","2010-01-20","2010-01-20","2010-01-20"
+"Austin","Kline","","","","","","klinea@wabash.edu ","","","","","2009-10-21","2009-10-21","2009-10-21"
+"Patrick ","Keena ","","","","","","keenaplr@aol.com ","","","","","2009-10-21","2009-10-21","2009-10-21"
+"Oliver","Kopilas","","","","","","kopsh@rogers.com ","","","","","2009-10-21","2009-10-21","2009-10-21"
+"Daniel ","Lenhardt ","","","","","","daniel.lenhardt@scotiabank.com ","","","","","2009-10-21","2009-10-21","2009-10-21"
+"June","Long ","","","","","","jlong@shaw.ca ","","","","","2009-10-21","2009-10-21","2009-10-21"
+"Janelle","Marshall ","","","","","","clfswife1@yahoo.com ","","","","","2009-10-21","2009-10-21","2009-10-21"
+"Lori","Morrision","","","","","","lmorrison@gbhs.on.ca","","","","","2009-10-21","2009-10-21","2009-10-21"
+"John","Marco","","","","","","marcobev@comcast.net ","","","","","2009-10-21","2009-10-21","2009-10-21"
+"Rob & Christa ","MacLaggan ","","","","","","maclaggan@sympatico.ca ","","","","","2009-10-21","2009-10-21","2009-10-21"
+"Jason","Meyer","","","","","","zdub_23@yahoo.com ","","","","","2009-10-21","2009-10-21","2009-10-21"
+"Donna","Mansor ","","","","","","dmansor@att.net ","","","","","2009-10-21","2009-10-21","2009-10-21"
+"Terry ","McPhee","","","","","","deucedss@hotmail.com ","","","","","2009-10-21","2009-10-21","2009-10-21"
+"Brian","McCabe","","","","","","brianmccabe62@hotmail.com ","","","","","2009-10-21","2009-10-21","2009-10-21"
+"Pat","O'Toole","","","","","","patotoole11319@aol.com ","","","","","2009-10-21","2009-10-21","2009-10-21"
+"Tom","Pahapill","","","","","","tpahapill@rogers.com ","","","","","2009-10-21","2009-10-21","2009-10-21"
+"Dennis","Podlesney","","","","","","pod4@comcast.net","","","","","2009-10-21","2009-10-21","2009-10-21"
+"Sandra","Reier","","","","","","sandra-reier@coldwellbanker.ca ","","","","","2009-10-21","2009-10-21","2009-10-21"
+"Craig","Rioux","","","","","","craigrioux@hotmail.com ","","","","","2009-10-21","2009-10-21","2009-10-21"
+"Lisa","Smith","","","","","","lsmith@rocksolidservices.com ","","","","","2009-10-21","2009-10-21","2009-10-21"
+"Suarci","","","","","","","msuraci@msn.com ","","","","","2009-10-21","2009-10-21","2009-10-21"
+"Carolyn","Schoenwald","","","","","","cps15@bellsouth.net ","","","","","2009-10-21","2009-10-21","2009-10-21"
+"Jill","Whitaker","1529 Michigan Ave","LaPorte","IN","46350","219/324-3470","jillwhitaker@comcast.net","","","We have a benefit event for our local school - more than 300 will be attending (the majority families with children) from this area. I think Trout Creek would be a  wonderful destination for a family vacation. Hoping you would consider a contribution for our auction. Ski passes, golf package and/or one overnight would be amazing!  It will be a great direct marketing opportunity to this community of Northwest Indiana/Michiana and an opportunity. \r
+As a volunteer parent, we are required to turn items in by the 30th of October. If you are considering a contribution, please reply to me via email and the item can then be mailed (you can include additional promotional brochures for folks to pick up as well as part of the silent auction).  \r
+","THANK YOU FOR YOUR CONSIDERATION...my email is jillwhitaker@comcast.net\r
+\r
+ph 219/324-3470, cell 312/391-2956.  I am happy to send/email or fax an official letter request as well. ","","","2009-10-25"
+"Kent Cornwall","Kent Cornwall","224 Lawrence Road","New York","NY","11111","000-000-0000","kent3207@gmail.com","0","2","Increase traffic to your website\r
+\r
+We would like to get your website on first page of Google.\r
+\r
+All of our processes use the most ethical "white hat" Search Engine Optimization techniques that will not get your website banned or penalized.\r
+Please reply and I would be happy to send you a proposal.\r
+In order for us to respond to your request for information, please include your company’s website address (mandatory) and or phone number.\r
+","Increase traffic to your website\r
+\r
+We would like to get your website on first page of Google.\r
+\r
+All of our processes use the most ethical "white hat" Search Engine Optimization techniques that will not get your website banned or penalized.\r
+Please reply and I would be happy to send you a proposal.\r
+In order for us to respond to your request for information, please include your company’s website address (mandatory) and or phone number.\r
+","","","2009-10-30"
+"Sierra","Olsen","18673 Mission Rd.","Traverse City","Michigan","49686","2312237611","extremefam@aol.com","6","6","","just wondering baout hte prices for these date and if its stil open to be booked. please let me know!","2009-12-27","2009-12-29","2009-11-10"
+"","","","","","","","amfaje@gmail.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","amn1007@aol.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","amykirby5@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","angel-ii-s@sbcglobal.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","annam_williams@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","artcbenton@gmail.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","atallent48@yahoo.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","aw5095@wayne.edu","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","awosik262916MI@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","barnold128@live.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","bates.helen@att.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","bbshellito@yahoo.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","bccunn@yahoo.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","bchasco@gmail.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","bemansfield@gmail.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","bfershtman@yahoo.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","bfguimond@hotmail.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","bjaynes@jerviswebb.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","bjherman05@aol.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","blaisekrol@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","bloomdadjim@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","bmendols82@aol.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","bmulheisen@hurstind.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","bobrains@landmarkmgt.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","bobsimon5@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","brenners@airadv.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","brian@northroofing.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","bsallen@delta.edu","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","buffett_fan@verizon.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","bzavell@bex.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","c.deluca@att.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","carrilyn@acegroup.cc","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","cathskitchen@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","cbarnes@kingventure.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","cchapm6@columbus.rr.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","cciesick@gmail.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","cfrenell@yahoo.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","christine_murrell72@yahoo.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","christocarol@gmail.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","cici.amiri@gmail.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","ckushler@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","clh@wowway.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","cmdose@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","cmeld@hotmail.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","coachbugsy@yahoo.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","cokeefe@okeefeassociates.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","colleen.wilberding@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","cowan_d@ghc.on.ca","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","cpfahler@woh.rr.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","craig@mtl-troy.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","cultura101@hotmail.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","dallen14@insightbb.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","dbaran@hfcc.edu","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","dcbracciano@aol.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","dd4215@att.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","ddaldine@wowway.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","debbiebreak05@hotmail.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","debjoseph@charter.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","deborah1@sandiego.edu","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","deckedout04@yahoo.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","dferrara09@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","dgbenton@apt.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","dingojoe89@yahoo.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","djs@cablespeed.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","dkonal@pappasfinancial.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","dlewand001@aol.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","don.reef@sprint.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","doughankla@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","dpiacsek@msn.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","drdonart@yahoo.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","dtalbot211@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","dtarnas@sbcglobal.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","dtrexler@etczone.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","dudzrm@charter.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","ebloch97@aol.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","ed.pobur@masseycadillacplymouth.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","edheidishort","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","edheidishort@gmail.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","efsaladin@sbcglobal.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","elaine_yates@bellsouth.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","eleeson@cinci.rr.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","ellenf@rsmpllc.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","erkfritzdawn@yahoo.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","eva@evedetroit.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","farley.barbara@sbcglobal.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","farmerpatricia@att.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","fkovalik@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","flipside89@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","sloptop@sbcglobal.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","fridahinsdale@yahoo.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","friesenj@sympatico.ca","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","fsabre@charter.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","fsass01@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","fsruch@sbcglobal.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","g.giffin@infineum.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","g1942woody@aol.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","gautan_jha@yahoo.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","gbonamicidds@yahoo.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","gc16@aol.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","geoshari@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","golf2500@aol.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","goshnock@charter.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","gpilchak@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","granney@prodigy.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","guts62@aol.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","hamandbeaner@yahoo.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","hassanamb@yahoo.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","henway72@sbcglobal.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","herrington@charter.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","hhgriesser@hotmail.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","horsemom37@aol.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","hotshot7576@netzero.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","hudanish@att.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","hyame1je@cmich.edu","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","j.deering@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","jabenton@ameritech.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","janetjoe@hotmail.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","janicebrady@sbcglobal.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","jbizango@charter.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","jdrikkers@charter.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","jeff-miedema@hotmail.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","jeffandjuli33@verizon.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","jennifer_hernandez@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","jfrumery@gmail.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","jgust@dow.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","jharaszk@umich.edu","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","jhecker@flexngate-mi.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","jherrmann@sbcglobal.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","jhlwds7-miscel@yahoo.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","jhonigman@msn.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","jill-wegmann@uiowa.edu","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","jim.french@sbcglobal.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","jjstorts@sbcglobal.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","jkbarry@wideopenwest.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","jkmeteo@hotmail.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","jmbckb@aol.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","jockozaski@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","john.travis@bankibt.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","johng@mcmahonbaldwin.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","johnrobertschumacher@yahoo.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","jonesmichaelp@aol.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","joyrondini@hotmail.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","jpnelson@rcn.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","jricci0728@gmail.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","jross4_228@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","js306stone@yahoo.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","jsmith@incubatenow.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","jsteller@talontitle.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","jszamzow@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","jtgiwa@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","jtneetz@gmail.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","jtquail@gmail.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","juliecorch@msn.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","junswor@uwo.ca","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","just.fine@hotmail.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","justinliberman@sbcglobal.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","jvandeloo@new.rr.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","jwstew61@charter.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","jzientarski@hotmail.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","karen.gilbert@sympatico.ca","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","karenannroland@aol.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","kathyapartridge@aol.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","kengallen@wowway.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","kengeisler@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","kentjohannsen@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","kfarstvedt@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","khmaclean42@att.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","kjbouwman@stmarysofmichigan.org","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","kjnelson2@aol.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","kjostes@charter.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","kkapera@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","kldruyor@yahoo.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","klwillman@yahoo.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","kovac.john@gmail.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","kreiswirth@msn.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","kturnowchyk@sbcglobal.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","kveryser@charterinternet.con","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","kviaanko@sbdglobal.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","kviazanko@sbcglobal.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","kzoosmitty@aol.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","la_bello_vita@sbcglobal.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","lascrsdk-bills@yahoo.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","laurawake88@hotmail.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","lawick@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","lchipman@tds.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","leah69@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","lebiaje@hotmail.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","leebenj@msn.edu","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","lisamoore5@att.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","lisav_1213@yahoo.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","lmkildahl64@aol.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","lobos00g@gmail.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","lorrierrn@sbcglobal.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","lovetasha@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","lpyykkonen@wowway.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","lwood.77@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","m.rant@charter.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","maprentice@aol.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","marisa.boston@gmail.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","markopel@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","mary_e_wade@yahoo.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","matt@h4smi.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","mattthecopierguy@gmail.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","maxxp21@sbcglobal.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","mbcroft@gmail.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","mbkrater@yahoo.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","mcdonaldlinda@msn.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","mcgill2002@gmail.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","mchomic@hotmail.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","mcsigkirkland@charterinternet.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","mctrois@shaw.ca","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","megjim23@bellsouth.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","melanie@melaniebowen.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","melissa.hammett@citizensbank.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","melissa_brockway@yahoo.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","mercina3@dex.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","mgonyon@hotmail.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","mgrobards@aol.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","michelle_moran@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","mick.story@jackson.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","mickeywaw@charter.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","mikeandsuedecker@gmail.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","mikejd4@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","mikelogan@synergy-env.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","missy.root@compuware.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","mivol@sbcglobal.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","mkaat@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","mkllprice@gmail.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","mlalonde@expensereduction.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","mlewis2864@aol.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","mrsalyce@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"Jimmie","Mitchell","3086 Wakeshire Drive","Dublin","OH","43017","614 270-9074","mitchell36@ameritech.net","","","","","","","2011-05-19"
+"","","","","","","","msugnet@sbcglobal.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","mvanderlaan1@hotmail.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","my4boys_4@yahoo.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","nald810@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","neejur@yahoo.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","nickpiunti@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","nlwalker6@aol.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","nrhollow@charter.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","NSK@neilskahnpc.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","okray.mbc@hotmail.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","oneputtcj@aol.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","p.stoll@bex.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","palmich66@att.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","pam@bardhvac.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","pat.d@wintersteiger.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","pat92900@yahoo.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","pfrising@hotmail.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","phayes25@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","pj60140@yahoo.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","ptspower@yahoo.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","rana_adou@yahoo.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","rbaranski@yahoo.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","renga.rajan@hotmail.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","rfort@att.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","rhrogala@att.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","richard@primericagroupone.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","rick@jarzembowski.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","ritasmythe7@att.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","rjin15@yahoo.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","rob.debertoli@city.elliotlake.on.ca","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","robert.campbell@watsonwyatt.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","ron_yokum@yahoo.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","roofdr2347@aol.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","rosie1515@sbcglobal.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","rosiemary@msn.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","rossfamily75@yahoo.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","roxanneflaska@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","rudolphshorter@att.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","s_proksch@yahoo.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","sabenton@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","sandybarnes1@yahoo.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","sara@doyledetroit.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","sarahkjen@hotmail.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","sdrake303@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","serhome007@yahoo.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","sfraley@danis.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","shannonpackan@gmail.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","sharonlfowler@bellsouth.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","shelleyrenae@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","shellybattershell@yahoo.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","shirley@korb-toy.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","sjkuehner@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","smiscavish@marcusmillichap.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","sneddy1@ejourney.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","spartans48309@wowway.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","spencers11@charter.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","srb39@yahoo.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","stacielyn33@att.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","steve3010@hotmail.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","sullivan316@att.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","susannystrom@gmail.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","susieturek@yahoo.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","swalterarbor23@hotmail.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","tajovi@tri.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","taketurns@charter.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","taradrury@hotmail.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","tawo40@yahoo.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","tbarr35223@aol.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","tbazany1293@charter.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","tbenton@wolves.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","tcrystal2543@charter.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","tedvmccarthy@yahoo.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","terri4msu@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","terry.weiler@spectrum-health.org","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","thaase@ndindustries.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","the_milanos@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","thebarnetts@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","thewps@ameritech.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","thomas_d_cox@yahoo.co.uk","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","tlgrove@dow.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","tmal104083@aol.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","tmlagalo@dow.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","tpaws80778@aol.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","trajter@yahoo.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","transcribermom3@charter.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","traumadog91@yahoo.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","trekceles@hotmail.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","troutcreek@vdgrijn.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","tturner325@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","uppercapsd@aol.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","vansad@earthlink.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","vikmali@yahoo.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","warnerejw@triton.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","worksfile@aol.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","yellowdog1397@comcast.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"","","","","","","","zimplus2@sbcglobal.net","","","","","2009-11-11","2009-11-11","2009-11-11"
+"beth","hager","683 westview nw","grand rapids","michigan","49504","616-735-3685","bethha2003@yahoo.com","","","won at Sacred Heart of Jesus School auction","I bid/won a two nite stay from the Sacred Heart auction.  I did not know that there was a expiration date involved and I was wondering if that could be expanded.  I was planning on using it during the summer but was laid off in June and funds are very tight at this time.  So could I please get an extension of time to use this.  I paid lots for it and don't want to lose out on this.  Thank you for your consideration.  ","","","2009-11-12"
+"Richard","Myers","1022 Craig Rd","Maumee","Ohio","43537","(419)467-7428","rmyers@noneman.com","0","6","","<p>To clarify we would like to reserve for September 11, 2003 to the 14th of September.</p>","2003-10-11","2003-10-14","2003-07-31"
+"Jeff","Thompson","","","","","","jeffthompson51@yahoo.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Karen","Swan","","","","","","kmswan@med.umich.edu","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Dave","Acky","","","","","","daveacky@hotmail.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Bob","Cloutier","","","","","","bbclout@yahoo.com","","","","","2009-07-30","2009-07-30","2009-07-30"
+"Susan","Casey","","","","","","sue@g-m-d.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Frank","Zimmer","3950 N. Lake Shore Drive #627E","Chicago","IL","60613","773-755-9284","fzimmer@scheersinc.com","5","6","","","2005-07-03","2005-07-06","2004-12-27"
+"Norm ","Shippy","4129 Spruce","Dorr","MI","49323","(616) 681-2219","nbshippy@sbcglobal.net","5","9","","","2005-08-29","2005-09-02","2005-07-12"
+"carol","mcquillan","902  Unit G Chestnut Hill Drive","Auburn Hills","Mi","48326","","mcquillan_carol@yahoo.com","4","9","","","","","2005-07-29"
+"Craig","Smith","","","","","","smittyc50@hotmail.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Jamie","Kurth","","","","","","jkurth@bloomfield.org","","","","","2008-10-27","2008-10-27","2008-10-27"
+"sarah","heath","","","","","","sarahhaynesheath@gmail.com","1","4","I would also like to know if there is a pool open during the winter?","","2011-12-29","2011-12-31","2011-11-15"
+"Douglas","Wassman","","","","","","dman@hdtinfo.com","","","","","2003-09-22","2003-09-22","2003-09-22"
+"Carol","Lemieux","","Westland","MI","48185","","chantio@yahoo.com","","9","","","2006-01-01","2006-01-06","2003-09-26"
+"Jennifer","Milas","","Grand Rapids","MI","49506","","momluvscr@yahoo.com","","4","","","2003-09-26","2003-09-26","2003-09-26"
+"Greg ","Sheldon","","Owensboro","KY","42303","","gis1948@aol.com","","6","","","2003-09-26","2003-09-26","2003-09-26"
+"Phil","Giuliani","32058 Shadywood","New Baltimore","Michigan","48047","586-716-1944","philg160@hotmail.com","1","9","","","2004-07-21","2004-07-28","2003-11-22"
+"ALBERT","WILSON","4651 West Water","Kimball","Mi.","48074","810.982.9637","awilson@itape.com","4","6","","","2004-01-16","2004-01-20","2004-01-09"
+"Ed","Murphy","","","","","","murphy785@aol.com","","","","","2004-01-27","2004-01-27","2004-01-27"
+"Edward","Oles","28861 Gilbert Drive","Warren ","MI","48093","586 573-3083","eoles@wowway.com","0","9","","<p>Would like to rent (2) 3 bedroom units from 07-03-2004 to 07-06-2004 near to each other if possible. Please contact Jennifer @ (586) 573-3083. Thank you</p>","2004-07-03","2004-07-06","2004-03-29"
+"David","Sturtz","17517 Oak Hill Drive","Northville","MI","48167","248 305 5512","drsturtz@comcast.net","0","9","","","2004-04-25","2004-04-28","2004-04-14"
+"Susan","Yun","6360 Golfview Drive","Clarkston","MI","48346","248-625-9485","jsjyun944@cs.com","5","6","","<p>Any availibility over the 4th? Just 3 nights for 2 adults. Thank you.</p>","2004-07-02","2004-07-05","2004-04-15"
+"SUZANNE","NILE","25618 GRACELAND CIRCLE","DEARORN HEIGHTS","MICHIGAN","48125","313-806-2760","SNILE@AOL.COM","3","9","NEAR POOL","","2004-08-01","2004-08-08","2004-05-11"
+"Gary","Featherston","287 Lochaven","waterford","Michigan","48327","248-683-2668","lougars@netzero.net","5","8","","","2004-06-05","2004-06-07","2004-05-13"
+"Carol","Simpson","","","","","","cssrtl@msn.com","3","6","","","2004-06-09","2004-06-12","2004-06-05"
+"carrie","hull","939 hampton","grosse pointe woods,","mi","48236","(313) 882-4019","hull58@comcast.net","5","4","","","2004-08-08","2004-08-11","2004-06-14"
+"Michael","Ashby","48030 St. Andrews Sq","Plymouth","Mi","48170","734-634-2253","meashby@comcast.net","5","0","","<p>how close is your property to the charlevoix area?</p>","2004-11-08","2004-11-14","2004-06-20"
+"lisa","SIMMONS","769 N. Shady Hollow Circle","bloomfield hills ","mi","48304","2485404734","lisasimmons6789@yahoo.com.au","1","9","","","2004-08-02","2004-08-07","2004-06-21"
+"Kim","collins","30141 Windsor","Gibraltar","MI","48173","313-617-0622","ckln@comcast.net","2","9","Would need 2 units this size or larger.  Please state availability and prices.","","2004-08-13","2004-08-16","2004-06-21"
+"Tom","Thumb","1000 my","my","mi","48099","313-777-7777","tt@mymail.com","1","0","","","2004-07-22","2004-07-28","2004-07-05"
+"Darryll","Lucas","","","","","","darrylllucas@hotmail.com","","6","","<p>Looking for a place for our annual tourney of 20 guys. Practice round on friday, tourney play on saturday and sunday. May 20 to May 24.</p>","","","2005-01-06"
+"tom","egan","31389 Pagels","warren","mi","48092","586-264-5882","tjegan@comcast.net","","7","","","2004-02-05","2006-02-05","2005-01-15"
+"kathy","larosa","7440 Cascade Woods S.E.","grand rapids","mi","49546","616-954-7537","matthewlarosa@sbcglobal.net","4","8","Grand Rapids Press ","","2005-02-18","2005-02-20","2005-01-30"
+"Scott ","Tomrell","437 Thomas lane","Grand Blanc","MI","48439","810-695-2423","yayasfenton@yahoo.com","0","1","","<p>We will have either 8 or 12. What would be the price?</p>","2005-09-11","2005-09-14","2005-05-30"
+"Gary","Stowe","","","","","","stowebl@hotmail.com","5","6","","<p>Price inquiry for 2 nights/2adults. One a golfer, one a golf-widow. Courses: Hidden River, Little Traverse Bay and Charlevoix CC.</p>","2005-10-04","2005-10-06","2005-09-20"
+"ginina","lee","10164 maplelawn","detroit","mi","48204","3132831465","gininab@hotmail.com","3","4","","","2005-12-08","2005-12-11","2005-12-06"
+"Therese","Madigan","9592 Alger Drive","Brighton","MI","48114","","c_t_madigan@hotmail.com","","6","Google search","<p>I am planning family reunion for approx 75-85 people. We need a kitchen and eating area that will accommodate everyone. Also interested in fishing, kid activities, golf, boating and baseball field.</p>","2006-08-11","2006-08-13","2006-01-05"
+"Gary","Fisher","","","Michigan","","616-502-3915","gary.b.fisher@jci.com","0","1","","<p>Need Big FORE golf pkg quote. Have 8-12 guys in party. Late Spring or Early Summer. Friday &amp; Saturday night stay. Thx.</p>","","","2006-02-18"
+"John","Ryan","3450 Richards Way","Lake Orion","MI","48360","248-214-7322","johnryan2@comcast.net","1","6","","<p>looking to purchase 2 bedroom/ 2 bath with loft. Also would like details of rental management program and contact with mortgage lender.</p>","","","2006-03-12"
+"David","Arnold","","Macomb","MI","48044","586-263-4597","dra7@comcast.net","5","6","","","2006-04-18","2006-04-18","2006-04-18"
+"Philip","Selden","9012 Whispering Pine Curve","Sylvania","Ohio","43560","419-829-2600","joggerphil@aol.com","1","7","We rented for the past two years. THe reservation from last year was probably under ","","2006-04-09","2006-08-09","2006-07-04"
+"Robin","Vandenberg","","","","","","rvandje@comcast.net","","","","","2006-09-18","2006-09-18","2006-09-18"
+"Anand","Menon","","","","","","ab.menon@gmail.com","","","","","2006-09-25","2006-09-25","2006-09-25"
+"Scott","Nieman","","","","","","snieman512@msn.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Mike","Cavalieri","","","","","","golfdance@personinternet.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Mark","Hagerty","","","","","","mark@thehagertys.org","","","","","2009-07-30","2009-07-30","2009-07-30"
+"Grant","Belanger","","","","","","gbelanger@easyinsure.ca","","","","","2008-10-27","2008-10-27","2008-10-27"
+"John","Parsons","","","","","","trailrite@sbcglobal.net","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Mike","Byma","","","","","","mbyma@juno.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Dave ","Rankin","","","","","","flobee119@neo.rr.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Joelle","Maleszyk","","","","","","rjmaleszyk@wowway.com","","","","","2005-06-02","2005-06-02","2005-06-02"
+"Laura","Hittler","","","","","","lhittler@comcast.net","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Ali","Jamal","","","","","","ali@jamco1.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Ernie","Mitchell","","","","","","emitchell@saf.kaba.com","","","","","2009-07-30","2009-07-30","2009-07-30"
+"Vince","Trampus","","","","","","vtrampus@comcast.net","","","","","2008-10-27","2008-10-27","2008-10-27"
+"John","Hanus","","","","","","spiceman1@wowway.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Steve","Bessette","","","","","","stevebessette@comcast.net","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Greg","Blair","","","","","","greg_blair@yahoo.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Chris ","young","","","","","","chris_young@cogeco.ca","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Dennis","Brown","","","","","","psu1972@sbcglobal.net","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Mary Ann","Russell","","","","","","mar51354@aol.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Colleen","Strader","","","","","","cmonk1027@comcast.net","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Brian","Knowles","","","","","","bknowles@onwbeer.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Becky","Luckhardt","","","","","","r.luckhardt@accellfitness.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"John","Won","","","","","","jbwon4698@yahoo.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Jeff","Brundage","","","","","","brundage@sympatico.ca","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Christopher","Beals","","","","","","roar1971@comcast.net","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Michelle","Young","","","","","","meyoung00@comcast.net","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Doug","Barrett","","","","","","dugbar1@yahoo.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Dominic","Monterosso","","","","","","ndrosso@gmail.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Jay","Dent","","","","","","james.dent@cbsa-asfc.gc.ca","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Alex","Aldred","","","","","","amaldred@gmail.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Anthony","Quagila","","","","","","anthony.quaglia@brucepower.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Richard","Kelly","","","","","","rkelly@narmco.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Kelly","Buller","","","","","","lynnzapple@hotmail.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Anthony","Trupiano","","","","","","troopie39@yahoo.com","","","","<p>A</p>","2008-10-27","2008-10-27","2008-10-27"
+"Bob","Ptashnik","","","","","","rtptash@yahoo.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Lynn","McLeod","","","","","","lynnmcleod@rogers.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Scott","Hill","","","","","","hammyhill@gmail.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Elaine","Conklin","","","","","","ebondie@hotmail.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Chris","Thomas","","","","","","cthomas0622@yahoo.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Dave","Kennedy","","","","","","qbecks@hotmail.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Jim","Junewick","","","","","","jlwick2000@aol.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Mike","Keys","","","","","","mikekeys@rogers.com","","","","<p>Mike</p>","2008-10-27","2008-10-27","2008-10-27"
+"Joe & Rob","","","","","","","robb@baeind.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Ed & Pat","Brooks","","","","","","state79@msn.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"William","Balnave","","","","","","bbalnave@wowway.com","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Gordon","Welch","","","","","","greenj@lcc.edu","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Todd","Kofler","","","","","","tkofler@fuse.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Gayle O.","Smith","","","","","","nsmith9698@yahoo.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Donna","Bania","","","","","","banido21@yahoo.com","","","","","2007-01-19","2007-01-19","2007-01-19"
+"Larry","Hughes","","","","","","elsiehues@comcast.net","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Marie","Caradonna","","","","","","mclc1333@comcast.net","","","","","2007-08-14","2007-08-14","2007-08-14"
+"Brian","Sharpe","","","","","","brian.sharpe@tatumllc.com","","","","","2009-07-30","2009-07-30","2009-07-30"
+"Carol","Smith","","","","","","cdscas@netzero.net","","","","","2008-10-06","2008-10-06","2008-10-06"
+"Peter","Holmes","524 Glendene Cr.","Warterloo","Ontario","N21 4P4","519-747-7020","holmepe@sympatico.ca","","","","","2009-07-30","2009-07-30","2009-07-30"
+"Bryan","Busby","","","","","","bbusby@besam.ca","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Brett","hackworth","","","","","","bc_hackworth@yahoo.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Terry","Brush","","","","","","mainsts@sympatico.ca","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Seonghun","Kim","","","","","","shkim@hatci.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Steven","Davy","","","","","","davyst@mapleleaf.ca","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Jerry","Ohearn","","","","","","jerryohearn@hotmail.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Terry","Pickard","","","","","","terry.j.pickard@abc.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Wameng","Vang","","","","","","mengus_vang@hotmail.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Brian","McCall","","","","","","brian.mccall@charter.net","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Ted","Van Lunen","","","","","","vanlunen@nrcan.gc.ca","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Ron","Gesquiere","","","","","","rgesquiere@comcast.net","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Jim","Sullivan","","","","","","jsullivan@wrightcoating.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Lon","Adair","","","","","","lonrai@rogers.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Adam","Veron","","","","","","adam1493@yahoo.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Bill","Rimmke","","","","","","rimmsouth@yahoo.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Tom","Maher","","","","","","tommaher07@comcast.net","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Bruce","Risselada","","","","","","risselba@hotmail.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Maureen","McCulloch","","","","","","mojomatti@sympatico.ca","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Craig","Stott","","","","","","craigo75@aol.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Harvey","Anchel","","","","","","harveyanchel@matrixhealthservices.ca","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Matt","Harper","","","","","","lumberstud@gmail.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Des","Morrow","","","","","","dmorrow77@cogeco.ca","","","","","2008-10-27","2008-10-27","2008-10-27"
+"David","Abraham","","","","","","daveabraham@comcast.net","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Paulette","Miernicke","","","","","","paulette.miernicke@canadianbearings.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Cary","Bean","","","","","","beanc@eagleottawa.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Norm","Ling","","","","","","susanling16@yahoo.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Kevin","Bloch","","","","","","cheapskatecharlies@comcast.net","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Tony","Koshar","","","","","","t.koshar@hotmail.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Chris","Doornbos","","","","","","bball32cd@yahoo.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Al","Dean","","","","","","alnoneck@sbcglobal.net","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Glenn","Rein","","","","","","glennrein@sbcglobal.net","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Jason","Orton","","","","","","jeorton@comcast.net","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Claudia","Raymond","","","","","","steveraymond001@comcast.net","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Jeff","Formanczyk","","","","","","jfaspen@gmail.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Ralph","Hess","","","","","","ralphhess@bellnet.ca","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Dylan","","","","","","","dylan_foukes@yahoo.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Ann","McManamon","","","","","","annemcmanamon@yahoo.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Paul","","","","","","","prevensn@yahoo.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Ed","Raasch","","","","","","eraasch@charter.net","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Tim","Winterburn","","","","","","twinterburn@hotmail.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Roger","Roberge","","","","","","rroberge@pptc.gc.ca","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Tom ","Tackett","","","","","","ttackett@goughinc.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Lynn","Elliott","","","","","","nlplynn@bellnet.ca","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Charisma","Taylor","","","","","","charismant@yahoo.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Bob","McCullough","","","","","","bob.mccullough@gm.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Marcia","Vereecken","","","","","","mv12251@hotmail.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Justin","Waterloo","","","","","","jbreau@live.ca","","","","","2008-10-27","2008-10-27","2008-10-27"
+"john","Bobaljik","","","","","","bojudy@sympatico.ca","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Roger","Jones","","","","","","rjones110@cox.net","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Paul","Bulgarelli","","","","","","pbulgarelli@yahoo.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Jim","Ditulio","","","","","","jdditulio@ameritech.net","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Laura","Orr","","","","","","kitty_901@comcast.net","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Linda","Barthel","","","","","","barthel@umich.edu","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Lou","Murdoch","","","","","","jims25@hotmail.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Adam","Shier","","","","","","adams@lumbermens-inc.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Travis","Smith","","","","","","twsierra74@comcast.net","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Laurie","Hawkins","","","","","","laurie.hawkins@rogers.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Brett","Brown","","","","","","8ft4par@sbcglobal.net","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Susan","Robertson","","","","","","smrobert@rogers.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Sharon","Yee","","","","","","sharonyee@sympatico.ca","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Scott","Williston","","","","","","swilliston102@hotmail.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Christine","Williamson","","","","","","ceyoung6@juno.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Kelly","King","","","","","","tkhas@verizon.net","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Dar","Howell","","","","","","dhowell1956@yahoo.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Andrea","Govanis","","","","","","a_govanis@hotmail.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Jason","Cabral","","","","","","cabraljason6@hotmail.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Daryl","Davis","","","","","","drdchiro69@yahoo.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Lynn","Stamiris","","","","","","trini1999@hotmail.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Farhan","Mohammad","","","","","","farhanm13@yahoo.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Jim","Stewart","","","","","","jstewart5@cogeco.ca","","","","","2008-10-27","2008-10-27","2008-10-27"
+"David","Schultz","","","","","","davewillride@comcast.net","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Rodney","Gerth","","","","","","rodneygerth@hotmail.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Rafael","Torre","","","","","","rafaeltorre@hotmail.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Helen","Goljak","","","","","","h.goljak@sympatico.ca","","","","","2008-10-27","2008-10-27","2008-10-27"
+"John","Hardacre","","","","","","hardyj66@roadrunner.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Craig","Brockie","","","","","","cbrockie@hotmail.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Don","Pluta","","","","","","dpluta55@yahoo.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Joe","Nieuwkoop","","","","","","jnieuwkoop@yahoo.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Sue","Kuypers","","","","","","skuypers@comcast.net","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Bruce","Liebowitz","","","","","","bruce@postguard.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Katherine","Gilbert","","","","","","kgilbert102@sbcglobal.net","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Jim","Dowdy","","","","","","jdowdy@lfd.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Scott","O'Neil","","","","","","soneil@kpmg.ca","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Anthony","Berto","","","","","","anthonyberto@hotmail.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Lisa","Cote","","","","","","lcote@vianet.on.ca","","","","","2008-10-27","2008-10-27","2008-10-27"
+"H","Schaefer","","","","","","hs48044@yahoo.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Ryan","Moffat","","","","","","rsmoffat55@hotmail.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Lincoly","Herweyer","","","","","","clherweyer@aol.com","","","","","2008-10-27","2008-10-27","2008-10-27"
+"Angela","Zuiderveen","","","","","","azuiderveen@devontitle.com","","","","","2008-06-17","2008-06-17","2008-06-17"
+"Carol","Davis","","","","","","tcdavis@cablespeed.com","","","","","2008-10-29","2008-10-29","2008-10-29"
+"Nancy","Triezenberg","","","","","","gtriezen@comcast.net","","","","","2006-09-22","2006-09-22","2006-09-22"
+"","","","","","","","kwpbrentwood@gmail.com","","","","","2010-01-20","2010-01-20","2010-01-20"
+"Larry","Nichols","","","","","","nichols_jbe@yahoo.com","","","","","2008-09-22","2008-09-22","2008-09-22"
+"Chris","Johnson","","","","","","chrisjohnson05@comcast.net","","","","","2008-05-01","2008-05-01","2008-05-01"
+"Liz","Mayle","","","","","","elyame@msn.com","","","","<p>Li</p>","2008-11-17","2008-11-17","2008-11-17"
+"","","","","","","","sd_sleight@yahoo.com","","","","","2008-11-17","2008-11-17","2008-11-17"
+"Allan","Kowalski","","","","","","tak0880@comcast.net","","","","","2006-10-02","2006-10-02","2006-10-02"
+"Greg","Kiss","12275 St. Andrews Way","Fenton","MI","48430","810-691-9203","gjkassociatesinc@charter.net","","","","","2009-07-30","2009-07-30","2009-07-30"
+"William","Ling","11966 Allbrook Dr.","Poway","CA","92064-4125","619-518-0775","wling@whling.com","","","","","2009-07-30","2009-07-30","2009-07-30"
+"Garry","Phillips","13686 Green Prairie","Vicksburg","MI","49097","269-207-8872","gkphillips5002@sbcglobal.net","","","","","2009-07-30","2009-07-30","2009-07-30"
+"William","Projieck","3755 Fallentree Lane","Cincinnati","OH","45236","5139842366","wmprojieck@fuse.net","","","","","2009-07-30","2009-07-30","2009-07-30"
+"Richard","Schley","2130 Annabelle","Detroit","MI","48217","313-386-0942","ricsly@aol.com","","","","","2009-07-30","2009-07-30","2009-07-30"
+"Randy","VanHule","","","","","","randyvanh@msn.com","","","","","2009-07-30","2009-07-30","2009-07-30"
+"Jordan","Sekulovski","15537 98th Pl","Dyer","IN","46311","219-765-1866","amyjpant@yahoo.com","","","","","2009-07-30","2009-07-30","2009-07-30"
+"Rita","Smythe","","","","","","rsmythe7@comcast.net","","","","","2007-11-23","2007-11-23","2007-11-23"
+"Steven ","Shy","13200 Cambridge Ct.","Plymouth","MI","48170","734-416-9700","steveshy@hotmail.com","","","","","2009-07-30","2009-07-30","2009-07-30"
+"Jill ","Weber","810 River Acres","Tecumseh","MI","49286","734-368-5547","jweber5547@verizon.net","","","","","2009-07-30","2009-07-30","2009-07-30"
+"Nancy","Wilson","P.O. Box 864","Hempstead","Texas","77445","979-826-3979","newilson6406@att.net","","","","","2009-07-30","2009-07-30","2009-07-30"
+"Jason","Wolfe","29991 M-60 East","Homer","MI","49245","","jwolfe@us.brembo.com","","","","","2009-07-30","2009-07-30","2009-07-30"
+"George","Martin","575 Thornhill Ct.","Belleville","MI","48111","734-699-1403","t9664gm@yahoo.com","","","","","2009-08-12","2009-08-12","2009-08-12"
+"Dean","","","","","","248-345-6798","dfefopov@umich.edu","","","","","2009-08-16","2009-08-16","2009-08-16"
+"Richard","St. John","","","","","269-650-0197","rstjohn@chartermi.net","","","","","2009-08-27","2009-08-27","2009-08-27"
+"Jay ","MacCready","","","","","","jmaccready@jacksonglassworks.com","","","","","2009-11-13","2009-11-13","2009-11-13"
+"Holly","Sigafoose","","","","","","hollys7@localnet.com","","","","","2009-11-13","2009-11-13","2009-11-13"
+"Terri","Farrell","","","","","","terrimfarrell@yahoo.com","","","","","2009-11-13","2009-11-13","2009-11-13"
+"Brian","","","","","","","bak@kellerthoma.com","","","","","2009-11-13","2009-11-13","2009-11-13"
+"Beatrix","","","","","","","bfuzet-przekop@cranbrook.edu","","","","","2009-11-13","2009-11-13","2009-11-13"
+"Jennifer","","","","","","","jencoyne@bezaitis.com","","","","","2009-11-13","2009-11-13","2009-11-13"
+"Kelly","","","","","","","kadesouza4mk@yahoo.com","","","","","2009-11-13","2009-11-13","2009-11-13"
+"Dawn","","","","","","","dschae10@att.net","","","","","2009-11-13","2009-11-13","2009-11-13"
+"Elizabeth","","","","","","","elizabeth@thehelmfamily.com","","","","","2009-11-13","2009-11-13","2009-11-13"
+"Rachel","","","","","","","therachel@gmail.com","","","","","2009-11-13","2009-11-13","2009-11-13"
+"Arnold","","","","","","","marienilson@aol.com","","","","","2009-11-13","2009-11-13","2009-11-13"
+"Rodney","","","","","","","rgunsell@hotmail.com","","","","","2009-11-13","2009-11-13","2009-11-13"
+"Melissa","","","","","","","mroth5670@comcast.net","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Fran","","","","","","","fmg@pcisys.net","","","","","2009-11-13","2009-11-13","2009-11-13"
+"Abby","Haus","","","","","","marsdena@hotmail.com","6","9","","","2014-02-07","2014-02-09","2013-09-16"
+"Mary","","","","","","","mary_k_wilkinson@yahoo.com","","","","","2009-11-13","2009-11-13","2009-11-13"
+"Kirk","","","","","","","kraetzer1988@sbcglobal.net","","","","","2009-11-13","2009-11-13","2009-11-13"
+"","","","","","","","sarah.cox21@yahoo.com","","","","","2010-01-20","2010-01-20","2010-01-20"
+"Chelsea","Luedtke","9049 Cardinal Drive","Millington","MI","48746","989-871-9841","luedtke_2307@hotmail.com","6","4","","","2010-08-05","2010-08-08","2010-04-09"
+"Tina","Lindemulder","6951 West Mount Hope","Mulliken","MI","48861","517-899-0682","lyletinacodykeli@centurytel.net","","6","I am writing on behalf of the Lakewood HS Football Pigskin Club.\r
+On Saturday 5/1/2010 we will be hosting our Annual Fundraiser Event and are intersted in obtaining donations for this upcoming event. Please see our event flyer: http://www.lakewood.k12.mi.us/images/athletics/fling.pdf\r
+\r
+\r
+\r
+\r
+\r
+\r
+If you are interested in donating for this event please mail item/items  to:\r
+Lakewood Pigskin Club-Attn:Coach Jim Behrenwald\r
+ 7223 Velte Rd, Lake Odessa, MI 48849\r
+\r
+Thanks for your time and we look forward to hearing back from you!\r
+Tina Lindemulder","","","","2010-04-12"
+"joann","","","","","","","joann.garrity@ssa.gov","","8","drive by it on my way home","i use a walker and am looking for a place to swim for exercise, do you have memberships for the club house, or is that just for the people at the condos, thanks for your time and have a good day","","","2010-04-22"
+"KIRBY","HOULE","106 BETHEL LAKE CT","SUDBURY","ON","P3E 0A1","705-673-3981","KWHOULE@FCRCA.COM","2","6","","","2010-07-11","2010-07-16","2010-04-24"
+"John","Bailey","1927 Rosa parks Blvd.","Detroit","MI","48216","(313) 962-8834","jbailey@baileytelecomm.com","","","","","","","2011-11-29"
+"Sherri","Bassett","","","","","","ssbassett@ligtel.com","","","","","","","2010-04-28"
+"amy","prieskorn","5216 dutch road","leslie","MI","49251","5175893381","apriesko@live.com","5","8","","","2010-06-18","2010-06-20","2010-04-28"
+"Martin Babcoak","Martin Babcoak","","","","","","martinbabcock261@gmail.com","","8","We are interested to increase traffic to your website, please get back to us in order to discuss the possibility in further detail.","","","","2010-05-05"
+"Nathan Kyle","Nathan Kyle","","","IA","","","nathan.kyle07@gmail.com","","1","We are interested to increase traffic to your website, please get back to us in order to discuss the possibility in further detail.","We are interested to increase traffic to your website, please get back to us in order to discuss the possibility in further detail.","","","2010-05-15"
+"","","","","","","","newcomb@michiweb.com","","","","","","","2010-03-31"
+"Kelly","English","","","","","","r.kenglish71@yahoo.com","","","","","2010-05-06","2010-05-06","2010-05-06"
+"Lisa","","","","","","","lisarudnick@chartermi.net","","","","","2010-05-06","2010-05-06","2010-05-06"
+"Cecelia","Maloney","","","","","","ceceliamaloneycmd@gmail.com","","6","","We are interested to increase traffic to your website, please get back to us in order to discuss the possibility in further detail.","","","2010-05-09"
+"Russ","Bone","3089 west route 113","Kankakee","IL","60901","8159397627","runbone@sbcglobal.net","5","6","WOuld like to have a room with a jucuzzi if possible. Do you have any specials in this time frame?","","","","2010-05-05"
+"Martin Babcock","Martin Babcock","","","","","","martinbabcoak1@gmail.com","","8","","We are interested to increase traffic to your website, please get back to us in order to discuss the possibility in further detail.","","","2010-05-12"
+"Denise","Saba","14061 Haverhill Lane","Chicago","IL","60567","708-364-0152","dsaba@schiffhardin.com","5","8","Been in the area before.","Would like to get pricing and availability","2010-12-24","2011-01-01","2010-05-12"
+"Harold","Ellis","","New York","NY","10001","","haroldellis022@gmail.com","","6","We are interested to increase traffic to your website, please get back to us in order to discuss the possibility in further detail.","We are interested to increase traffic to your website, please get back to us in order to discuss the possibility in further detail.","","","2010-05-13"
+"","","","","","","","anthonyrencher@yahoo.com","","","","","","","2010-05-14"
+"David","Premoe","","","","","","dppremoe@hotmail.com","","6","","Please e-mail me the details of our reservations from July 23 to July 26.  I have erased our information, so I need to know the building number and room number.  I also need to know the cost information.  Thank you.\r
+\r
+David Premoe","","","2006-09-25"
+"ero BEachn","Hickey","2425 3rd Pl SW","Vero Beach","FL","32962","","msmarthafl@aol.com","","","","","2009-11-11","2009-11-11","2009-11-11"
+"MIJUNG","LEE","4863 s ridge dr","west bloomfield","MI","48323","248-295-4410","lmj-mt@hanmail.net","6","6","","","2010-05-29","2010-05-31","2010-05-18"
+"Karen","Beebe","10517 Village Ct.","Grand Blanc","MI","48439","810-606-8056","kagdbeebe@comcast.net","6","6","","","2010-07-12","2010-07-19","2010-05-22"
+"Jim Guthrie","","","","","","","jimguthriess@gmail.com","","6","We have the ability to quickly promote your site to the top of the search engines. Please let me know if I can send you a proposal to show you how we can achieve these results for you?","We have the ability to quickly promote your site to the top of the search engines. Please let me know if I can send you a proposal to show you how we can achieve these results for you?","","","2010-05-19"
+"John","Axelson","150 Hawthorne Dr","Brooklyn","MI","49230","517 5928984","jaxelsonmd@gmail.com","2","9","We are requesting a two night stay; prefer two queen or king size beds for two couples for two nights.  Thanks.","","2010-07-07","2010-07-09","2010-05-23"
+"Diane","Lonnerstaer","","","","","","mommbs@aol.com","","","","","","","2010-05-25"
+"susan","siemers","735 crab thicket","st. louis","MO","63131","314-965-0439","srsiemers@aepriverops.com","","6","Need to accommodated 17 people (12 adults and five kids) in various unit arrangements","Please advise availability","2010-07-03","","2010-05-26"
+"Robert","Frankowski","","","MI","","","rjfrankowski@yahoo.com","","","","","2004-07-05","2004-07-05","2004-07-05"
+"Suzan","van den Boer","","Utrecht, the Netherlands","Europe","","","svdboer@gmail.com","4","6","","Hi, we are looking for a condo for 2 adults and a 21-months old toddler. Is there a childfriendly condo that you would recommend for us? It would be great if we could step outside directly from our room and if there's a playground nearby.\r
+Thank you!\r
+regards,\r
+Suzan van den Boer","2010-06-14","2010-06-18","2010-05-29"
+"david","parsons","3836 tall oaks","toledo","OH","43614 5018","4193891512","davidalp00@gmail.com","5","1","","Your quote on your web site is not working.,. looking 4 a good deal!!!","2010-07-25","2010-07-30","2010-05-29"
+"Tami","Fite","1340 River Road","MArysville","MI","48040","248-410-2489","iaminprayer@comcast.net","","","","","","","2010-05-30"
+"sue","mauter","","","","","","sueone@wowway.com","","8","planwithttan","do you have a spa?","","","2010-06-04"
+"Sallyanne","Cochran","8401 Culpeper Drive","Indianapolis","IN","46227","317-443-5893","SSCochran@dow.com","1","4","My brother has a reservation June 28-July 2nd (confirm # 82373). We were hoping to stay near him - please let me know if there is ANY (no matter what size: 2bdrm-5bdrm)availability during that time.","","2010-06-27","2010-07-02","2010-06-01"
+"Julie","Fromm","1106 Englewood","Royal Oak","MI","48073","248-589-2928","bullyfromm@gmail.com","","4","We have been in contact and have reserved a unit in Building 16. We have decided to stay the Fri/Sat/Sun nights as above. Please contact me with the specifics of our reservation.","","2010-06-18","2010-06-21","2010-06-03"
+"lisa","Bolla","30111 Cobblestone lane","New Hudson","MI","48165","313-235-9431","bollal@dteenergy.com","","","","","","","2010-06-11"
+"Gayle","Wallace","","","MI","","","hiker208@comcast.net","","4","","Fishing in your trout ponds.  May we keep what we catch if we have an all species fishing license?","","","2010-06-06"
+"lucynda","killian","3147 burgess","beaverton","MI","48612","989-4292726","annalou323@att.net","","6","We are having a fundraiser for a 9 year old girl who was diagnosed with ovarian cancer May 2010.  I am a scrapbooker along with her mother.  We are seeing if any scrapbooking retreat would be willing to donate a scrapbooking weekend as a auction prize.  This would help with costs the insurance does not cover/gas money/and lost time from work.  \r
+\r
+Thank you for your time.\r
+Lucynda Killian\r
+989-429-2726","","","","2010-06-06"
+"Todd","White","5577 Kingsmill Drive","Bloomfield Hills","MI","48301","248 5380899","twhite243115mi@comcast.net","","9","","Hello!  I am interested in condo #148 from July 3-9.  Can you give me some information on TV locations?  I have 2 kids, and they will be in the 2nd bedroom or loft.  Do either of those rooms have a TV?\r
+\r
+Thanks!\r
+\r
+Todd White","","","2010-06-06"
+"Agnieszka","Mrugala","1807 Monroe Ct","Glenview","IL","60025","7737200893","agnieszka8@comcast.net","4","6","","","2010-08-08","2010-08-15","2010-06-07"
+"Mary","","","","","","","marykurt@bex.net","","9","Do guests need a fishing license to fish on your property?","Do guests need to buy a fishing license to fish in your ponds?","","","2010-06-09"
+"KATHERINE","SOCIA","","","","","","ksocia@sbcglobal.net","","8","Please cancel reservation number 83457 for Steve Zurbrick.\r
+Thanks","","","","2007-09-28"
+"Rita","Thomas","53548 Shinnecock Dr","South Lyon","MI","48178","248-982-5922","rita.thomas@comcast.net","5","6","","","2010-07-02","2010-07-05","2010-06-09"
+"Frank","Toms","","","","","","frank.toms@us.army.mil","5","6","","im currently serving in the us army, and deployed to afghanistan. i will be coming back to michigan for R&R (two week rest) in the first part of november, and was trying to plan a getaway for myself and my wife. i was wondering if you had any packages or deals for that kind of event? thank you for your time.","2010-11-06","2010-11-09","2010-06-10"
+"Stacy","Bertani","743 Brooks Lane","Oxford","MI","48371","248-628-4455","fabmommyof2@sbcglobal.net","","8","Hi Everyone!\r
+\r
+Debby, you have been so helpful to me.  I was wondering if you knew of any other condo owners who would like to sell their condo.  I would really like to be in the wooded areas, I just love the trees!  I am looking for a 2 bed, 2 or 1 bath condo.  \r
+\r
+Thanks so much!!!\r
+\r
+Stacy Bertani\r
+248-628-4455","","","","2010-06-05"
+"Kathy","Rinaldi","","","","","","kag0590@sbcglobal.net","","4","","We are planning on making a reservation to spend a few days at Trout Creek and will be arriving on a Sunday.  Is the office open for check-in on Sundays and if not where do we get the key/what is check-in process?  Thanks.","","","2010-06-12"
+"Kara","Herman","","","MI","","","kkckherman@gmail.com","6","6","looking at availability and pricing.  thanks!","","2010-12-17","2010-12-20","2010-06-13"
+"michelle","gray","","","","48439","","michgray@comcast.net","","","","","","","2010-06-13"
+"molly","schichtel","5572 S. Betsie River Rd.","Interlochen","MI","49643","231-275-3038","mollyschichtel@charter.net","","6","","Is there space av. and details like food offered on Sat night","","","2010-07-07"
+"Kevin","","","","","","","showman67@yahoo.com","","4","Hi,\r
+\r
+I was wondering what the rates would be for Aug.13,14,15th.  I noticed the rates drop on Aug.15th.I am looking into one bedroom,one bath. Is there a way you can let me know how much each night would be and a total?Lastly, is it possible to get discounted back to school rates for all three night? Thanks.\r
+\r
+Kevin","","","","2010-06-14"
+"Angela","Ettawageshik","","","MN","","","Angela_Ettawageshik@cargill.com","5","2","","","2010-08-11","2010-08-16","2010-06-16"
+"Kevin","Riddle","3714 Kensington Drive","Royal Oak","MI","48073","","kriddle8593@wowway.com","","8","","I am team manager for the Birmingham United team.  Wondering about availability of 10 condos for the weekend of Sept. 10-12.  Cost?  Availability of pool and amenities?  Thanks.","2010-09-10","2010-09-12","2010-06-17"
+"jake","chamberlain","207 Main street","butler","OH","44822","","nanno2024@hotmail.com","","6","","How much is the cost? I have chosen four different packages. I just need some information on these.","2010-07-22","2010-07-25","2010-06-17"
+"demaris","edmond","7230 w congress","Milwaukee","WI","53218","","dedmond22@att.net","","","","","","","2010-06-20"
+"mona","rash","p.o.box 1446","mauriceville","TX","77626","","rashmona@yahoo.com","4","6","Do you allow pets?  Will be\r
+willing to pay $200 for them to stay on patio,#70. All kennel trained,small dogs.  3 adults only. Will be our 60th birthday.","","2010-08-21","2010-08-28","2010-06-21"
+"Paula","Johnson","5572 Silverleaf Court","Haslett","MI","48840","517-230-2496","pjohnson@fosterswift.com","6","9","","Would be interested in 3 nights or two nights.  We may have an addition 4 children agest 10-16 who would be willing to sleep on the floor, is that an option?","2010-07-22","2010-07-25","2010-06-23"
+"Mike","Bird","4321 N Ashland","Chicago","IL","60613","312 671-2311","mbird68835@aol.com","6","2","","","2010-07-28","2010-08-02","2010-06-26"
+"Kenneth","Soronen","35546 Springvale St.","Farmington Hills","MI","48331","248 6610607","ksoronen@yahoo.com","5","4","","We will be staying two nights, golfing on the 28th, we would play after 2:30 PM. A nice course with a low rate.  Thank you.\r
+Ken","2010-06-26","2010-06-28","2010-06-23"
+"Ryan","Hallberg","2168 Forest Hills","Muskegon","MI","49441","","ryanhallberg@comcast.net","","","","","","","2010-06-23"
+"Liz","Metro","781 Beech Court","Plymouth","MI","48170","7347273142","lizmetro127@sbcglobal.net","3","6","","","2010-07-15","2010-07-18","2010-06-24"
+"Debbie","Ulmer","29800 E. Lafayette","Sturgis","MI","49091","269-651-5544","dulmer@verizon.net","6","6","","We are planning a motorcycle color tour this weekend and have 4-5 couples coming.  Not sure if you rent for just a couple days, but thought I would check on availability and pricing","2010-10-01","","2010-09-13"
+"","","","","","","","lynnreesjones@yahoo.com","","","","","","","2010-06-27"
+"Carol","Hunter","60417 Strobel Road","Centreville","MI","49032","269-467-6241","carolhunter2@verizon.net","2","6","","I am trying to plan a family reunion for 2013.  Our group is anywhere from 125-150 people.  I would like to try and get a good group rate if you accomodate this large of a group.","2013-08-16","2013-08-18","2010-06-30"
+"Brian","","","","","","","schad@live.com","","9","Your link to make a reservation is not working. Do you still take 3 night weekend reservations?","","","","2010-07-02"
+"Ilissa","","","","","","","ilissa@lnf.com","","6","","Hello,\r
+We usually head to The Homestead, but instead would like a change.  Quick initial question: do you allow 4 legged family members(canine type)?\r
+\r
+Thanks!","","","2010-07-05"
+"Brian","","","","","","","briansiu9791@gmail.com","1","9","","we have several families going and need at least 3 two-bed condos.  please let me know anything available.  Thanks.","2011-09-03","2011-09-05","2011-08-23"
+"Anna","","","","","","","ampark629@yahoo.com","","6","","We have a group of 24 adults and 13 kids; looking to accomodate the group with various cabins - probably 6 2-bedrooms and 1 5-bedrooms June 18-25 2011 (7 nights).  Do you provide any group rates and could you give me a quote on this?","","","2010-07-07"
+"Stella","Havlik","37312 Freedom Ave.","N. Ridgeville","OH","44039","440-5528731","SPietka@aol.com","","","","","","","2011-08-28"
+"Linnae","Elmore","","","","","","linnae.elmore@gmail.com","","","","Feel free to include anything honeymoon related.","","","2010-07-09"
+"Ginny","Grubbs","3280 Boyes Rd.","Delton","MI","49046","269-671-5825","jmngny@tds.net","","6","","We are wanting to have a family reunion here.  Where in the range of the low-high cost of each room would it approximately be in July.  Do you have a large commons room where we could get together and do you have facilities for our fixing our own meals?  This would be a group 50-60.  Thanks, Ginny","","","2010-07-11"
+"cindy","dumke","w152 n6881 westwood dr","menomonee falls","WI","53051","2622511413","cindy1484@sbcglobal.net","6","6","I am not sure of the dates, but I am planning a family reunion and I did not see prices on the website? there would be around 60 people.","","2011-06-22","2011-06-25","2010-07-11"
+"Gary","Ogden","2829 riverside drive","trenton","MI","48183","734-671-9940","gogden@homespunfurniture.com","","1","Big Fore quote\r
+dates: Sept. 17,18,19\r
+Players 26\r
+Lodging and meals (if meals available)\r
+Arrive the 17 around 12:30 to play 18 holes\r
+Sept. 18th play 36 holes with tee times allowing 36 holes\r
+Play 18 holes Sept.19 early\r
+Do you have a substitute course for Dunmaglas and Bear lake? Could even be a replay of one of the others.\r
+Contact me via email. Thanks","note above request","","","2010-07-12"
+"Perry Gates","Perry Gates","Delta","Canton","CO","81416","","philgarcia01@gmail.com","","8","","We are Internet Marketing experts who can help you answer these questions, drive mass traffic to your site, and dramatically increase sales.","","","2011-05-10"
+"JeanAnn","Davidson","208 Carney Dr","Dundee","MI","48131-9538","","jeanann@umich.edu","","","","","","","2010-07-12"
+"joe","belanger","","","","","","jbelanger@aimconstruction.com","","9","are you pet freindly... i want to bring my dog ...medium in size 40lbs","","","","2007-03-28"
+"Gail","Lesinski","15028 W. 150th Lane","Crown Point","IN","46307","219-696-6191","foxydog2@att.net","","","","","","","2010-07-14"
+"Jamie","Mulvenna","","","MI","","","jmulvenna10@comcast.net","","6","I am just starting a search for 2014 family reunion for 80-100 people.  It would be for three nights.\r
+If you could send me some info. on lodging and activites for adults and children that would be great.  Thank you.","","","","2010-07-15"
+"Lisa","Steffke","1850 Boxford St.","Trenton","MI","48183","734-362-0588","karlisa@wowway.com","","","","","","","2010-07-18"
+"Stacy","Bos","","Chicago","IL","","","stacermsu@yahoo.com","6","6","","I'm in the beginning stages of planning a 40th b-day surprise weekend for my husband.  Would be interested in the 5 bedroom condo for sometime end of June 2011 to mid July 2011.  Would like to get some idea of pricing.","2011-07-14","2011-07-17","2010-07-19"
+"Randy","Fahrer","7720 Stone Hill Ct.","Maumee","OH","43537","419-867-7720","rmfahrer@yahoo.com","","","","","","","2010-07-19"
+"Sharon","Mosteller","1781 Hubbard Rd./","Monroe","MI","48161","734 269 9993","sharons@umich.edu","3","8","Bulletin Board in Monroe, MI indicating if you bring a guest they would get 50% off the rental.  Is tht correct? Is condo #32 available?","","2010-09-03","2010-09-06","2010-07-20"
+"John R","Welke","28920 Edward","Roseville","MI","48066","586 774-7670","dwelke@wowway.com","","","","","2007-11-20","2007-11-20","2007-11-20"
+"David","Cooper","489 Sorrento","Poinciana","FL","34759","","solivitacoopers@cfl.rr.com","","8","We would like to rent a unit for June, July and August of next year.  If we like it we would commit to a 3-month rental on a yearly basis.  Is that possible?  How much?\r
+\r
+We are former owners.  Liz will remember us.","","","","2011-07-17"
+"Aaron & Susan","Peterson","","","","","","susiemarie9@gmail.com","","","","","","","2010-08-13"
+"lisa bostedo","","","","","","","lotus15@embarqmail.com","","8","","Hi,\r
+I would like to know if tans unit #93 has 1 or 2 bath and also how many pools are on the property??? Also can fishing be done at anytime?\r
+thanks, Lisa","","","2010-08-29"
+"Michelle","Meek","4020 Cohoctah Rd.","Linden","MI","48451","8106913629","meekm@huronvalley.k12.mi.us","2","9","I was wondering if you would be able to help us out.  My husband, Chuck Meek is the coach to the Michigan Outlaws team we have stayed with you for the past couple years when we have been to the Petoskey softball tournament.  He had a stroke on July 7th and this is our last tournament of the year and probably the last time he will be coaching for a long time.  We have both our daughters and two friends coming along.  We need accommodations badly.  I would have made reservations sooner but because of the circumstances I wasnt sure we would even be able to come up there.  Is there anything up there for this weekend. Thanks, Michelle Meek - Michigan Outlaws 18u Black","","2010-08-05","2010-08-08","2010-07-30"
+"Matt","Vandlen","","","","","","matt.vandlen@pfizer.com","","1","","I spoke with Nicki this morning about a spring trip and wanted to ensure our communication on my contact information was clearly articulated.  People have difficulty with my last name for some reason.  Thanks...MV","","","2010-09-29"
+"don","zane","","","MI","","","dzane@rocketmail.com","","6","","do you accept dogs?","","","2010-12-15"
+"jocelin","","","","","","","kozclassic@comcast.net","","8","On September 18, 2010, we will be hosting the 4th Annual Bob Kozminski Memorial Classic at Gracewil Country Club in Walker. Last year was a huge success. Once again, we need to call on the support of local businesses to make this year’s event just has successful. There are several different ways you can help support this cause. We have several sponsorships available, as well as the need for several raffle items. I ask that you please take a moment to review the attached scholarship information and sponsorship opportunities. If I can be of further assistance, please feel free to contact me.\r
\r
+Thanks,\r
\r
\r
+Jocelin Kozminski\r
+Bob Kozminski Memorial Classic\r
+kozclassic@comcast.net\r
+www.kozclassic.org\r
+3860 Sydney Court NW\r
+Grand Rapids, MI 49534\r
+(616) 570-7167","","","","2010-08-06"
+"Paula","Tucker","","","","","","patricknortoni2@gmail.com","","8","We are a leading India based SEO company providing the best search engine optimization services. We act as your business partner and helps you reach your business goals. We promote websites no matter who you are - a huge company with thousands of employees, a small business or a professional who offers professional / consulting services. Let us know if you are interested and we will get back to you with more details.","We are a leading India based SEO company providing the best search engine optimization services. We act as your business partner and helps you reach your business goals. We promote websites no matter who you are - a huge company with thousands of employees, a small business or a professional who offers professional / consulting services. Let us know if you are interested and we will get back to you with more details.","","","2010-08-20"
+"Patreze","Willingham","22617 shadowpine way","novi","MI","48375","3134091305","patreze.willingham@federalmogul.com","6","6","I have a group that wants to visit your resort and we like the Condo #2. Can you give me a good price to rent that for the weekend specified above? Thank you","We would also like to visit the casino along with skiing. Any lounges nearby?","2011-02-11","2011-02-13","2010-08-24"
+"Jennifer","Richardson","","","","","","jennyrich625@aol.com","","9","We usually play in the soccer tournament Fathers Day Weekend and would like unit #20 in building #3 if it is available.  I was wondering if you knew if it was available or not for next summer.  If so can you let me know so I can put a deposit down.","","2011-06-17","2011-06-20","2009-06-04"
+"stephen","sobieski","40892 knightsford","northville","MI","48168","7344208057","stfsobi@aol.com","","","","","","","2010-09-02"
+"Penney","Castellano","","","MI","","517 203-8650","theskysthelimit42@yahoo.com","5","6","","this is for today (assuming you are reading this on Friday, Sept 3rd....please advise asap...i will call also..thanks","2010-09-03","2010-09-05","2010-09-02"
+"Kathy","Mazany","121 Ashworth","Horton","MI","49246","","kmazany@yahoo.com","","","","","","","2010-09-04"
+"Steve","Alliston","","","","","","salliston@aol.com","","9","","I am the President of the LOBOS Soccer Club. Can you please send me a list of what families are staying in which condo's next weekend? It really helps the teams trying to get in touch with each other. \r
+\r
+Steve","","","2009-11-11"
+"Tracy","","","","","","","tops4less@yahoo.com","","","","","","","2010-09-05"
+"Tim","","","","","","","TimGolobic@aol.com","6","4","Interested in pricing on either of the 5 BR units arriving Feb 23 departing Feb 27 (4 nights)","","2011-02-23","2011-02-27","2010-09-06"
+"Robert","Peruzzi","90 N. Edgewood","Grosse Pointe Shores","MI","48236","586-381-0572","rperuzzi@ford.com","","","","","","","2010-08-12"
+"Marie","Allard","","","","","","marieallard@att.net","","9","Your website reservations is working at snails pace. It takes forever to load, both at home and at work. \r
+Please investigate and correct.","","","","2010-10-28"
+"kelly","","","","","","","klmaz3@aol.com","","8","","are small dogs allowed","","","2010-12-29"
+"Norma","Steinhilb","32082 Liparoto Drive","Rockwood","MI","48173","734 379-0980","msteinhilb@comcast.net","","","","Had the best time ever last week in condo 82!  You guys are the best!\r
+Thanks","","","2010-09-15"
+"Tom","Keuten","","","","","","tkeuten@hotmail.com","","","","","","","2010-09-23"
+"Becky","McKeoun","711 Sidney St","Bay City","MI","48706","","Beckyka1975@yahoo.com","","","","","","","2010-09-26"
+"Diane","Snellgrove","","","","","","dsnellgrov@aol.com","","9","Is it possible to stay for 3 days during the holidays, specifically, 12-29,30 and 31, leaving Sunday, 1-1-11?  2 bedrooms, 2 baths?\r
+and if so what would the cost be?","","","","2009-06-04"
+"Julie","","","","","","","jd1229@hotmail.com","","","","","","","2010-10-04"
+"Steve","Freeman","320 Oakpark Drive","Tecumesh","ON","N8N 4N9","519-8198457","sfreeman@frontiercollege.ca","","4","I am looking for total cost including cleaning of a unit that would sleep 10 adults who will be skiing at Nubs Nob and Boyne Highlands for the dates listed above","","2010-12-26","2011-01-01","2010-10-04"
+"Cara","Porter","2600 N. Jebavy Dr.","Ludington","MI","49431","2318436030","caramporter@hotmail.com","","6","","Hi! I am writing to you on behalf of Covenant Christian School, a private Christian school in Ludington, Michigan.  \r
+\r
+Every year, to keep our tuition costs as low as possible, we have the Annual Autumn Auction, our biggest fundraising event of the year with almost 300 people attending.This year our auction will be held October 29th, 2010.\r
+\r
+What we do for this event is contact local, state, and nation-wide businesses that we know our families do or would enjoy doing business with and ask them to make a donation for the auction.  It can be to your discretion what you donate &it is tax-deductible.  Anything you can donate is greatly appreciated.  We hope that you will also become a part of our auction this year.  Please let me know if you are interested in becoming a part of our tradition.  I look forward to hearing from you!  Thank you so much and God bless you.","","","2010-10-07"
+"Robert","Mariotti","12815 Birkenstock st","Carmel","IN","46032","(916) 871-2936","uh60bh@hotmail.com","4","7","","","2010-12-26","2010-12-30","2010-10-15"
+"Kim","Rule","","","","","","krule@core.com","","6","","Do you have any long term condo's available to rent from Nov 1 until May or June 2011\r
+\r
+2 bed 1 or 2 bath","","","2007-07-09"
+"Martha","Millar","25400 N. St Marys Road","Mettawa","IL","60048","847-367-8633","Keokuk94@yahoo.com","6","8","Friends","There are approx 50 of us - we'd need roughly 25 bedrooms. We could also come the first week of August. Interested in competitive pricing","2011-07-23","2011-07-30","2010-10-18"
+"Ryan","Mynsberge","3325 Shorewood Ave","Fort Gratiot","MI","48059","810-385-5055","rmyns@hotmail.com","1","9","","","2010-12-20","2010-12-23","2010-10-20"
+"Mike","Diegel","","","","","","michaeldiegel@comcast.net","","","","","2010-10-20","2010-10-20","2010-10-20"
+"Ronda","Diegel","","","","","","drrondadiegel@comcast.net","","","","","2010-10-20","2010-10-20","2010-10-20"
+"Brett","Babb","","","","","","backyjack11@gmail.com","","8","Do you wish you could increase your online leads?  We have helped a lot of businesses thrive in this market and we can help you!  Simply hit reply and I’ll share with you the cost and the benefits.","Do you wish you could increase your online leads?  We have helped a lot of businesses thrive in this market and we can help you!  Simply hit reply and I’ll share with you the cost and the benefits.","","","2010-09-11"
+"Lloyd","Schmaltz","","","MI","48348","","Lloyd@flotronicsinc.com","","9","","Do you have a pool --we are planning on a winter vacation --skiing--but kids like a pool- -we have stayed  at Trout Creek before but forget about the pool - -do you show a picture somewhere --states  -- indoor/outdoor","","","2010-10-24"
+"Bridget","Mahrle","3011 Thomas","Berkley","MI","48072","248-388-2976","bridget@wekeepitclean.com","","9","","Hello Trout Creek!!!\r
+I'm curious if any of the 3 bedroom lofts are offering any specials the week of Aug-5-11.","2012-08-05","2012-08-11","2006-09-18"
+"john","miedema","8441 meadowbrook","jenison","MI","49428","6164376686","jbeans388@gmail.com","","","","","","","2010-10-31"
+"kirsten","shorr","4534 timberlake tr","highland","MI","48357","248-889-3566","chzzshrr@aol.com","","6","","","2010-12-30","2011-01-02","2010-11-02"
+"Marsha","Manley","","","","","","martinbabcock000@gmail.com","","6","","We will optimize your site to increase its rankings with major search engines. This will drive targeted online users to your site, as well as attract new users through the use of relevant keywords and phrases. Not only will we help you gain those higher rankings, but maintain your status through continual management and support. Please reply to this email so we can send you more details.","","","2010-11-03"
+"Susan","Davis","","","","","","chzbrgr1@hotmail.com","","6","","Do you allow dogs?\r
+Thank you","","","2010-11-04"
+"Kelly","Hemmelgarn","3028 Stelzer Rd.","Celina","OH","45822","419-925-4259","kellyhem@woh.rr.com","6","6","","We are trying to visit Michigan for a vacation. This is for 2 families, total number of 11. Would like to know availability and cost of week for Condo#2  5-bedroom 3 bath. \r
+Thank you!","","2014-07-26","2013-10-11"
+"Annette","","","","","","","duenorth@tds.net","","4","","When is your next scrapbooking weekend?","","","2010-11-13"
+"Stacey","Dobbin","4253 Oil Springs Line","Oil Springs","ON","N0N1P0","5198342802","dobbinsm@ciaccess.com","","","","","","","2010-11-14"
+"wendy","nicholls","2331 Parliament Dr.","Sterling Heights","MI","28310","586-246-6282","wlnicholls@yahoo.com","1","6","","Do you have any availability during the time requested.  We may have up to eight so I'm interested in both the two and three bedroom condo.","2010-12-25","2010-12-28","2010-11-26"
+"Kelly","Risner","","","OH","","","davidakelly@earthlink.net","","","","looking at spring break and July 4th week. also want to klnow which rooms are available thru TAN plan","","","2010-11-14"
+"Scott","Jongekrijg","","","","","","sjonge04@hotmail.com","","6","","I am inquiring about a 2 bedroom 2 bath or a three bedroom 2 bath condo.  We would be checking in feb. 5th for 1 night.  We will be watching the superbowl so I would like a unit with a upgraded tv HDTV if possible?  What would the rates be for a 2 bedroom or a 3 bedroom?  I am flexible on how many bathroom would prefer at least 2.  We do not need a ski package just the lodging.","","","2010-11-15"
+"Nicole","Nesseth","","","","","","nnesseth23@yahoo.com","6","4","","Hello,\r
+We're looking for a condo close to Nubs Nob that sleeps 12 or more. Please contact me if your available for the above dates.","2010-12-30","2011-01-02","2010-11-15"
+"mark","johnson","","","","","","markedman58@yahoo.com","","","","","","","2013-03-02"
+"Chris","Dobies","30522 Georgetown Drive","Beverly Hills","MI","48025","","cdobies01@me.com","","","","","","","2010-11-26"
+"Rick","Monhollen","4295 W.Woodbridge Ln.","New Palestine","IN","46163","317-861-0860","mmtci@prodigy.net","4","2","","","2010-12-18","2010-12-24","2010-11-28"
+"Caroline","Hall","4232 Quaker Hill","Fort Gratiot","MI","48059","810-357-9820","carehall@umich.edu","1","4","","","2010-12-30","2011-01-02","2010-11-29"
+"keith","hatcher","27261 Winslow","","MI","","","ike1906@gmail.com","","9","","I am visiting Trout Creek with friend dec. 9th. I would like to know proces of winter activities and also proce of needed snow gear or clothing?","2010-11-30","2010-12-03","2010-11-30"
+"Don","","","","","","","donald.smith10@comcast.net","","9","","We are renting condos the week of Christmas and looking to reserve the clubhouse for New Year's Eve. Please let me know if it is still available. Thank you.","","","2010-12-05"
+"Laurie","","","","","","","garbits@comcast.net","","","","","","","2010-12-06"
+"Kevin","Fink","4527 Dovewood Lane","Sylvania","OH","43560","419-467-1213","kevinf@seagateplastics.com","1","9","flexible on unit size/configuration","","2010-12-28","2011-01-01","2010-12-05"
+"Mimi","Ognjanovski","","","MI","","586-453-4264","ognjan@wowway.com","","9","Looking for prices for the 25-27 for units: 20, 88 or 123.","Looking for prices for the 25-27 for units: 20, 88 or 123.","2010-12-25","2010-12-27","2010-12-07"
+"Lois","Pozolo","","Rochester Hills","MI","","248-651-0267","lpozolo@sbcglobal.net","5","6","","Hello - I made a reservatioon on Monday with "Chris" and haven't gotten my email confirmation yet.  COuld you someone please email that to me?  Thank you so much!!  I was also wondering if no one rents the bigger condos for the holidays - if we could maybe get an upgrade?  Thanks so much.","2010-12-23","2010-12-26","2010-12-08"
+"Richard","Wing","2228 Windsor Ave","Drexel Hill","PA","19026","610-662-7567","guswing@verizon.net","4","4","","I have a reservation already but I have lost the email of the details.  Would you please resend me the emil with the details of my reservation.  Thanks.","2011-07-29","2011-08-01","2011-07-12"
+"Brian","","","","","","","covbri@yahoo.com","","8","","Interested in renting a 2 bedroom condo over the course of the Thanksgiving weekend - would arrive on Wednesday evening and leave on Monday morning.  Looking for a price per night.  Thanks and let me know.","","","2011-09-29"
+"David Leon","Carter","6796 Garfield Ave","Cass City","MI","48726","9899122041","nellecarter54@yahoo.com","1","9","","","2010-12-27","","2009-02-05"
+"Heather","Swager","2110 Colter Cove","fort wayne","IN","46808","","heather.swager@gmail.com","6","7","","","2011-02-18","2011-02-21","2010-12-13"
+"kathryn","Reason","","","","","","kaz791@aol.com","1","9","","","2010-12-28","2010-12-31","2007-07-09"
+"john","chumah","","","","","","shevy98@hotmail.com","","","","","","","2010-12-15"
+"Judy","Russ","673 N Waverly Rd","Dimondale","MI","48821","517-646-6197","russju@comcast.net","1","9","","","2011-01-27","2011-01-29","2010-12-16"
+"randy","hillary","","","OH","","4192607102","r.hillary@hotmail.com","","","","","2009-06-07","2009-06-07","2009-06-07"
+"Dmitri","","","","MI","","","dkonn@yahoo.com","3","7","","Please advise if you have availability for the New Year weekend 12/30 - 1/2 for 4 adults and a teen (2 b-room condo).","2010-12-30","2011-01-02","2010-12-17"
+"","","","","","","","cosrock_pastor@hotmail.com","","","","","","","2010-12-23"
+"Jere","Neill","","","","","","jereneill@sbcglobal.net","","4","","Hello there. I have not received a confirmation for 5 nights beginning February 20th. We are to stay in Carol Marouk's unit. Maybe you didn't get my email right when we were talking by pnone.","","","2010-12-26"
+"Jamie","Frain","8380 bail eau oaks","Ada","MI","49301","616-291-0407","Jamiebfrain@gmail.com","","9","","","2010-12-31","2011-01-02","2010-12-31"
+"Caela","McGrath","1170 Meadowood Drive","Waterford","MI","48327","248-765-0777","caelamcg@hotmail.com","2","9","Hi.  I am looking for a nice unit that will comfortably sleep 2 children, and 4 adults.","","2011-07-25","2011-07-30","2011-01-04"
+"Kathryn","Malhiot","1177 Gunderson Ave","Oak Park","IL","60304","708-386-0914","kmalhiot@comcast.net","3","9","","I am trying to look at some different weekends in February, but am getting a message on all of them that nothing is available.  Yesterday I saw quite a few available.  Is there something wrong with the website?\r
+Thank you","","","2005-08-30"
+"","","","","","","","jkiefer580@gmail.com","","","","","","","2011-01-05"
+"Lisa","Lykins","6941 N 100 W","Bryant","IN","47326","260-997-6308","selykins@embarqmail.com","","9","I booked Unit 107 for superbowl weekend and I have not received an email conformation. Can you send me one?  Thanks Lisa Lykins","","","","2009-02-12"
+"","","","","","","","jho@email.com","","","","","","","2011-01-09"
+"Kathy","Schultz","848 Scenic Drive","N Muskegon","MI","49445","","snk1355@msn.com","","","","","2006-10-02","2006-10-02","2006-10-02"
+"kim","ye","57767 grey fox glen","washington twp.","MI","48094","586-530-6927","kimslim1960@yahoo.com","6","9","","","2011-02-25","2011-02-27","2011-01-10"
+"Judy","","","","","","","jbornais@uwindsor.ca","","4","","We are interested in renting a condo for 2 to 5 days for 14 people. We have flexibility on when stay.  Can you please e-mail some availability and pricing including lift tickets.\r
+\r
+Many thanks","","","2011-01-11"
+"Elizabeth","Brewer","","","","","","ea.brewer@yahoo.com","","8","","We have a reservation for a stay in September and I was wondering if you have any roll away cribs or pack and plays or the like available for use? Thanks! Elizabeth","","","2014-01-24"
+"Helen","Dean","129 Sumac Dr","Kingsville","ON","N9Y 3R1","519 733 4422","helen_dean@gecdsb.on.ca","3","9","","I would like to reserve condo # 82 for our March Break vacation. We are from Ontario. I see that you have the 2 night, 3rd night free deal on again, but when I tried to reserve on-line it didn't come up with the price for the third night free. Please advise. \r
+Thank you","2011-03-17","2011-03-20","2009-03-26"
+"Michele","Kirkey","1749 Pinecone Ct","Lewis Center","OH","43035","740-548-2263","jmkirkey@frontier.com","","","","","","","2011-01-17"
+"krist","hunter","120 Foxboro drive","alpena","MI","49707","9893560999","khunter120@live.com","","","","","","","2012-10-13"
+"Joe","Mikla","","","","","602-690-4965","jmm78@me.com","","","","","2014-07-16","2014-07-20","2013-11-13"
+"Christina","Miller","","","","","","orgmiller2@gmail.com","","9","","","2011-02-25","2011-02-27","2011-01-23"
+"Jennifer","Bellore","420 timber ridge drive","highland","MI","48357","","jennifer.bellore@farmington.k12.mi.us","","4","Could you please pass along the discount lift ticket prices and locations.\r
+\r
+Thank you","","","","2011-01-24"
+"","","","","","","","mac_kcmo@yahoo.com","","","","","","","2011-01-24"
+"Brian","Asselin","3879 Northview dr.","petoskey","MI","49770","2318388478","briasselin@yahoo.com","","","","","","","2011-09-07"
+"Traci","Springer","18230 Westcott Dr.","Belleville","MI","48111","","tracispringer@hotmail.com","","","","","","","2011-08-26"
+"beverly","teno","54201 cascade ct","new baltimore","MI","48047-5863","586 7256292","jtenodds@comcast.net","","","","accommodations needed for 5 (3DULTS 2 KIDS) 2/17 to 2/20","","","2011-02-08"
+"Jim","Hansen","415 East Richards Road","Oregon","WI","53575","608-835-2275","JimH854@Yahoo.com","1","6","Need accomodations for a family of six.  Prefer two to three bedrooms","","2011-07-17","2011-07-23","2011-01-30"
+"william","","15818 Greenview","Fraser","MI","48026","5864158345","greenviewadams@aol.com","","9","Any week in July or August available?","","","","2011-05-22"
+"Kerry","","","","","","","nedadams@hotmail.com","","7","Stayed near Nobs Nub before and went by your place, and wondered what the cost and availability would be.","Looking for price and availability for march break 14 to 19th.","","","2011-02-08"
+"Patti","Arnold","6200 Buckhorn Lake Rd.","Highland","MI","48357","2488871999","patjoarnold@aol.com","3","4","","","2013-02-16","2013-02-18","2013-02-11"
+"Louie","De Longhi","1350 Rideau St.","Sudbury","ON","P3A 5B2","705-566-3659","ldelonghi@personainternet.com","","","","Do your golf packages include True North Golf Course?","","","2011-01-31"
+"Lynne","Kennedy","","","","","","lynne.kennedy@att.net","2","4","","Do you offer any specials for multi-night reservations (4+ nights)?","","","2011-02-01"
+"Bonnie","Paridy","","","","","","golfbonpar@hotmail.com","","4","Hi:  I e-mailed you 2 weeks ago in regards to pricing for 2 couples wanting a golf package.  Friends recommended.  Normally we go to Boyne, but we want something different.  Coming up for a Thursday to Sunday stay. Playing 3-4 courses.  Please e-mail me price.  Staying June 23-26.  Thanks Bonnie.","","","","2011-01-27"
+"Ana","Cuellar","6010 Summerset Ct","midland","MI","48640","989 8324106","ana_cuellar@hotmail.com","","9","we are 1o adults and 12 kids, may need 2 or 3 units","","2011-02-17","2011-02-20","2011-02-08"
+"Krystal","Rundhaug","","","WI","","","samanthabrighteyes@hotmail.com","5","8","magazine ad","It is our 21st Anniversary May 18th! Would like to give my husband a Romantic, queit, get away! We have not been to your place before so I would just like to know more info!Was wondering what you would have \r
+available for the two of us, would like Beautiful scenery, big hot tub, fireplace, nice dinner, etc. you know the goodies!!!! haha! Please just email me with any specials that you maybe having during that time! Thank you so Much!!!! Krystal","2011-05-18","2011-05-20","2011-02-08"
+"Kelly","Beyer","3180 Hixon Rd","Rochester","MI","48306","2486082882","kelly.beyer@hp.com","5","9","We stayed the week before Christmas loved it.  these are our preferred dates but flexible if there is another weekend less booked for less dollars.","","2011-02-19","2011-02-21","2011-02-09"
+"Ann","Norton","2500 N. 100th Street","Wauwatosa","WI","53226","414 430 0997","annnort@gmail.com","3","8","I am working with Southeastern JDRF (Juvenile Diabetes Research Foundation) to organize and present an awesome line up for our 2011 Gala. We are passionate about finding a cure for Type 1 Diabetes! This event hosts about 400 guests. We have received passes for the Car Ferry and are now seeking lodging on the Michigan side for the winning bidder. I have seen information on your establishment and it looks absolutely beautiful.  I am offering you the opportunity to assist us in the search for a cure by donating to our Auction/Gala. We would love to be able to offer a stay at your establishment! The Gala event is March 12th, 2011. Please let us know if you would be willing to help FUND A CURE!","","2011-02-09","","2011-02-09"
+"Kim","","","","","","","fivemoorekids@aol.com","","6","","","","","2011-02-09"
+"KERRY","ZINGER","","COMMERCE TWP.","MI","48382","2486851442","kerryzinger@comcast.net","3","6","","","2011-02-20","2011-02-23","2011-02-12"
+"Pauline","LaJoie","880 Snowdrift","Commerce Twp","MI","48390","313-550-0075","plajoie10@aol.com","5","9","","3 Nights.........last year\r
+2 nights one night free!","2011-05-15","2011-05-18","2008-11-13"
+"Carol","Ferguson","RR 1","Petrolia","ON","N0N 1R0","519 882 4623","cferguson002@sympatico.ca","4","4","We would like to be located near the clubhouse if possible. We are traveling with friends. We'll do either 2 bedroom 1 or 2 bath or whatever is available near the clubhouse. We are only 3 people.\r
+Thanks\r
+Carol Ferguson","","2011-03-14","2011-03-17","2011-02-13"
+"","","","","MI","","","mike@gmandsons.com","","","","","","","2011-02-20"
+"Jenna","","","","","","","jolso521@uwsp.edu","","6","","We would like to come here but we have a dog that we don't have a place for. What is your pet policy?","","","2011-02-17"
+"Harley","Mcdowell","9 Barker rd.665","white Pigeon","MI","49099","","hpm1@live.com","","9","I  stayed there last year. would like the same condo and play golf at chestnut valley and hidden river","","2011-06-02","2011-06-03","2011-02-26"
+"Ruthann","Foltz","","","OH","44857","","rafoltz@hotmail.com","","8","Travel Advantage Network has only 1 unit available...we are looking for options for a family vacation.","Looking at affordable family vacation options the last week of June.","2011-06-25","2011-07-02","2011-02-26"
+"Kelly","Gawron","","","","","","kellygawron@gmail.com","","","","","","","2011-05-25"
+"RIta","Marzec","16381 Ellen Drive","Livonia","MI","48154","734-462-8999","rmarz@onemain.com","","","","","","","2013-04-27"
+"Janet","Bigalke","358 Cottonwood Lane","Saline","MI","48176","(734) 546-6838","janetbigalke@gmail.com","3","6","We are looking for a 2 bedroom 2 bath condo for the week of July 3.  Do you have any units available and for what price?","","2011-07-01","2011-07-06","2011-02-27"
+"debby","","","","","","","escapedriva@hotmail.com","","9","","","","","2011-02-28"
+"Marianne","Ledvina","199 North 90th Street","Milwaukee","WI","53226","414-507-8958","mledvina@sbcglobal.net","","8","Sundance Vacations / Plan with Tan","We will be staying at Trout Creek from April 2 through April 9.  However, when I have been looking at webistes in the area, it does not seem that there is anything to do --- Yikes!  I will be vacationing with my in-laws and wanted to do day trips with them to see different historical sites, etc.  Please direct me to how I can confirm what will be open (ie: Ferry to Mackinac Island, Historical Museums, Ship in port etc.).\r
+\r
+Any assistance will be greatly appreciated as they will not be able to ski, snowboard, snowmobile etc.\r
+\r
+Thank you,\r
+\r
+Marianne","","","2011-03-02"
+"Shana","Suris","","","","","","shana.suris@sbcglobal.net","","4","","I would like to speak with someone regarding travel  and dates for our stay.  Thank you  248.302.6888","","","2011-03-05"
+"Sue","Nofz","11130 Shadow Creek Ct","Sterling Heights","MI","48313","586-323-2533","snofz@yahoo.com","","","","","","","2011-03-07"
+"Emily","Young","","","","","","eyoung@wmol.com","","","","","","","2011-01-21"
+"Vicki","Sordyl","16522 W. Teton Drive","Lockport","IL","60441","","vsordyl@comcast.net","6","8","Hi,\r
+\r
+I've been looking online through homeaway and vrbo and then I remembered meeting you a couple years ago and how generous and helpful you were and wanted to see if you could help me and my family out. I'm looking to rent a place for a family vacation that has 5 bedrooms that fits about 12 people from 6.26.11-7.3.1. Would Trout Creek have anything that could accomodate our group? If so what would it cost to rent by the week?\r
+\r
+Kindly,\r
+\r
+Vicki","","2011-06-26","2011-07-03","2011-03-08"
+"Lee","Ferris","7415 Lake St.","Dexter","MI","48130","734-552-2800","ferrislee@comcast.net","","6","Six people total\r
+Kids ages: 13, 13, 12, 10","","2013-02-15","2013-02-17","2013-02-06"
+"Ryan","Wrobleski","940 Monroe Ave NW Apt 406","Grand Rapids","MI","49503","248-224-0114","wrobo1501@gmail.com","6","8","2011 Novi Golf Show.  True North booth.","I would like to get a quote for a golf package for group of 12 (min) to 20 (max).  3 nights lodging.  5 rounds of golf (Thurs to Sat, 18, 36, 36) at a combination of the following courses (True North, Hidden River, Little Traverse Bay, Dunmaglas, Black Bear, or Boyne Highlands).  Please contact me if you need additional information to put together a quote.","2011-09-08","2011-09-11","2011-03-09"
+"Kae","Kingma","2600 Inverness Rd. SE","Grand Rapids","MI","49546","616 942-0564","kae53@comcast.net","3","9","","Do you have 3 or 4 of the 2 bedroom units available for the weekend of Aug. 5 & 6?  We would arrive on Friday and check out on Sunday.\r
+What is the cost per unit?","2011-08-05","2011-08-07","2011-03-13"
+"Courtney","Caulkins","","","","","","courtneycaulkins@yahoo.com","","","","","2011-03-15","2011-03-15","2011-03-15"
+"Karrie ","Pater","","","","","","kpater1@hotmail.com","","","","","2011-03-15","2011-03-15","2011-03-15"
+"Laura","Budreau","","","","","","dlbudreau@sbcglobal.net","","","","","2011-03-15","2011-03-15","2011-03-15"
+"CaSandra","Maynard","6315 Heyer Street","Romulus","MI","48174","734 7080147","maynards.06@gmail.com","6","6","I am looking for a place to host my families reunion in August sometime. Date is flexible. \r
+We need room for a max 39 adults and 20 kids.\r
+For 2 nights only.","","2011-08-26","2011-08-28","2011-03-16"
+"Kathie","Jones","8169 Dan Smit","Watervliet","MI","49098","2698610049","skdrjones@sbcglobal.net","5","4","I never got a confirmation email for my reservation.  I booked #37. Please send confirmation.  Thanks.","","2011-06-17","2011-06-20","2011-03-19"
+"ben","laubender","","","","","","benjamin.laubender@gmail.com","1","7","","Inquiring about cost and availability for the weekend.","2012-01-18","","2012-12-12"
+"Robert","Ringenberg","","","","","616-460-1510","robertringenberg@comcast.net","","","","2 seperate condo's 4 in each. Flexible on dates. Can come the weekend after also. Courses in order of favorites: 1)Arthur Hills 2.) Little traverse 3.) Hidden River 4.) Chestnut Valley. Never have played Black Lake. 18 holes per day. Thursday - Drive up from Grand Rapids play late morning (11 am), Friday 9-10 am, Saturday 9-10 am, Leave sunday. Possibly play sunday if included in package. Contact me ASAP on this. We have not been up that way for 18 yrs.","2013-09-05","2013-09-08","2013-05-01"
+"Kent","Greener","2710 East Shore Dr.","Portage","MI","49002","269-720-1785","kgreener@gloryusa.com","4","9","","","2011-06-17","2011-06-20","2011-03-20"
+"Taryn","Smith","152 W. Michigan Ave.","Jackson","MI","49201","517-206-6332","tsmith@jtv.tv","","8","Michigan Travel Ideas Magazine","I saw your ad in the Michigan Travel Ideas Magazine.  \r
+\r
+JTV viewers travel north for vacations and GOLF.  We are launching our Golf Show where Trout Creek would be a perfect fit for our viewing audience; thereby, driving more people to your golf course.  \r
+  \r
+Let’s get to know each other better.  Please contact me to discuss ideas.  \r
+\r
+Taryn Smith \r
+Account Manager, JTV\r
+contact me for advertising packages & pricing\r
+PH: 517-206-6332\r
+FX: 517-783-5060\r
+EM: tsmith@jtv.tv\r
\r
+Online www.JTV.tv “Live JTV Stream” \r
+Comcast~Channel 90\r
+at&t U-Verse~Channel 5380\r
+Broadstripe~Channel 10 & 160","","","2011-03-21"
+"Dave","Wagenhauser","","","","","419-350-9943","gobluefan2323@yahoo.com","6","1","I stopped by your booth in Novi but never received a return phone call.  Looking at two nights with three rounds for the dates above.  Black Lake, Dunmglas and Little Traverse Bay.  Please call or email quotation.  Stayed at Hamlet Village in the past.","","2011-07-29","2011-07-31","2011-03-22"
+"Kristine","Grabowski","34340 Coachwood","Sterling Heights","MI","48312","5862685718","KGrabowski@wowway.com","","9","","I am the President of the PTO at my children's school and wondered if Trout Creek ever makes donations for a weekend stay?  We are a non-profit organization and are looking for donations for our Family Fun Night event.  We LOVE Trout Creek and thought it would also be enjoyed by other families in our community.  I look forward to hearing from you!","","","2011-03-22"
+"DAniel","Fine","9519 Taylor May Rd","Chagrin Falls","OH","44023","440-241-4890","alpacadan@windstream.net","","9","I'd like to rent the same unit I rented last year across the lot from the indoor pool, I can't remember the unit number. Last year we also rented a one bedroom unit. We only need the 3 bedroom unit this year. \r
+Regards, \r
+Dan Fine","","2011-07-31","2011-08-06","2011-04-12"
+"Charles","Murray","","","","","","murrayc9@msu.edu","","9","","I work with Paul Forney, a member of the Trout Creek board, and have been traveling to Trout Creek for 5+ years now.  Do any of the condos allow dogs?  I am planning on visiting Trout Creek again this year and many more to come, but this is a key factor in that decision.\r
+\r
+Thank you.","","","2011-04-12"
+"Kristi","McLaren","2642 Quail Run","Rochester","MI","48306","586-336-9408","mclarenmk@comcast.net","1","9","","I am looking for your nicest 2 bdrm+loft for the week after christmas for our ski team.  Do you have any that have two beds in bedroom #2?  Can you email with options and pricing so we can discuss at our next team meeting.  THANK YOU!  PS would prefer close to fitness/indoor pool.","2011-12-26","2012-01-01","2011-04-24"
+"Perry","Gates","","","IA","","","philgarcia02@gmail.com","","4","We are Internet Marketing experts who can help you answer these questions, drive mass traffic to your site, and dramatically increase sales.","We are Internet Marketing experts who can help you answer these questions, drive mass traffic to your site, and dramatically increase sales.","","","2011-04-28"
+"daphne","betley","12960 sleigh trail","milford","MI","48380","5862914449","dbetley@sjm.com","1","9","","","2011-07-30","2011-08-05","2011-04-28"
+"Gaylon","Brooks","22861 Teppert","Eastpointe","MI","48021","586-771-6614","gbrooksii@comcast.net","4","9","I would like rates for the indicated dates please.","","2011-08-19","2011-08-24","2009-11-11"
+"Robert","LaJoie","","","","","","bl654@yahoo.com","","9","My wife and I will at TC next week. Do you have wifi?  Thank you","","","","2011-05-08"
+"Amanda","Irwin","","","","","","Amanda.irwin@mac.com","","4","Just wondering if we need a fishing license to fish in your ponds when we visit in a few weeks.  Thank you!","","","","2012-05-25"
+"cindy","novotney","","","","","","cindynovotney@allstate.com","","8","chris, just picked up the message please change the contact to my cell 248 563 7717  we are coming up next friday (memorial weekend to clean  no need to clean after cousing they only slept there and we are fine\r
+still interested in long term rental","","","","2011-05-18"
+"michelleq","bobowick","","","","","","mbobowick@clearwaterassociates.us","","6","","I am writing to inquire about availability from 7/24 and leaving on 7/28.  I will be traveling wiht 2 little chidlren, my sister and my parents (70 yoa of some physical limitations). I wanted to know if hte condos looking at 2 bdrm or 3 bdrm options if there are stairs .. would need my parents to be on the main floor.  As thye need to avoid stairs - likewise are there stairs in the condos and or stairs to get to the condos.","","","2011-05-21"
+"Kathi","Austin","7644 Hardcastle Lane","La Grange","TX","78945","281-433-4176","kathiaustin@hotmail.com","5","6","Looking for a two-three month stay to get out of the Texas heat - July 1-September 1, 2012.  Newly retired and based near Austin, TX.  Any way to find something that is not rented out weekly only and so the monthly rate is not thousands of dollars?  We have a well behaved Labrador who would like to join us.","","2012-07-01","2012-09-01","2011-05-21"
+"Heather","Wourman","","","MI","","734-763-1271","cerovski@umich.edu","","9","","We are looking for a place to hold a 4-day Wilderness Medicine Course that involves inside and outside accomodations for approximately 150 people. What can your resort offer us?","2012-05-31","2012-06-03","2011-05-24"
+"Colleen","Sturtz","","","MI","","","Sturtzcms@comcast.net","","","","","","","2013-02-06"
+"Larry","Easton","227 Pierce Lake Dr.","Chelsea","MI","48118","","shopperpe@att.net","","","","","","","2011-05-31"
+"Chris","Vanneste","21892 Chrome Bolt","Macomb","MI","48044","","chris.vanneste@smithgroup.com","","","","","","","2011-06-07"
+"Steve","Hamilton","6702 Haggerty Rd.","Hillsboro","OH","45133","937-393-8239","soilsteve@yahoo.com","5","6","","Do you allow dogs.","2011-09-19","2011-09-23","2011-06-12"
+"YAGNESHBHAI","RAMANI","","","","","8474528851","yramani@gmail.com","","6","Cound not find any rate information about 3 bed rooms and 5 bed rooms for weekend of 4th of july.  Please email me the details...","","2011-07-01","2011-07-04","2011-06-13"
+"John","Estep","","","","","","jestep002@columbus.rr.com","1","6","How far is beach from property?? Walking distance? Which units are available that week above?","","2011-07-10","2011-07-17","2011-06-16"
+"Tom","Moores","951 E Maple","Holly","MI","48442","248-866-0663","karetom2@comcast.net","1","8","play in amatuer golf tourny at boyne and saw signs for condo rentals.","3 couples will be golfing in the area and are looking for 3 double beds in seperate rooms.  thanks","2011-08-30","2011-09-02","2011-06-16"
+"Sandy victor","Sandy victor","india","Delhi","IN","25256","9873469501","sandyvictor10@gmail.com","","6","SEO Company\r
+COMPLETE INTERNET MARKETING SOLUTION\r
+SEO - Link Building - Copywrighting - Web Designing - PHP\r
+In order for us to respond to your request for information, please include your company’s website address (mandatory) and or phone number.\r
+Marketing suggestion for your website\r
+We noticed that you are not at the top of the search engines for a number of your key terms. We have helped companies similar to yours to achieve top organic rankings. Please reply to this message and we will prepare a special proposal for you, to show you how we can achieve similar results for you.\r
+\r
+Sincerely,\r
+sandy victor","SEO Company\r
+COMPLETE INTERNET MARKETING SOLUTION\r
+SEO - Link Building - Copywrighting - Web Designing - PHP\r
+In order for us to respond to your request for information, please include your company’s website address (mandatory) and or phone number.\r
+Marketing suggestion for your website\r
+We noticed that you are not at the top of the search engines for a number of your key terms. We have helped companies similar to yours to achieve top organic rankings. Please reply to this message and we will prepare a special proposal for you, to show you how we can achieve similar results for you.\r
+\r
+Sincerely,\r
+sandy victor","","","2011-06-17"
+"Dana","Adams","608 Secretariate Dr","Corunna","ON","N0N1G0","5194810253","oasishairco@yahoo.com","","7","","I have a group of 6 women who are looking for a day of golf and either some shopping or a day of river tubing.","2011-08-26","2011-08-28","2011-06-18"
+"diana","lubbers","1301 linden","muskegon","MI","49445","2317302630","granny2d@gmail.com","","","","","","","2011-06-20"
+"Thomas","Ribich","","Columbus","OH","","","tbribich@earthlink.net","","6","","Two questions:\r
+1) how far in advance can a reservation be made? I put in dates for July, 2012 and got a "dates not available" response yet the dates on the calendar showed available.\r
+2)are the rates shown per night or for the entire length of stay? I was given a rate of $695 for a 2bed/2ba condo, for 4 people and 4 wkday nights. For what period of time does the $695 apply?\r
+Thanks!","","","2011-06-21"
+"Gary","","","","","","","garysmalling@yahoo.com","","6","","Not sure of exact travel dates. Please include prices for packages through end of october 2011. Thanks.","","","2011-06-23"
+"John","Dennis","703-2000 Regent Street","Sudbury","ON","P3E 5T5","705-522-8940","bear.management@gmail.com","6","8","Been there 3 or 4 times","We would arrive late Friday and leave early Monday","2012-05-18","2012-05-21","2007-11-20"
+"gary","reeves","19 loomis ferry rd","HHI","SC","29928","2392727277","gdr111@aol.com","","","","","","","2011-06-23"
+"Jim","Schwark","20840 26 Mile Rd","Macomb","","48042","5867496265","jimschwark@yahoo.com","","","","","","","2011-09-07"
+"Don","Quade","4575 Julian Street","Denver","CO","80211","303-668-0417","dquade4@comcast.net","1","8","Stayed at Trout Creek in the past","Need your help - I'm planning a family reunion/50th wedding anniversary party for my parents. We know for sure we will need 4 condos, all different sizes depending on each families needs, and possibly more for a few other relatives that may be attending. Can we get a group rate? Do you have a clubroom or facility that we can utilize one evening for an anniversary celebration? This even is taking place a year from now - what do we need to do to make/hold reservations? Any assistance you can provide in our pre-plan stages would be most appreciated. Thanks you! Sincerely, Don Quade","2012-07-01","2012-07-08","2011-06-24"
+"deb","russell","5735 archer road","brethren","MI","49619","","dr@kaltelnet.net","4","6","","We are looking for an extended stay condo from approx. July 15th (or even sooner) until around September 15th (give or take a week or two).  Do you have availability for this?  If not, we would even be interested in just a one month rental.  If so, can you give me an approx. monthly price?  ...And are dogs an option?  We have a very old/laxy Bassett Hound.  We would like either a 2 bedroom 2 bath, or 2 bedroom 1 bath.\r
+\r
+Thank you SO much for your help and information,\r
+\r
+Deb Russell","","","2011-06-25"
+"","","","","","","","noneej@gmail.com","","","","","","","2011-06-28"
+"Matt","","","Worthington","OH","","","mshu4@columbus.rr.com","4","8","We have stayed there in the past.","Please provide pricing information. Thank you!","2011-08-07","2011-08-13","2011-06-28"
+"Olya","Hnat","5958 Slate Dr","Troy","MI","48085-3883","2488795618","olyak101@yahoo.com","","4","","","2011-07-01","2011-07-05","2011-06-30"
+"Jeff","","12718 Ludlow Ave.","Huntington Woods","MI","48070","2484082204","jeffmeade@wideopenwest.com","","8","Petoskey soccer club website","Spoke with Nicky today (Fri 7/1) about a soccer team/parents accomadations. Still waiting for an email with group rate details.\r
+\r
+Thanks, Jeff","2011-09-09","2011-09-11","2011-07-01"
+"Sheila","Foote","9125 burning tree dr","Grand blanc","MI","48439","810 694-2020","Sheilam4@sbcglobal.net","","9","","Have reservation want to know how much owed and check in time","2012-07-12","2012-07-15","2012-07-05"
+"Toni","Aspacher","25 PARKWOOD DRIVE","BOWLING GREEN","OH","43402","4193532901","maspacher@woh.rr.com","5","4","","how far and where is the nearest swimming beach?","2011-07-26","2011-07-29","2011-07-05"
+"Jennifer","Kendall","55 Mapleton","Grosse Pointe Farms","MI","48236","","jajkendall@yahoo.com","","","","","","","2011-07-06"
+"Vicki","","","","","","","vcr32779@aol.com","","6","","Retired, non smoking, couple with one dog seeking long term UNfurnished (need all appliances) rental in Harbor Springs.\r
+$1000.00 monthly or less.","","","2011-07-07"
+"Diana","","","","","","","smalleys4@comcast.net","","4","","We will be staying at the resort late July. I noticed that you offer discount tickets for the ferry and carriage tours at Mackinac Island. Could you please let me know the cost of that package. We will need 3 adult and 2 child tickets. Thank you","","","2011-07-07"
+"Dayl","Hall","","","","","","dayl_hall_cm@comcast.net","","","","","","","2011-07-08"
+"Carol","Cohen","5056 Mirror Lake Court","W Bloomfield","MI","48323","248-481-9575","caroljcohen@sbcglobal.net","","","","","","","2010-12-09"
+"Alaric","Thomas","3792 northwestern","detroit","MI","48206","3133611150","essenceofyou4731@gmail.com","","","","","","","2012-05-14"
+"Cecilia","Lewandowski","2680 Wareing Drive","Lake Orion","MI","48360","","cec.lewandowski@gmail.com","","","","","","","2011-07-14"
+"Kate","Petriken","1343 Schafer Drive","Burton","MI","48509","810-744-1227","petriken@sbcglobal.net","","","","","","","2010-06-26"
+"Susan","Callahan","","","","","","bigstella@comcast.net","","6","","I know TC is a resort, but they are owned condo's.  Do you have any full-time resident owners living there?","","","2011-07-29"
+"Kris","Kokx","600 Oakleigh N.W.","Grand Rapids","MI","49504","616 735-0261","Ristinkay@sbcglobal.net","2","9","","Looking for availability and rates.\r
+\r
+Thank you.","2011-08-12","2011-08-15","2011-07-18"
+"Stacy","Sturmoski","3511 miller rd","kalamazoo","MI","49001","2698234233","babystace310@Yahoo.com","5","6","Thank you!","This would be for myself and my friend. If condo #53 is available for the retreat, we would like to have that one reserved. If not, we would prefer to have just one king bed in the room if the other one is not available. We were wondering what the cost would be for this and we would also like to stay Thurs for free :)","2011-10-06","2011-10-09","2011-07-19"
+"Joe","DAlessandro","10404 Bunker Hgwy","Eaton Rapids","MI","48827","5177498341","joe@fdhayes.com","","9","Looking for a 3 day golf package for 4 late August playing Little Traverse plus others 3 rounds total","","","","2011-07-28"
+"Steven","Remer","","","","","","sremer817@yahoo.com","","6","Hi,\r
+\r
+I have reservations within the next few weeks. Quick question.  Do you get good cell phone reception through ATT at the resort? \r
+\r
+Thanks","","","","2011-07-31"
+"Aimee","","","","","","","go2murr@yahoo.com","4","2","2 bedroom 1 bath or 2 bedroom 2 bath which ever price is better.  Thank you.","","2011-08-19","2011-08-21","2011-07-31"
+"Nick","Zlojutro","4520 Silver Valley Ln","Traverse City","MI","49684","(231) 883-5202","jzlojutro@aol.com","1","9","Hi - can you call me on my cell phone at 231-883-5202? You are going to help make our decision of what we are going to do this weekend. My wife and my son want to stay at Trout Creek my daughter wants to go to Mac Island. Can you call me a with how much a 2 bedroom loft would be for sat and sun nite. You have our info on file. Thanks, Nick","","2011-08-06","2011-08-08","2007-08-14"
+"Jim","Slater","186 Lynn Ave.","Shreveport","LA","71105","318-861-3391","jimslater@comcast.net","","","","","","","2011-08-02"
+"Amy","Moran","","","","","","amybixel@yahoo.com","","","","","","","2011-08-03"
+"Darian Lewis","Darian Lewis","derekjohnson.231@gmail.com","Charleroi","PA","15022","","derekjohnson.231@gmail.com","","2","","We can increase rankings of your website in search engines. Please reply back for more details.","","","2011-08-04"
+"david","silbert","4602 valleyview dr","west bloomfield","MI","48323","248-535-8359","2silbert@gmail.com","","6","","are 8 lb pets allowed. are you on the lake. is there water & jet ski rental available.","2011-08-13","2011-08-20","2011-08-04"
+"David","Cournoyer","","","","","","dcournoyer33@gmail.com","5","6","","","2011-08-24","2011-08-27","2011-08-05"
+"mark","reuss","6440 Hills Dr.","Bloomfield Hills","MI","48301","248-647-3958","mark_l_reuss@hotmail.com","","7","","","2011-12-26","2012-03-05","2011-08-05"
+"Janet","Kusch","21213 Francis Street","St. Clair Shores","MI","48082","(586) 295-6302","kuschj@pepperlaw.com","","","","","","","2011-08-08"
+"Paul","","","","","","","pjkardos@msn.com","","","","Availability for either Condo 1 or 2...","2013-07-18","2013-07-21","2013-02-01"
+"stacey","smith","P O BOX 63","Avalon","NJ","08202","6098466331","stacey.a.smith@comcast.net","","","","","","","2011-08-13"
+"Catherine","Womack","","","","","","orbitx7@sbcglobal.net","5","9","","","2011-09-09","2011-09-11","2009-11-11"
+"Shelley","Swan","2312 S. Parma Rd.","Parma","MI","49269","517-531-3476","sjswan@cmsenergy.com","","","","","","","2011-08-16"
+"Diane","Kalota","","","","","248-302-6639","dkalota7@gmail.com","","9","My husband and I are thinking about coming up for Labor Day weekend any good packages you could offer us for the weekend? It is just the 2 of us we stayed before and really enjoyed it!","","2011-09-02","2011-09-05","2011-01-24"
+"Michael","DiGregorio","450 Townhall Road","Metamora","IL","61548","3093691122","mdiggs@mtco.com","","","","","","","2011-08-20"
+"lynda","","","","","","2487199559","lbc48165@comcast.net","","6","","","2011-09-03","2011-09-05","2011-09-01"
+"Roger","Boughton","2205 SW 10th Ave","Austin","MN","55912","","rwbought@smig.net","","","","WE are interested in rates for 09/17-09/20/2012.  We would be a part of 8 to 10 for three nights in September of 2012.","","","2011-08-21"
+"Glade","Lathrop","569 Greenwood Ave se","East grand Rapids","MI","49506","616-776-0072","glade.lathrop@att.net","","","","Ski deals or packages.\r
+Any with small dog welcome?","","","2011-08-26"
+"jonelle","Gillette","42521 Amherst Ct.","Canton","MI","48187","734-667-3488","jgillette50@live.com","","","","","","","2011-09-01"
+"Dorrine  & Tim","McCormick","1886 N Waldron Rd","Vestaburg","MI","48891","989-235-3564","dorikmc@yahoo.com","","","","When do you start taking reservations for Summer 1012?","","","2011-09-03"
+"aj","sly","","","","","","sail1boat@hotmail.com","","","","","","","2011-09-03"
+"Karen","Waligora","16680 S Laurel Pk Dr","Livonia","MI","48154","","sci419@twmi.rr.com","","","","","","","2013-06-06"
+"Jennifer","Howard","7504 Majestic Woods Drive","linden","MI","48451","810-287-0598","modern_jennifer@comcast.net","6","9","We r coming in for a soccer game and have heard many good things about your resort.  The would be 10 or 11 of us total.","","2011-10-08","2011-10-09","2011-09-06"
+"Amy","Salter","","","","","","amyandsteve93@yahoo.com","","8","Please help.....my family and I were at your beautiful condos this weekend for my son's soccer tournament.  We stayed in unit 49 under the last name of Gertz. Apparently in our rush to leave today, we forgot a few treasures...in a closet by the front door we left an orange swimming suit, dark green Dukes Of Hazard tshirt, and green towel. In the bedroom with king size bed (by the sink area perhaps) a bag of goodies purchased from Mackinaw City with an orange raincoat, tie dye sweatshirt, and dog statue purchased for a birthday present.  I will be happy to pay for shipping to get the items returned to us.  Please let me know if/when you discover these items.  I have two devestated kids that I hope we can make happy again!!!!!!","","","","2011-09-11"
+"Michelle","Wylie","","Sarnia","ON","N7S6M4","","wylie5@cogeco.ca","4","7","","Hi there we contacted you earlier in the year regarding long term ski rentals.We are a ski family with 3 kids who will race with Nubs Nob. We are looking to secure a long term/ seasonal rental from Dec- March, could you let me know if you may have anything available","","","2011-09-15"
+"suzee","wieckowski","","","","","","suzee1976@comcast.net","6","9","I am wondering if these dates which I think are arriving on Sun 10-7-12, leaving on Thurs 10-11-12/ 1st off are ava. /second cost and third when the season for the off season rate begins. We use to come up every year for about 15-18 years straight had to give it up for a bit but everyone wants to start the tradition up again. Always loved it up there. If you could give me this information I would app. it./ we would need both 5 bedroom condos! Thank you Suzee","see above in please specify box!","2012-10-07","2012-10-11","2005-10-26"
+"John","Dennis","703-2000 Regent St.","Sudbury","ON","P3E 5T5","705-522-8940","jonden@hotmail.com","","8","I am an old customer","I have written you 2 or 3 time about booking the 5 bedroom Condo for next May and have not even received any indication that you have read my email.\r
+John Dennis","","","2008-11-10"
+"anna","Coulter","498 Wimbleton Drive","Birmingham","MI","48009","248-761-6553","acoulter@guardian.com","6","4","We are interested in seeing if condo 1 or 2 are available.  If so, how much for above dates?","","2011-12-28","2012-01-01","2009-02-02"
+"Stephanie","VanDeventer","7378 Winding lake Circle","OVIEDO","FL","32765","4072764572","reidv8@aol.com","2","8","Been Skiing Nubs Nob the past 10 years.","Dear Trout Creek,\r
+\r
+Our budget is $2000.00 for 13 nights. Would it be possible to accomodate us? We are a family of 4, 2 adults 2 children, aged 13 and 9 and very conscientious renters. As a matter of fact, we just sold our home on Crooked River so we are renting until we but another property.","2011-12-22","2012-01-02","2011-09-17"
+"Cheri","Loudenbeck","9011 Round Lake Rd","Laingsburg","MI","48848","517-351-1278","cloudenbeck@thesterlinggrp.com","","","","","","","2011-09-20"
+"tammy","fayson","20109 Fenmore","Detroit","MI","48235","313-563-3378","tammy.fayson@yahoo.com","","","","I want to know if ice fishing is available during the winter months?","","","2011-09-27"
+"Candi","Thayer","3140 Happy Valley","Jackson","MI","49203","517 768-0161","charlieedu@yahoo.com","","8","Im interested in a winter seasonal rental.  Can you please tell me what is available, what the dates and terms are and if you also have month to month rental.","","","","2011-09-21"
+"Lorena","Flores","","","","","","florlorena@gmail.com","","6","","I'm looking for a time to scrapbook and saw the scrapbooking weekend coming up in october. Is that still available, and if it is, I'm by myself, what are the prices per person (don't necessarily mind sharing with other people)","","","2011-09-21"
+"Stacy","Babb","","","","","","stacybabb2@gmail.com","","6","","We offer $ 99 per month quality Search Engine Optimization / SEO Services and Internet Marketing Solutions. Our dedicated team of SEO Professionals ensures Top 10 search engine rankings. Please reply to this email so we can send you more details.","","","2012-10-16"
+"Marianne","Hauswirth","583 north old woodward","Birmingham","MI","48009","2488929512","Mhauswirth3@Gmail.com","","4","I am looking for two  to three units two that can sleep six one that sleeps 4","","2011-12-21","2011-12-24","2011-10-07"
+"Alicia","Elie","","","MI","48197","602-577-2623","alicia.loves.31@gmail.com","","4","","","","","2011-10-13"
+"james","ward","39876 woodside dr s","northville","MI","48168-3425","2489741502","brushrunabout@aol.com","","6","Need room for 16 to 20 person boy scout troop.","Need estimate of cost of lift tickets and rentalts for adults and those under 18 for MLK weekend. Need to know if there is shuttle to locat slopes. Please give me a call. 248 974 1502. I need to know on 29Nov if our budget can work here or if we have to stay further out.  Thanks, Jim","2012-01-13","2012-01-16","2011-11-28"
+"Edna","Hewitt","3833 Ravine Hollow Court","Maumee","OH","43537","4198671906","ejhewitt40@gmail.com","","","","","","","2011-10-18"
+"Pam","MIller","13646 73rd St.","South Haven","MI","49090","269 637-2937","dogdoc@btc-bci.com","","","","","","","2011-10-19"
+"Steve","Pronger","2480 Buckingham Dr.","Windsor","ON","N8T 2B5","519-890-6012","stevepronger@ymail.com","5","9","Would like a 5 night ski week from Jan 1 through Jan 6. Saw the special on website.\r
+Please send pricing and availability  - thanks","","2012-01-01","2012-01-06","2011-10-20"
+"Dit","Vannouvong","","","","","","dvannouvong@gmail.com","","","","Looking for two days unlimited golf and two night's stay.","2013-05-17","2013-05-19","2013-02-20"
+"Gary","Landless","63160 E. Charleston Drive","Washingtn Twp","MI","48095","5862075939","glandless@gmail.com","2","9",""m in the process of setting up a 20/24 golfer weekend outing in late August 2012.  We will arrive Thursday morning 8/23 and play 18 holes and depart after golf and lunch on \r
+Sunday 8/26.  Please email me any information you can to help in determining where our 2012 outing will be held.\r
+Regards,\r
+Gary landless\r
+glandless@gmail.com","","2012-08-23","2012-08-26","2011-10-22"
+"Mittie","McMaster","1180 E. Forest Ave.","Ypsilanti","MI","48198","","Mitster@aol.com","","","","","","","2011-10-22"
+"joe","trzcinski","940 LEIDICH ST","LAKE ORION","MI","48362","2484109579","askjoet@yahoo.com","","9","Would like same unit from last year (next to Shepplers). Please email as to cost and availability.","","2011-12-30","2012-01-02","2011-10-28"
+"Nancy","Faught","","","","","","Nfaught@hrc-engr.com","1","8","Been there before","","2011-12-29","2012-01-02","2011-10-30"
+"Mary","Marble","","","","","","mmarblelaf@gmail.com","","6","I was wondering how many people attend your scrapbook weekends and if you have vendors there during the weekend.","","","","2011-11-02"
+"Mike","","","","","","","mkmcalister@gmail.com","","","","","","","2011-11-03"
+"Sandra","Johnson","3872 Village Circle Dr","Traverse City","MI","49686","231-938-1220","ksnjohn@chartermi.net","","6","I rented #144 from your online from 12-27-11to 12-30/11. The map says building #22 and I do not see a Bldg#22.  Can I also get pictures since they were not yet posted.  Thank you!  Hopefully, we get plenty of snow "that week".","","","","2011-11-07"
+"Amanda","Therrien","","","","","","amtherrien85@gmail.com","","7","I would like a rate for a 1 bedroom. \r
+\r
+Thanks!","","2011-12-30","2012-01-01","2011-11-08"
+"Karl","Gugel","6001 NW 47th Place","Gainesville","FL","32653","(352) 281-7907","kgb@digitalcontrollab.com","4","8","Google search","I am looking for a two bedroom rental unit in Harbor Springs (see list below) for the nights of December 22nd through December 30th (8 nights).  i.e. check-in: 12/23 and check-out: 12/31.    I am originally from Michigan and plan to take my family on a holiday in this area.  \r
+- best regards, Karl","2011-12-23","2011-12-30","2011-11-08"
+"Chad","Gascho","58164 Steiner Dr.","Goshen","IN","46528","574-971-6681","chad@conradgrebel.com","3","6","Looking to come up next weekend for a quick family getaway.  We have three kids, 14, 12, 6.  What might you recommend for accommodations and what are your rates?","","2013-10-25","2013-10-27","2013-10-18"
+"kimberly","louis","","","","","","kimberlylouis@mac.com","6","4","I need a 5 bedroom or a three bedroom!  Do you have anything available?  I need multiple units as well","","2011-12-30","2012-01-03","2011-11-13"
+"Robert","","","","","","","bob.stew@yahoo.com","6","4","","","2011-12-30","2012-01-01","2011-11-16"
+"Emily","Moceri","","","","","248-752-5308","elmoceri@gmail.com","","9","","Hello,\r
+\r
+I've stayed at Trout Creek in the past, and was wondering if you had any rental availability for December 29, 2011 through January 1, 2012? Please let me know which size units and pricing if you have availability.\r
+\r
+Thanks!","","","2011-11-21"
+"Rhonda","McIntosh","9828 N. SR 101","Decatur","IN","46733","260-223-3427","rmcintosh@co.adams.in.us","","9","We reserved a condo for this time and we will need to cancel.  Something came up with some of the couples and we are unable to go to MI this year:(  We will definitely miss it.  Thank you   Rhonda","","","","2004-10-22"
+"Jennifer","Vanderklok","2818 east shore","Portage","MI","49002","269-760-8722","Jentennrn@gmail.com","","","","","","","2011-11-29"
+"Joe","Custer","5425 Parkgrove Rd","Ann Arbor","MI","48103","734 6632014","joecusumich@gmail.com","1","4","Hi guys  planning annual trip with my son    when are holiday days and rates??? for christmas new year season","","","","2011-11-29"
+"","","","","","","","cvklok@hotmail.com","","","","","2005-10-26","2005-10-26","2005-10-26"
+"Homer","Castaneda ","East Congress Street","Tucson","AZ","85701","","homercastanedaa13@gmail.com","6","1","It’s an old truth:  people won’t beat a path to your door if they don’t know where your door is.  If you’re high on the Google list, the door to your business is right there to see and to use.  We can improve your rankings so the door stays open.  Email us now and we’ll tell you how our expert Search Engine Optimization staff can provide you with the key.","It’s an old truth:  people won’t beat a path to your door if they don’t know where your door is.  If you’re high on the Google list, the door to your business is right there to see and to use.  We can improve your rankings so the door stays open.  Email us now and we’ll tell you how our expert Search Engine Optimization staff can provide you with the key.","2012-01-01","2011-01-02","2011-11-30"
+"lisa","","","","MI","","","ltoenjes@comcast.net","","4","Are any of the condos.available for sale?","","","","2012-02-19"
+"Maggie","","","","","","","mwilkinson6@yahoo.com","","9","I'm looking for your prices on the units during the soccer tournamnet 6/15-6/17 in 2012.  Did I miss them on your website?  could you either send those prices to me or tell me where I could find them.\r
+\r
+thank you very much","","2012-06-15","2012-06-17","2011-11-30"
+"Tracy","Nowicki","","","MI","","","nowicki@centurytel.net","","6","","I am interested in the scrapbooking retreat weekend in March of 2012 and wondered if you could give me a quote for a one bedroom unit for two people for the weekend, including Thursday (which is no additional charge from what I understand).  Also wondering how soon in advance reservations need to be made.  Thank you for your time.","","","2011-11-30"
+"Heidi","Wakley","1745 East Hickory Rd","Battle Creek","MI","49017","","wakley5@yahoo.com","","","","","","","2011-12-02"
+"George","Renaud","170 Hampshire","Troy","MI","48085","2482245240","grenaud11@yahoo.com","","4","We are looking for either a 2 bedroom unit, or 2 1 bedroom units - 2 families - 4 adults, 3 kids under 9.\r
+Please give me a call to discuss - thanks!","","2011-12-27","2011-12-29","2011-12-03"
+"John","Jackson","","","","","","jjackson@mcka.com","1","4","","","2011-12-28","2011-12-30","2011-12-09"
+"Diane","","","","","","","dlawniczak@sbcglobal.net","","6","We have 10 people..a mix of adults and kids","","2011-12-29","2012-01-01","2011-12-13"
+"Aaron","Krieger","1109 E Cambourne","Ferndale","MI","48220","2484954330","aaron.s.krieger@gmail.com","5","9","","","2011-12-24","2011-12-26","2011-12-14"
+"Emma","Tuskey","380 Westchester","Saginaw","MI","48638","989 284-3814","emmatuskey@yahoo.com","4","8","","Hi, I have a couple of questions and hope this is the right way to ask them. I'm trying to plan a ski trip for me and a few friends. We found your website online and this looks like a great place for us. We would have about 4-6 of us. We are all sophomores in college, between the ages of 19-20, would you still rent to us? We are all very responsible. Currently a lot of places will not give us a room because we are not 21. I hope you will still allow us to. Also what are you rate for the New Years Eve weekend? Thats the weekend we would really want to come, but we're also looking at the Jan. 6-8 weekend special as well.  I will probably be calling tomorrow. Thanks!","2011-12-28","2012-01-01","2011-12-06"
+"Chris","Yee","22230 Violet","St. Clair Shores","MI","48082","586-879-6341","chris@interlakesbases.com","1","9","","","2012-02-03","2012-02-05","2011-12-07"
+"Debbie","Crane","","","","","705-966-3589","phillip.crane021@sympatico.ca","","","","we would like to golf the boyne mountain in the am to possibly golf the two courses.  we would like to golf at the highlands...the heather, the a. hills","2013-09-01","2013-09-06","2013-03-04"
+"MELISSA","WEBB","53218 BUTTERNUT ST","CHESTERFIELD","MI","48051","313-598-4760","SPYDERWEBB4771@YAHOO.COM","4","9","I'VE BEEN COMING TO TROUT CREEK FOR THE LAST 2 YEARS WITH THE "MAC 10" SKI GOUP AND ABOLUTELY LOVE IT!!!  THINKING ABOUT BRINGING MY 10 YR OLD SON UP DURING THE WINTER FOR WINTER BREAK.  COULD YOU PLEASE GIVE ME THE PRICE FOR A 1 BEDROOM AS WELL.  THANKS!\r
\r
+MELISSA WEBB","","2012-02-16","2012-02-19","2011-12-13"
+"Rose","Heys","","","","","","rose.heys@att.net","","4","","I just made reservations and would like something in writing showing which condo we reserved.  Please e-mail me this information.  My confirmation number is 87590 and guest number is 40306.  Thank you","","","2011-12-13"
+"Jeannette","McCoy","","","","","","jmccoy@dcsbiz.com","","6","","I am interested in booking a corporate trip for the weekend of February 10-12th.  We would like to be able to ski at Boyne Highlands and stay, closely arranged condos on your property if possible.  Can you please let me know first, what the transportation would be like from your site to the Highlands as well as if you could accomidate a group of about 40ppl for lodging?\r
+\r
+Thank you!  \r
+Jeannette","","","2011-12-15"
+"jennifer","shea","4645 wind ridge ct","rochester","MI","48306","2486500169","jenkshea@aol.com","4","9","Hello, was wondering if you have availability for a family of 5- 2 adults and 3 children for 3 nights?","","2011-12-27","2011-12-30","2011-12-15"
+"Hilda","Wittingen","","","","","","hwittingen@acecomgroup.com","","4","This is Hilda, Tracie's friend, please ask Tracie to call me on my cell when she gets home: 616-826-8003.  My cell phone went crazy lost a bunch of my contacts including her\r
+:-(   Thanks!","","","","2013-02-07"
+"","","","","","","","rwelper@comcast.net","","","","","","","2011-12-18"
+"Crystal","Popour","8495 E. Chippewa Trail","Mt Pleasant","MI","48858","9897739002","capopour@gmail.com","3","6","We are looking for two bedrooms one with twin beds.","","2011-12-28","2012-01-02","2011-12-19"
+"jenny","crowe","1512 Tanglewood","LAFAYETTE","IN","47905","","jennym31@yahoo.com","5","6","","","2012-02-04","2012-02-07","2011-12-23"
+"Ramon","Elliot","","","","","","ramonelliot003@gmail.com","","1","","You know how important it is to be visible.  You know you need to use the internet better.  But you also need to take care of your business.  You can’t do both.  Well, you take care of your business… we’ll take care of the internet for you.  Our expert staff understands how to make search engines your friend.  Email us and we’ll get started.","","","2011-12-27"
+"Karen","Sladewski","43374 Hillsboro Dr","Clinton Township","MI","48038","586-419-5444","ksladewski@bcbsm.com","1","9","I would like to reserve Condo # 111 for my brother Chris Yee and #113 for myself. Chris has spoken with NIkki Johnson","Please let me know how much each condo will cost. Then I can call to reserve","2012-02-03","2012-02-05","2011-12-28"
+"Cheryl","Rincon","3130 Macon st.","Portage","IN","46368","219-762-7464","spydrwomyn2@msn.com","5","6","","looking at condo #45. Do you still have available and what would it cost for two for a three night stay?","2012-01-19","2012-01-22","2011-12-28"
+"Teresa","Cross","4128 Lafayette blvd.","Lincoln Park","MI","48146","","mtacross@yahoo.com","","","","","","","2011-12-28"
+"Paul","Reasoner","","","","","574-264-7304","reasoner@compasswa.com","","","","","2013-09-10","2013-09-15","2013-04-24"
+"Laura","Hayes","","","","","3129613476","laurajhayes@gmail.com","5","4","My parents are local residents.","I'm getting married in Good Hart on June 23 and would like to refer my guests to Trout Creek to reserve condos during their stay. Can you set up a wedding block or offer special rates or promo codes for the group? Please let me know what options are available. Thank you!","2012-06-22","2012-06-24","2011-12-29"
+"Tracey","Herrig","","","","","","therrig@comcast.net","4","6","","What are your summer weekly rental rates?","","","2011-12-29"
+"Michele","Quigley","9364 Robb Road","Fowlerville","MI","48836","517-294-3475","mjq@fnwusers.com","","9","","My daughter played with a travel softball team that stayed there a few years ago and we are looking to return with our local tournament team; wasn't sure if there are group rates available. We have 12 on our team; thinking we would need at least 8 or 9 condo's...","2012-08-04","2012-08-07","2011-12-29"
+"Kevin","Surdu","13608 Irvington Ct.","Warren","MI","48088","5866900013","oneoftwo@live.com","4","9","","","2012-05-13","2012-05-15","2012-04-22"
+"sharon","claye","6963 Sandalwood Drive","Bloomfield Hills","MI","48301","586 770 0038","sclaye@ameritech.net","5","6","","","2012-01-27","2012-01-29","2011-12-31"
+"Anna","Reynolds","9008 Alden Nash SE","Alto","MI","49302","616-868-7442","annareynolds@cfaith.com","","","","","","","2012-01-05"
+"jay","shugarsw","","","MI","49067","2695870355","jayshugars@netzero.com","","6","","Do the condos have linens and cooking pans","","","2012-01-09"
+"Jason","Ribits","","","","","","jeribits@yahoo.com","","","","","","","2012-01-10"
+"Lisa","Clark","","","ON","","","gregandlisaclark@yahoo.ca","","","","","","","2012-01-10"
+"Melinda","Schultz","2155 Butternut Drive","Okemos","MI","48864","517-525-1436","mrsjas305@sbcglobal.net","1","9","","Are pets allowed?","2012-02-17","2012-02-20","2012-01-11"
+"Christa","Schroer","410 S. washington St","New Bremen","OH","45869","419-305-9698","sunny.warm123@yahoo.com","","","","","","","2012-01-11"
+"anne","hillstrom","33 cloudy lake rd","Echo  Bay","ON","p0s 1c0","705-248-3245","anhillstrom@hotmail.com","1","9","we would like to be close to indoor outdoor pool if it is open or near indoor pool if not\r
+we are 4 adults 3 children","","2012-02-18","2012-02-24","2012-01-15"
+"Beth Anne","Gruizinga","404 Elliott St.","Grand Haven","MI","49417","2315575834","bagruizinga@gmail.com","1","9","","Are pets allowed?","2012-01-21","2012-01-23","2012-01-15"
+"jacqueline","oshea","2567  franklin park dr","sterling  hgts","MI","48310","586 826-8768","jackieaoshea@yahoo.com","","","","","","","2012-01-15"
+"STACY","KLEIN","1885 HILTS RD","GLADWIN","MI","48624","","SLKLEIN@NETZERO.NET","","","","","","","2012-01-17"
+"Rebecca","Cecconi","1010 South Hemlock St.","Iron Mountain","MI","49801","906-779-9079","bcecconi@charter.net","6","9","I would like to know if Condo 2 or 1 is available?  Also #32?  What kind of package can you provide?  What is the cancellation policy?","We usually won't know if we are coming down for sure until 10 days prior...but I don't want to wait that long and risk not getting the unit we prefer.  Can you accommodate us?","2012-02-25","2012-02-27","2012-01-18"
+"Alfreda","Henley","37848 Dale Dr Apt 102","Westland","MI","48185","313 585-7501","alfredahenley@aol.com","","","","","","","2012-01-23"
+"rick","","","","","","","rfish1@yahoo.com","","9","Just wondered if pets are welcome at any of your cndos. We have a dog (40lbs)","","","","2006-04-19"
+"john","strudgeon","","","","","","gruin1958@yahoo.com","","6","","","","","2012-01-25"
+"Keith","Rickerman","","","","","678-549-2744","keithrickerman@bellsouth.net","","","","","2014-06-26","2014-06-29","2014-01-15"
+"Richard","Anderson","2536 Alveston Dr","Bloomfield Hls","MI","48304","(248) 229-4293","richard1161@sbcglobal.net","","4","","Seeking lodging for family ski vacation for 6 adults and 4 kids.  4 adult skiers & 3 kids need school.  Dates are flexible by one day.","2012-02-19","2012-02-26","2012-01-25"
+"Michelle","Pawloski","","","","","","michelle_pawloski@yahoo.com","","9","We are looking to rent in July.  I was wondering do owners give any discounts for AARP members or state employees.  Thanks!","","","","2012-01-26"
+"Melissa","Miller","","","","","","melnsteve4847@gmail.com","","9","","I am wondering your rates for the soccer tournament in June (I am team manager for two teams). We have stayed in previous years. We are from the SWM Select Soccer Club","","","2012-01-30"
+"Kevin","Wofford","21536 hillside Dr","Clinton Township","MI","48035","586-260-0741","kevin@ptwoody.com","","4","This year we plan on supporting the following 2 charities:Blue Star Mothers,Blue Star Mothers work with Operation Wounded Warrior; Send needed supplies to Germany, Iraq and Afghanistan*;  Supply Hospital Reps/Deputies; Their mothers volunteer thousands of hours at the Dingell VA Hospital in Detroit; Support Operation Cupid Operation PEEPS Quilt-A-Thons – where 100's of quilts have been sent to wounded warriors around the world;  and most importantly, for families who's loved-one have made the ultimate sacrifice - Blue to Gold a Flag Presentation.\r
+Team Selfridge Military Family Assistance, Helping military families in need at SelfridgeThis program assists families of men and women serving at Selfridge Air National Guard Base.Selfridge Family Assist who may be experiencing financial hardships.We are hoping to sell the place out(350 to 400 people)","","2012-03-10","2012-12-01","2012-01-30"
+"Linda","Bedell Kucway","7523 Roloff Rd","Ottawa Lake","MI","49267","734-856-8403","lbedell15@yahoo.com","","9","Pls call me at home 734-856-8403 to discuss which particular unit to reserve based upon previous years at this time.  Thx","","2012-02-17","2012-02-19","2008-05-03"
+"Mandy","Moulin","","","","","","mmoulin@adayana.com","4","9","","","2012-03-08","2012-03-11","2012-01-31"
+"Steven","Benefield","","","MI","","","sbenefield@allstate.com","1","1","","","2012-02-10","2012-02-12","2012-01-31"
+"Harold","Waronker","5 Cutler Lane","Lima","OH","45805","419-236-0722","waronkers@gmail.com","","9","","Looking for rates in mid to late August","","","2012-01-31"
+"denis","hitchmough","","","","","","hitchmough03@aol.com","5","4","","","2012-09-04","2012-10-03","2012-01-31"
+"Josette","Koets","","","","","","koetsjo@gmail.com","","6","","A group of approx. 12-14 women are planning a get-together in your area this Aug. for 3-4 nights.  Several would like their own accomodations, the rest interested in groups of 4-5 in a condo.  Do you have many openings that could accomodate us, are there any price specials?  Is it even possible to have units next to each other? Rates?  What is needed for deposits?  Looking forward to your reply via email & lodging brochure.  thanks, Josette","","","2012-02-01"
+"beverly","wilkie-teno","16800 24 mile rd","macomb","MI","48047","586-612-1473","bteno@comcast.net","","","","","","","2012-02-02"
+"LAURENCE","BERGER","33647 HERITAGE HILLS DR.","FARMINGTON HILLS","","48331","248 661-0005","lberger@twmi.rr.com","","","","","","","2012-02-02"
+"Frank","Schultz","4242  N. Ridge","Arlington Heights","IL","60004","847-394-9425","sfrankers@att.net","3","6","","Hi, Was looking for a week in Michigan, wife and I, have a daughter and son in law down in Plymouth, Mi , would come up.\r
+Have a pet, didn't see anything about pets, on lease , never with out.\r
+open, June, July","","","2012-02-06"
+"Danielle","Stark","","","","","","dmmstark@aol.com","","","","","","","2012-02-06"
+"craig","esler","","","MI","48170","","craigesler@yahoo.com","","","","","","","2012-02-08"
+"DeAndrea","Beecham","13681 Capitol","Detroit","MI","48227","313-646-6509","deandreabeecham@yahoo.com","6","4","","","2012-03-09","2012-05-09","2012-02-10"
+"Barbara","","","","","","","brbrbacon@aol.com","","9","Please delete me from you e-mail list.","","","","2009-06-03"
+"Jon","Bushen","","","MI","","","jonbushen@hotmail.com","","9","Been there before :)","My wife and I are looking to come up to the Petoskey area, April 3-5th or 6th for a getaway.  We have noticed on your website you have deals for the winter months, but wanted to know if you have any deals for the first week of April, as we are looking to book in the next few weeks.  We are looking for a one bedroom place where we can just enjoy the property, and the Petoskey area.  If you could get back to me that would be great.  Thanks.","","","2012-02-11"
+"Debby","Turner","","","","","","turners@manitoulin.net","3","7","","","2012-02-17","2012-02-20","2012-02-12"
+"Myla","Lindstrom","2054 Providence Drive","Bartlett","IL","60103","3128044259","myla.lindstrom@yahoo.com","","","","","","","2012-02-17"
+"gene","","","valparaiso","IN","","","fergusor50@hotmail.com","5","2","","","2013-08-31","2013-09-02","2013-07-20"
+"Greg","Clark","","","MI","","","Reaganauts@aol.com","","","","","","","2011-01-30"
+"Kelly","Ziccarello","2829 Old Dutch Rd","Middleville","MI","49333","269 795-9457","kzicc2829@hotmail.com","","9","Stayed at Trout Creek couple years ago to ski. Also found you online while searching for retreat locations for my quilt guild.","Dates are very tentative, looking for Oct-Nov. I am currently in charge of finding a retreat location for my Quilting guild for fall 2012. I found the scrapbook retreat package you are currently offering in March and would like to see if something similar could be done for quilters. I have to accomodate about 30-35 ladies. Similar needs, Thur-Sun stay, need lodging and meals. Main change would be ideal to have a table per quilter, as each brings her own sewing machine.","2012-10-10","2012-11-18","2012-02-22"
+"Dan","Reid","82 Killarney Road","Sault Ste. Marie","ON","P6b 4N8","7052579409","danreidculligan@shaw.ca","","9","We need to sleep ten, so please send prices on three bedroom and five bedroom.  Thank you","","2012-03-14","2012-03-16","2012-02-25"
+"Lisa","Chapin","310 Stadium Dr","Middleville","MI","49333","616-893-6958","chapinfamily03@yahoo.com","","","","","","","2012-02-27"
+"Brandi","JUDD","2055 Horton Rd.","Muskegon","MI","49445","231-744-8766","bransptcruiser@netzero.net","5","4","I looked over your website & am interested in Condo #9.  Can you tell me if it is available on June 15 thru June 17, 2012.  Thanks!  Brandi Judd","","2012-06-15","2012-06-17","2012-03-01"
+"Stan","Jensen","5274 S Meridian Road","Mount Pleasant","MI","48858","","stanjensen@speednetllc.com","1","9","","We would like to confirm that #139 in building #20 might be available 3 nights in June. We are a part of the Mount Pleasant Soccer Club, MP United 94 team. Checking in Friday, 6/15 and leaving Monday morning, 6/18.","2012-06-15","2012-06-18","2012-03-04"
+"Ann","Schonhard","","","","","","ann_eric@att.net","3","4","I am trying to get some prices on your website, however, it is not going through.","","2012-06-15","2012-06-17","2012-03-05"
+"sheila","mcnab","8054 barnsury","commerce township","MI","48382","","smcnab@comcast.net","","9","We have 4 snowmobiles and ski equipment.  Would like a quote. Thank you for your time in this matter.","","2013-01-04","2013-02-24","2008-06-17"
+"Lynn","Wolf","","","","","","lwolf@easternoil.com","3","4","","we can stay in a 2 bedroom= 1 or 2 bath- prefer to be close to pool and or pond","2012-09-07","","2012-06-23"
+"Mihaela","","","","","","","mgiubega@yahoo.com","","6","","Hello,\r
+\r
+\r
+I have found your website in google and write you this e-mail in order to propose a cooperation. \r
+I have developed in the last period my own travel websites and I want to make you an offer about the following services I can provide:\r
+\r
+ - SEO consultancy\r
+ - Article writing \r
+ - Links from travel websites with related content\r
+ - Advertising in my own websites (banner or article hosting with links to your website)\r
+\r
+I am waiting your answer at mgiubega@yahoo.com if you are interested in my proposal.\r
+\r
+\r
+Kind Regards,\r
+Mihaela","","","2012-03-13"
+"Tammy","","","","","","","weissbt@comcast.net","","4","","","2012-06-15","2012-06-17","2012-03-13"
+"Catmela","Ross","","","MI","","","carmross@bigtube.net","","6","Good evening,\r
+\r
+We are two small families interested in a rental property for the week of July 21st. We need sleeping arrangements for 8 with space for an additional pack-n-play. We’d prefer a home/condo with a pool and within the Harbor Springs/Petoskey area. If you have any properties that meet our needs, please forward links with information.\r
+\r
+Thanks in advance,\r
+Carm Ross","Good evening,\r
+\r
+We are two small families interested in a rental property for the week of July 21st. We need sleeping arrangements for 8 with space for an additional pack-n-play. We’d prefer a home/condo with a pool and within the Harbor Springs/Petoskey area. If you have any properties that meet our needs, please forward links with information.\r
+\r
+Thanks in advance,\r
+Carm Ross","","","2012-03-13"
+"Jon","Nelson","","McComb","OH","","","Jagrinch1@gmail.com","3","6","","We would like to go fishing, both lake and trout fishing during the week.","2012-06-03","2012-06-09","2012-03-18"
+"Greg","Schwepe","1457 Aniko Ave","Lewis Center","OH","43035","740-549-1140","greg.schwepe@huntington.com","","","","","","","2012-03-19"
+"Carol","Hunter","60417 Strobel Road","Centreville","MI","49032","269-467-6241","carolhunter2@frontier.com","","6","Do you allow pets?","","","","2012-03-19"
+"Dan","Bender","55 Skyline Dr","Howell","MI","48843","3135740895","danbender71@gmail.com","5","8","Zoo-de-Mac website.","What is the rate for that night?","2012-05-18","2012-05-19","2012-03-21"
+"Kathleen","Hopper","2814 S Christian Hills Dr","Rochester Hills","MI","48309","2483216546","hopperk@michigan.gov","","","","","","","2012-03-21"
+"Louanne","Neiderquill","7425 State Road","Saginaw","MI","48609","","lneiderq@gmail.com","","","","","","","2012-03-21"
+"Kirk","Maxon","12420 holly ln.","greenvill","MI","48838","6167545514","kmaxf85@yahoo.com","2","8","I already made reservations through the online., However itd only go if I made for two nits.\r
+I am in zoodemac and only need one nite.","","2012-05-18","2012-05-19","2012-03-21"
+"Connie","","","","","","248-830-0476","connie@ecoprgroup.com","5","9","","Can we stay for one night? We're doing the Zoo De Mack...thanks, Connie","2012-05-18","2012-05-19","2012-03-21"
+"Diana","Mazurski","2701 West 95th Street","Evergreen Park","IL","60805","773-816-9580","mystery_912@hotmail.com","","","","","","","2012-03-22"
+"John","Secco","1040 Devonshire","Grosse Pointe","MI","48230","313-407-4300","Jpsecco@gmail.com","1","7","","","2013-12-27","2014-01-05","2013-04-07"
+"Karen","Goeringer","5060 Ridge Trail South","Clarkston","MI","48348","248-701-0040","klg48348@aol.com","2","9","","I just booked #105 for August 16 -21st and want to move it up one week if possible. We just found out our daughter is being featured in a make-a-wish trip so we really want that condo and I noticed it is still available for that week. so if you could please call me tomorrow I would appreciate it.Thank you","2012-08-09","2012-08-14","2007-08-14"
+"angie","hallberg","2168 forest hills","muskegon","MI","49441","","angiehallberg@comcast.net","","9","Could you please send me confirmation of our reservation the weekend of June 15-17?\r
+\r
+Thanks!\r
+Angie","","","","2012-03-28"
+"Gina","Lapp","2280 Lilongwe Place","Dulles","VA","20189","","gina.lapp@yahoo.com","1","8","Michigan Travel book","","2012-07-23","2012-07-30","2012-03-29"
+"Mike","Jurewitch","3120 West 38 Place","Chicago","IL","60632","773-508-2417","MJUREWI@GMAIL.COM","3","8","The Jurewitch/Hayes wedding.\r
+\r
+Will need unit with at least one ADA bathroom\r
+Possible to reserve unit with kingsize bed and double beds?","Is there special rates for the Jurewitch/Hayes wedding?","2012-06-21","2012-06-25","2011-12-30"
+"jenny","mccreary","10039 oaktree rd","Brookville","IN","47012","765-647-0988","jenny.mccreary1@gmail.com","1","8","My family and I stayed in condo 90 2 years ago.  I was wondering if this condo is open any time during month of July.","","","","2012-04-01"
+"Stacy","Klein","","","","","","slklein@netzero.net","","6","","My daughter in law, Kim Klein, paid our deposit for condo #49 for the scrapbook retreat in Oct.  If we add 2 or 3 more people how much is the condo per person?","","","2012-04-03"
+"Frank","Provenzano","5667 Firwood Drive","Troy","MI","48098","248-895-5382","ftaproven@comcast.net","5","8","","","2012-08-07","2012-08-09","2012-06-21"
+"Jenny","","","","","","","echan1@yahoo.com","","8","TAN vacation network","Dear Sir/Madam:\r
+We will be in unit 93 this summer. Since it is not a rental unit, I can't see any description. Would you please kindly tell what unit 93 similar to? Is it same as Condo #75? We are very much looking forward to this vacation in your resort.\r
+Many thanks in advance.","","","2012-04-10"
+"Ed & Marcie","Kay","327 Hickory","Milford","MI","48381","248-494-3974","mkuciemba1@gmail.com","","","","We are attending a wedding in mid August and are interested in a condo for 4 nights. I am interested\r
+in what the cost would be for accomdations for 6 with two full baths. We have a small dog. \r
+\r
+ We would also appreciate your recommendation of\r
+catering services in the area.\r
+\r
+  Thank You -- Ed & Marcie Kay","","","2012-04-15"
+"Virginia","Sheridan","","","","","","riggsvir@msu.edu","","8","Global Discovery Vacations","We have a reservation from 5/19-5/26 in unit #96. Do you have any pictures of this unit? I saw where there were videos of other units on the website, but I didn't see unit 96. Thanks","","","2012-04-23"
+"Kathy","Golemba","894 Greenview","Des Plaines","IL","60016","","djmachdp@aol.com","","8","GLOBAL DISCOVERY VACATIONS.","WE WILL BE STAYING AT YOUR PLACE JUNE 9TH THRU THE 16TH. CAN YOU GIVE ME THE AMOUNT FOR 2 ADULTS, A 6 YEAR AND 10 YEAR OLD TO TAKE THE BOAT TO MACINAW ISLAND?? OR HOW MUCH TO TAKE THE BRIDGE OVER TO MACINAW.","","","2012-04-24"
+"Wendy","VanZegeren","1826 Whirlaway Ct SE","Grand Rapids","MI","49546","616-940-0601","wvanzege@gmail.com","","","","","","","2012-05-09"
+"SHERNAZ","minwalla","460 saddle lane","macomb twp","MI","48080","313 719 8364","bghandhi@comcast.net","6","4","","","2012-07-02","2012-07-05","2012-03-11"
+"peggy","vaughn-payne","310 West St.","Lansing","MI","48915","517-230-7878","PLVaughn@aol.com","","6","We currently have a reservation for unit # 141 (I believe) for the long Memorial Day holiday.  A member of our party has not been able to get the vacation time off yet, and we would like to know if it is possible to switch to a 2BR/2BA unit (#82) at the lower special price? We should hopefully know within the next week if she can make it, but were getting a little anxious about our ability to downsize to a smaller unit and if there would be any penalities?  Thank you.  Peggy","","2012-05-25","2012-05-28","2012-04-28"
+"Diane","Herman","","Bryan","OH","","","diane43506@gmail.com","","9","Attended a scrapbook weekend!!!","are any of your units pet friendly for a small dog?","","","2012-05-05"
+"Sita","Compton","1752 W. German rd","Bay City","MI","48708","","sitacompton@att.net","","","","add to list,  Cross Country skiing","","","2013-05-13"
+"Douglas","Eader","764 Back Nine Drive","Venice","FL","34285","","deader4029@comcast.net","","8","I am interested in renting a place for the entire month of August or September. Do you have units available for either of these months. What is the cost and I have a small dog (10 lbs).","","","","2012-05-12"
+"Clinton","Schlee","","","MI","49770","(269)274-4058","clintonjschlee@gmail.com","5","6","Please provide avaiabilty & rates","Looking for unit with fire place","2012-12-30","2012-01-01","2012-11-09"
+"Teresa","Silvestro","115 Pearl Street North","Hamilton","ON","L8R 2Z5","905-526-1936","tsilvestro@cogeco.ca","","6","Hello,\r
+\r
+I called earlier this week to check availability of 3 condos for the above week.  The very nice lady I spoke with pencilled my name in #111,#113 &#114 in bldg. 16 and I called 2 days later and left a message so that we can secure these with a deposit and I've not heard back yet. We would like these 3 units and I would like to put a deposit on them. I called again today but the office is closed.  I will try again tomorrow and/or hopefully I will get a response from this message.  Thanks so much !\r
+\r
+Teresa Silvestro","","2012-08-11","2012-08-18","2012-05-13"
+"Betty","Palm","3256 Blackbird Rd","Petoskey","MI","49770","2313472827","bjpalm@charter.net","5","8","I live in Petoskey.","I would like information on a monthly rate for a 1 bedroom 1 bath condo for one or two months starting shortly after Labor Day.  My sister will be visiting from San Diego.  I am gathering information for her.  She is 76 years old and would like a unit that has no stairs.  Do you have a senior package that would work for her?","","","2012-05-13"
+"Alice","","","","","","","calnal@sbcglobal.net","6","8","","","2013-08-04","2013-08-10","2012-07-14"
+"Deanna","Sowlles","652C Pewaukee Road","Pewaukee","WI","53072","262-408-2006","grandma.dee@netzero.net","","","","","","","2012-05-16"
+"LYNN","BUPTE","49982 LEXINGTON EAST","SHELBY TWP.","MI","48317","248-941-2289","labupte@comcast.net","3","9","i LIKE UNIT 119 IN BLDG 17. I also like 82 in bldg 12. Is 82 available my dates and is the trundle twin bed have the style that trundles has mattress and pulls out under the twin bed? Are these two units free of cats from previous renters? bad allergies would have to vacate if cat friendly.","","2012-07-03","2012-07-08","2012-05-17"
+"Karen","Kaloydis","","","","","","kgkaloydis@comcast.net","","9","","We are staying at Trout Creek in July and my niece and her husband will be flying in from Seattle to stay with us.  My "nephew-in-law" to go golfing while he is here, but he doesn't want to bring his own clubs.  Is there someplace where he can rent them?  Thnaks!","","","2006-09-18"
+"Natalie","Spaniolo","","","","","","nspaniolo@aol.com","3","9","We are looking for just a two night stay in July.  Do you allow two nights if you have availability?  Thank you.","","2012-07-13","2012-07-15","2011-05-11"
+"Lyndsay","Mercier","","","PA","","906-251-1256","limercier@mail.widener.edu","5","6","","Hello, we are from the Upper Peninsula and will be getting married July 21st, 2012 and are thinking about staying at Trout Creek for our honeymoon. We were just wondering what the rates would be in July, for three nights, and if you have any special "honeymoon" packages? Thank you!","2012-07-22","2012-07-25","2012-05-22"
+"Marlene","Morgan","3007 Holben Dr.","Lake Orion","MI","43085","2483932539","hsunshineroar@gmail.com","4","6","","We are looking for a reservation to condo 49.  Your website said that it was available for the dates we are interested in.","2012-07-25","2012-07-28","2012-05-26"
+"Diane","Odoerfer","17847 Rocco Drive","Macomb","MI","48044-1650","586 4126625","dianeodoerfer@yahoo.com","","9","What number is the condo shown in the first photo on your home page?","","","","2012-05-24"
+"mark","gerber","","","ON","","5195700336","mgerber@rogers.com","4","1","June 30th start would work as well. please ler me know. thanks. mark","","2012-01-07","2012-06-07","2012-05-27"
+"Roger","Nyman","1705 awixa","Grand Rapids","MI","49534","616-453-9723","nymjoy@gmail.com","6","9","","","2012-10-12","2014-10-14","2012-06-24"
+"John","","","","","","","jknoester@hollandchristian.org","","6","","Hello, Every two years our family organizes a family reunion to be held in late July of that year. Our next family reunion will be held in July, 2013. The size of our group is approximately 70 - 80 people and so we generally rent out several condos at the selected site. The most important priority we have for the site that we choose is that there needs to be a large outdoor common area where the entire group can socialize and share a meal. I was wondering whether or not your condo rentals would provide such a setting for our group.","","","2012-05-29"
+"Shelley","Boehnlein","5727 Bearcreek","Lansing","MI","48917","5173237795","msboehnlein@sbcglobal.net","3","6","We would like to reserve unit #79 in building 11.  Please call me at above # or, preferably, my cell at 517-648-5240 to secure this unit.  Thank you.","","2012-06-21","2012-06-23","2012-06-06"
+"matthew","bogdan","501noth cold wather rd","weidman","MI","48893","9896443627","mattbogdan27@yahoo.com","5","6","","","2013-01-03","2012-09-09","2012-06-07"
+"June","Taggart","28674 Middle Crossing Rd","Dowagiac","MI","49047","","kandjtaggart@gmail.com","","","","","","","2012-06-07"
+"Susan","Elek","11243 Fairway Dr.","Sterling Heights","MI","48312","586-939-0650","elek70@comcast.net","","","","","","","2012-06-08"
+"jack","law","4180 mallards landing","highland","MI","48357","","jack@renovationsroof.com","6","6","we could get by with 3 2 bedroom units if the are close to one another","","2012-12-27","2013-01-02","2012-10-19"
+"Linda","Rice","495 WANSTEAD WAY","Lexington","KY","40505","8599489292","lsrice0@uky.edu","2","6","","I noticed condo #147 has an enclosed porch..do any other condos with 2 BR/2B have this feature? It doesn't seem to be open for our dates.  We were hoping to be near the Office/Conf center do any of the condos have screened porches--trying to avoid mosquitoes?    Thanks!","2012-07-08","2012-07-12","2012-06-09"
+"","","","","","","","djriley77@hotmail.com","","","","","","","2012-06-09"
+"WILLIAM","WOLF","","","MI","","","wolfclan4@juno.com","","8","brochure","Interested in an October 4-day weekend.","","","2012-02-11"
+"Colene","VanVugt","4944 lakeshore rd","Lexington","MI","48450","810-359-8827","vanslab@sbcglobal.net","","","","","","","2012-06-13"
+"cindy","lucio","11744 Kristoffer Ct","Orland park","IL","60467","708-349-7006","clucio@athome.com","4","8","I would like to know the rate for this week.\r
+\r
+thanks","","2012-08-25","2012-09-01","2012-06-14"
+"Richard","DeVergilio","P.O. Box 127","Hartland","MI","48353","313-402-0434","devo1765@comcast.net","","8","I would like Debbie's e-mail address. I use to own #79 and sold it in 2004","I some things that I would like to discuss with Debbie","","","2006-09-25"
+"Linda","Buczynski","1038 WILLIAMSBURG CIR","GRAYSLAKE","IL","60030","8477211974","linda_buczynski@yahoo.com","6","6","","","2012-07-08","2012-07-13","2012-06-18"
+"RAYMOND","PARTAKA","4812 SHORELINE CT","WATERFORD","MI","48329","","rpartaka@comcast.net","","","","","","","2012-06-18"
+"Jill","","","","","","","jillbatka@gmail.com","5","8","Looking for accomodations and pricing for 2 adults and one 13 year old","","2013-06-14","2013-06-16","2013-04-10"
+"Firas","Putris","4625 boulder dr.","Sterling heights","MI","48310","","Firaskesto@hotmail.com","3","6","Please contact me ASAP I'm looking for condo near the lake or pool for my kids in a nice area.","","2012-07-20","2012-07-23","2012-06-22"
+"JJ","Barton","","Hovland","MN","55606","","jjbarton@centurytel.net","","","","Interested in renting 1 BR 1 bath unit in mid to late Sept. Wondering about rates","","","2012-06-23"
+"Patty","Becker","28962 Walnut Grove","Southfield","MI","48034","248-355-2428","pbecker@umich.edu","","8","Don't remember --been coming a long time.","Hi there - could you please let me know what a two bedroom, one floor unit would have cost for the same dates as we're coming (7/14-21)? I just need to know in order to figure out how much of our stay my daughter has agreed to pay.\r
+\r
+By the way - she's pregnant with twins!  Do you provide cribs when we will need them in the future?\r
+\r
+Thanks.","","","2008-06-17"
+"Jeanne","Doll","1441 Bennett Ave.","Warson Woods","MO","63122","314 822-3412","go4it@at.net","","6","","Do you allow pets?  Thanks.  Have a great day.\r
+Jeanne","","","2012-06-25"
+"dale","polak","","alsip","IL","","","airplane40@comcast.net","","","","","","","2012-06-08"
+"Paul","Eckert","","","","","616-723-7809","rapidsgrand@yahoo.com","","","","","2013-08-06","2013-08-09","2013-07-06"
+"","","","","","","","kenyoung2000@hotmail.com","","","","","","","2012-06-25"
+"ron and margie","wilson","1730 benton rd","charlotte","MI","48813","5175437264","margiewilso@gmail.com","6","6","looking for a family 3-5 day retreat.\r
+end of december or january\r
+adult children with their families\r
+like ball park cost and available dates\r
+thanks","looking for a family 3-5 day retreat.\r
+end of december or january\r
+adult children and families\r
+like ball park cost and available dates\r
+thanks","","","2012-06-26"
+"Paula","Ashman","W6202 County Road O","Appleton","WI","54913","","spashman7@yahoo.com","","6","Hello, I see there are several online rates. What is the best rate we could get...we also have AAA. Do you have grills available for use? How many outdoor pools are open? Also, are there kayak/paddleboat rentals nearby (on a small body of water as we are not great swimmers :) \r
+\r
+thank you....hoping to find the perfect vacation that we can afford...have never been to MI before :)","I know it's early, but we are planning a family reunion for early June 2015. Between 8 - 12 families are coming from at least 7 different states. We stayed here last year...beautiful resort...and it's the first place I thought of for a reunion because it would be perfect. Is a year in advance enough time to book?","2011-08-06","2011-08-12","2011-07-12"
+"Mario","Labardini","14618 Mansfield Dam Ct. #12","Austin","TX","78734","(512) 266-2768","mlabardini@gmail.com","3","6","","","2012-09-16","2012-09-20","2012-07-01"
+"","","","","","","","parkchic@live.com","","","","","","","2012-07-06"
+"Mary","McElyea","GM Shanghai PO Box 9022","Warren","MI","48090","","marymcelyea@gmail.com","1","4","More interested in nice location near a pond...Can go with 2 or 3 bedrooms, but at least 2 bathrooms a must!  My little sis and her family are with you in July (Matt Smith family) and we're  coming in from China and need a dose of clean air and greenery!!!  Thanks for your help!  (I have older boys ages 20 and 22 who may need entertainment...Canoing and such....)","","2012-08-13","2012-08-19","2012-07-10"
+"Sharon","Denham","","","","","248-223-3309","sharon.denham@plantemoran.com","","","","Golf Little Traverse Friday and Sunday\r
+Bay Harbor - Saturday","2014-06-27","2014-06-29","2014-01-22"
+"Donald","Therasse","","","","","","Dgtherasse@gmail.com","","9","","We are coming in August, arriving on Thursday, August 16th.   We are friends of Grant Brown and will be staying in his rental unit.  We will probably be arriving around 7 pm and wanted to make sure the office will be open to allow us to check in.  What are your usual weekday office hours?   Thanks.","","","2012-07-08"
+"Heather","price","","","","","","heather_price33@yahoo.com","","6","I need enough units to house 12 adults & 11 children.  Could you please advise if you have ANY condos for this size on these dates?","","2012-08-02","2012-08-05","2012-07-14"
+"Kamila","","","","","","","kamila.bendyk@yahoo.com","","6","","Hello,\r
+\r
+Please let me know your availability 8/24 - 8/27 for six adults and one small dog.\r
+\r
+Thank you,\r
+Kamila","2012-08-24","2012-08-27","2012-07-15"
+"Randy","Pearce","4620 w Jefferson","Ecorse","MI","48229","","Randydpearce@yahoo.com","","","","","","","2012-07-15"
+"Gerry","Ziajor","41950 Twining Drive","Sterling Heights","MI","48313","586 354-4247","zburger1211@gmail.com","","","","","","","2012-07-19"
+"Amanda","Whetstone","7509 Paradise Drive","Grand Blanc","MI","48439","8106945797","spanglera10@comcast.net","6","9","What is the price of this unit?","","2013-06-29","2013-07-06","2012-07-18"
+"ROCHELLE","RICH","1477 W SANILAC RD","SANDUSKY","MI","48471","","RICHROPA@GMAIL.COM","","","","","","","2012-07-19"
+"Sharon","Amara","57275 Copper Creek Dr. W.","Washington","MI","48094","586-292-9496","amarasharon@aol.com","","","","","","","2012-07-20"
+"Kimberly","Visser","4201 WEATHERWOOD DR","TRAVERSE CITY","MI","49685","2314213453","kimvisser4@gmail.com","5","6","","Hi, I am planning a getaway to celebrate our wedding anniversary.  We live in Traverse City.  I see you have a 3 night minimum, but we only have childcare for 2 nights.  Is there anyway you would make an exception??  Our anniversary is August 9th, and it really doesn't matter which weekdays we travel.  Thank you, Kim Visser","2012-08-08","2012-08-10","2012-07-21"
+"Julie","Clement","","","","","","rexandjulie@nctc.com","","","","Interested in any last minute deals for 1 BD condo rentals in August.","","","2012-07-23"
+"kelly","","","","","","","kellyjean1969@hotmail.com","","6","","interested in pricing on large sleep 12 condo #1","","","2012-07-24"
+"richard","sclabassi","10144 balfour","allen park","MI","48101","3134104857","rgsclabassi@aol.com","","","","","","","2012-10-02"
+"Kelley","Sullivan","547 Brook Ave","River Vale","NJ","10022","917 868-2006","ksullivan2004@yahoo.com","","","","Curious what a month rental in July would be for a 2 bedroom / 2 bath (we have 2 kids) \r
+\r
+The last 2 years we rented in Birchwood, but would like something closer to the Highlands.\r
+\r
+Thanks","","","2012-07-29"
+"George","Schoembs","4131  Oakcrest Road","Toledo","OH","43623","","gschoembs@bex.net","5","9","","","2012-08-05","2012-08-11","2008-06-17"
+"Denise","Herwaldt","2857 Hannan Road","Imlay City","MI","48444-9721","8107901500","fiddlersfarm@aol.com","3","8","part owner","Is Unit 131 available for the dates specified above.","2012-08-31","2012-09-03","2012-07-30"
+"Mary Anne","Hoffman","637 West 63rd Street","Indianapolis","IN","46260","","ndclubmanager@comcast.net","","","","","","","2012-07-31"
+"Linda","","","","","","","flinrae@aol.com","","6","","I am in need of a room for just 2 of us. We are only in need of a room for Friday and saturday night 8/3 and 8/4. We are looking for the least expensive room you would have. Coming for family reunion and family cabin is full so just need a room for 2 of us.","","","2012-08-01"
+"Christine","Podowski","29779 School Section Rd.","Richmond","MI","48062","586-784-9038","chrisray68@hotmail.com","6","8","","","2012-12-26","2012-12-30","2012-08-02"
+"Sean","Gormely","32330 Briarcrest Ct","Farmington Hills","MI","48334","313-805-6889","sgormely61@aol.com","6","4","Wanted to know what dates Condo 1 was available in the Month of Aug","Wanted to know what dates Condo 1 was available in the Month of Aug","2012-08-27","2012-08-31","2012-08-07"
+"Ron","Quinlan","266 Auburn Dr","Waterloo","ON","N2K3J5","","ronquinlan@yahoo.com","","","","","","","2012-08-07"
+"Nancy","","","","","","","nancy.lambert13@gmail.com","","4","","We would like to come at Christmas time 2012. There could be from 4 to 7 people. Our dates are somewhat flexible but we do want to be there on December 25.","","","2012-08-15"
+"Mary Ann","Page","2225 E Riverwood Dr","Twin Lake","MI","49457","231 744 6456","snowmap@aol.com","3","6","","We have 4 couples, guys want to golf, gals no golf.  Price for lodging and golf package.","2012-09-23","2012-09-26","2012-08-16"
+"Jennifer","Frighetto","1501 Chartwell Road","Schaumburg","IL","60195","","mikejennfrighetto@yahoo.com","","","","","","","2012-08-18"
+"Kathy","Swiderski","7328 Setter Dr","Anchorage","AK","99502","9072486725","swiderski.kathy@gmail.com","","6","MidWest Living magazine","We are looking for a location for a family reunion sometime in the 2nd half of July, 2013.  We have a total of 29 people, in 6 family groups.  We are somewhat flexible on the condo sizes, but generally the 3 or 5 BR units would seem best.  Can you give me more information on price and availability, and help me see what the reunion would be like at Trout Creek?  Is a week long stay required that time of year?  Thank you.","","","2012-10-07"
+"Diane","Fisher","158 Nottingham Drive","Troy","MI","48085","2488287293","fisherdb@wowway.com","","","","","","","2012-08-21"
+"Jane","Cassidy","","","IL","60098","","cassidyj@comcast.net","","","","","","","2012-08-21"
+"cynthia","McClelland","967 Troon","Highland","MI","48357","3133990270","cjrabette@yahoo.com","5","9","One couple looking for a comfortable place to stay during a weekend ski trip to Nubs Nob","","2013-02-08","2013-02-10","2013-01-27"
+"Gladys","Liao","","","","","","glaliao@gmail.com","","4","We stayed in one of the two bedroom codos a few years ago. Loved it. Wondering if there is any property for sale... We are interested in owning one. Either one bedroom or two are fine.","","","","2012-08-26"
+"Gay","Gorman","13495 Cambridge Dr","Lemont","IL","60439","630-257-2402","gaygorman@ameritech.net","","8","","Hi, my husband and I are booked into room 93, another couple is coming also.  I am unable to find that unit on the website.  I would like to see it.  Can you let me know if it has beds for 4, and 2 bathrooms? Thank you, Mrs. Gay Gorman","","","2012-06-25"
+"teryl","miller","8593 s. 38th st","scotts","MI","49088","2696269791","mrockyacres@att.net","","8","our vacation club","i heard the pool was only open on fri and sat, is that true?","","","2012-08-28"
+"Lisa","Smith","3722 Honors Way","Howell","MI","48843","734-730-8437","lsmith@rocksolidservices.com","5","1","Interested in Big Fore, playing golf on Saturday and Sunday.","","2012-09-01","2012-09-03","2012-08-29"
+"","","","","","","","lakebummama@yahoo.com","","","","","","","2012-08-30"
+"Lisa","Brown","3516 Ridgewood Rd.","Toledo","OH","43606","419-360-1664","Brownhouse45@aol.com","1","7","","","2012-12-29","2013-01-05","2012-09-05"
+"ed","","","","","","","newryed@gmail.com","2","9","","","2013-03-11","2013-03-15","2011-05-29"
+"Lisa","Clarke","","","","","","fiddlin2cheyanne@aol.com","","8","My parents are co-owners of Unit 108.","My parents (Tom and Denise Herwaldt) are co-owners of Unit 108. My husband and I would like to stay in our unit for the weekend of October 19-21 if it is available. Thanks!","2012-10-19","2012-10-21","2012-09-10"
+"sharon","yuhasz","1650 colorado st","marysville","MI","48040","8103647061","syuhasz@sbcglobal.net","5","6","","","2012-09-25","2012-09-27","2012-09-11"
+"Angela","Cole","1319 Nottingham Rd","Grosse Pointe Park","MI","48230","3133786756","angelacole@hotmail.com","","","","","","","2012-09-11"
+"Kim","Gurtowsky","17405 Valade","Riverview","MI","48193","734-775-2488","kimgurt@hotmail.com","5","6","looking for 1bd 1bath for this coming weekend...anything available?","","2012-09-14","2012-09-16","2012-09-11"
+"Denise","Gray (Batko)","1195 Letica Drive","Rocheter","MI","48307","248-601-6190","dgray@crittenton.com","2","9","We would like to come a long weekend in July.  There will be 4 of us and we would like to be close to the tennis courts and pool area.  I have been to Trout Creek several times with other people.  If you could let me know the rates of a 2 bedroom 2 bath condo.  We will need two queens.","","2013-07-12","2013-07-15","2012-09-13"
+"Patrick","Foley","111 Copperfield Drive","Dayton","OH","45415","(937) 371-3494","foleynd@yahoo.com","","","","","","","2012-09-16"
+"Stuart","Forsyth","2311 W. Morrison 28","Tampa","FL","33629","8109654858","stuart.forsyth@homebanc.com","1","4","Looking to rent a condo essentially for entire month of July.  Can you please quote me the rate?","","2013-06-30","2013-07-27","2012-07-28"
+"","","","","","","","catherine@bayviewassociation.org","","","","","","","2012-09-24"
+"Michele","Gross","1535 S. Lallendorf","Oregon","OH","43616","4196981247","Dgross4@yahoo.com","1","4","We were wondering if Unit 76 was available during this time frame. This is the unit we have stayed in before and love it.","","2013-01-18","2013-01-21","2012-09-19"
+"judy","hawkins","1464 sugarwood","windsor","ON","n9h2h3","5199723860","juicyj000@hotmail.com","","6","","im  trying to get some golf quotes for my golf league for next year, golf, accomomidations food vouchers, trout creek looks pretty good and we are having our banquet next week and id like to get feedback from my league to book  we are very  flexable for the month of august 2013    thank u  judy","","","2012-09-19"
+"james","courtley","578 oakbrige","ROCHEster","MI","48306","","jkellyc@comcast.net","","8","HAVE STAYED BEFORE, SEVERAL WORK OUTINGS AND PERSONAL WEEKENDS. IT HAS BEEN GIVE YEARS SINCE STAYING WITH YOU.","LOOKING TO STAY FOR NEW YEARS, CAN COME IN THE DAY BEFORE OR TWO DAYS BEFORE AND STAY UNTIL NEW YEARS DAY OR THE DAY AFTER. PLEASE RESPOND ON AVAILABLE SIZES OF CONDOS AVAILABLE AND DATES. THANK YOU.","2012-12-30","2013-01-02","2012-11-10"
+"Mark","","","","","","","mkmeynjn@aol.com","","9","","My wife Carol and I were guests this past weekend in condo #86 and she mentioned that you were unaware of a tear to a dining room chair cushion prior to our arrival. We are nearly 100% certain that we did not cause the tear but we did see it on the 1st night in. I honestly can't think of a time when it would have happened since it seems that we would have heard it tear if we had done something accidently. We feel bad that it is not certain if the damage was or was not already present prior to our arrival. Does someone check everything upon a guest leaving or arriving? We do know that these are privately owned units and do our best to respect their property everytime we visit (we have been there 3 or 4 times now).  Please advise me if there are any other questions or concerns on this matter as we want to make sure that everything is worked out for the sake of the owners.  Thank you, Mark Meyer","","","2012-09-19"
+"Vicki","Bahls","19035 AMSTUTZ RD","Auburn","IN","46706","2606276204","sandvb@frontier.com","","6","","You have responded to me before, but I forgot to ask what is the fee for 3 bedroom condos and also daily price for anyone in our party who decides to not stay the full week.  Thanks Vicki Bahls","2013-07-13","2013-07-20","2012-08-19"
+"Howie","Kerr","46 OMara Drive","Iroquois Falls","ON","P0K 1E0","705 232 2344","howie_kerr@hotmail.com","5","9","Seeking Unit 53 for these three days.\r
+With the unavailibility of pool, hot tub and sauna ..is there a price rduction of any kind ?","","2012-10-12","2012-10-15","2012-09-28"
+"Robert","Eger","","","","","","robert.eger1@gmail.com","4","4","We are looking for to rent a place for the upcoming ski season.  We are a family of 4.","","2012-12-22","2013-03-24","2012-10-08"
+"Brenda","Battle","22277 220th ave.","Paris","MI","49338","231-282-4643","birish57@yahoo.com","","","","","","","2013-12-03"
+"Colleen","Rogers","","","MI","","","kprogers@att.net","","6","","","2013-02-15","2013-02-19","2011-01-19"
+"Michael","","","","","","","klo_78@yahoo.com","","8","My wife and I will be visiting you in early December.  We were curious as to if you offer child care services or would recommend some one who does.  Any info would be greatly appreciated, thank you!","","","","2012-10-12"
+"Amanda","Niedzwiecki","227 E Petoskey st","Gaylord","MI","49735","(989)7320024","christopherniedzwiecki@yahoo.com","","6","","Hello!\r
+\r
+My name is Amanda Niedzwiecki and I am currently looking for donations for St. Mary's Cathedral School in Gaylord, Michigan's silent auction.\r
+\r
+Established in 1998, the FUNdFest is St. Mary's largest fundraiser.  The event includes a silent and live auction, a dinner, raffles and lots of community exposure.  100% of the net profits of the event go directly to the school.  Any donations will be acknowledged in the event catalog and you will also be recognized the evening of the event.\r
+\r
+Thank you very much for your consideration, if you should have any questions please reply to the email or give me a call at (989)619-1788\r
+\r
+Thanks,\r
+\r
+Amanda Niedzwiecki","","","2012-10-12"
+"Holly","Mustion","4235 Covered Bridge Road","Bloomfield HIlls","MI","48302","2488218850","hemustion@earthlink.net","3","9","We are interested in reserving one of the condos that have a queen and a twin in the second bedroom.","","2013-02-15","2013-02-17","2005-10-26"
+"Edmee","Maronge","202 Mandie Drive","Bourg","LA","70343","9858569446","edmeemaronge@yahoo.com","6","7","Please provide me with infomation large family group, 3 adults and 6 children\r
+\r
+are pets allowed?","","2012-12-27","2013-01-01","2012-10-16"
+"Donna","Uccardi","115 Essington rd","Joliet","IL","60435","8152126313","donnauccardi@rocketmail.com","","","","","","","2012-10-17"
+"Mary","Robinson","6197 s sheridan ave","durand","MI","48429","8102177041","marrobin@umflint.edu","","8","team- we are with Hang Tuf U-14 team, coming to play in softball tournament","If possible, we would like to be in buildings near the picnic area, and also near any other u-14 Hang Tuf team members","2013-07-31","2013-08-04","2012-11-11"
+"Karen","McMahan","","","MI","48642","","ksmcmahan@aol.com","","6","","Will you have a scrapbooking weekend in the Winter/Spring of 2013?  If so, when would it be?  Thanks!","","","2012-10-23"
+"Soo","","","","","","","ssookkiiee@gmail.com","","7","","What is a resort fee?\r
+is this a mandatory payment prior to reservation?","","","2012-10-23"
+"theresa","","","","","","","theresa.yoder@yahoo.com","3","6","","I would consider a 3 bedroom and my dates are semi flexible.\r
+\r
+Thanks~","2012-12-26","2012-12-30","2012-10-24"
+"","","","","","","","klykken@gmail.com","","","","","2012-11-02","2012-11-02","2012-11-02"
+"Lisa","Abbey","","","","","","lisaabbey@charter.net","","4","Good Morning. Last year just after New Years we took advantage of your Holiday Recovery special. We would like to do that again if possible. The dates would be Jan 1-4. Are your prices the same as last year? Thank you, Lisa","","","","2011-11-12"
+"Stephanie","Bednarz","16900 Dundalk Court","Northville","MI","48168","7348912642","stephaniebednarz@live.com","1","6","","Hello! \r
+I am looking for a place to stay at or near Boyne Highlands to Ski  for Myself, my 8 year old son and my older parents next month Dec. 4th  we’ll drive up late and leave early Dec. 9th to ski. We will also be traveling with our very well behaved 35lbs dog. Can you please get back to me if your lovely place is available and the price. Thank you so much!","2012-12-04","2012-12-09","2012-11-06"
+"Kathleen","Cole","19417 Pollyanna Dr","Livonia","MI","48152","7344669760","kathleen@colefamilylaw.com","4","6","","","2013-01-02","2013-01-05","2012-11-07"
+"julie","bedford","5140 myrtle lane","fenton","MI","48430","517 861 7715","smjbedford@aol.com","5","7","We are flexible on the dates - looking to do some skiing with the family over the holidays - family of 4 - 2 adults - 2 children ages 8 and 13","","2012-12-25","","2012-11-12"
+"Keisha","Beasley-Dorsey","26573 Summerdale Dr","Southfield","MI","48033","3135068961","keis95i@me.com","","","","","","","2012-11-13"
+"justin","scott","116 Oak st.","Mt. Pleasant","MI","48858","7349222190","jscott418@gmail.com","4","9","please call me, I would like to stay after xmas sometime for about 4 days. wood fire place 2 bedroom, 1 adult and 3 small children.","","","","2008-05-03"
+"Sue","Newman","4305 E. Patterson Road","Beavercreek","OH","45430","9373075600","suednewman@hotmail.com","","","","","","","2012-11-18"
+"David","Lillie","331 Cathcart st","Sault Ste. Marie","ON","P6a1e8","7052579160","dlillie@dundeewealth.com","","9","","","2012-12-27","2012-12-30","2012-11-20"
+"Rosalia","Cruciani","8160 Stout Ave.","Grosse Ile","MI","48138","734 676-6433","liacruciani@yahoo.com","","7","","","2012-12-26","2012-12-29","2012-11-24"
+"Brian","","","","","","","andersonbrian776@gmail.com","","6","","What is your pet policy?  I'm considering a 2 bedroom 2 bath condo over Christmas time.","","","2012-11-24"
+"Renee","Thomas","","","","","","rethomas618@gmail.com","5","7","","","2013-01-18","2013-01-21","2013-01-09"
+"Richard","Smith","10 Torrey Pines Ln.","Pinehurst","NC","28374","910 295-0807","rjsharbor@nc.rr.com","","","","Looking for a Summer rental to coincide with grandson attendance at Camp Daggett.  I'm checking to see when the Summer sessions occur.  Will need a condo that would accommodate up to 7-10 people.","","","2012-11-25"
+"Michele","Gross","1535 S. Lallendorf Rd","Oregon","OH","43616","4196981247","dgross4@yahoo.com","","8","We booked a condo for MLK weekend. For some reason I am afraid I booked the wrong weekend. The name is Dan and MIchele Gross and could you tell me what dates we have and also what unit we have. Thanks! Michele","","","","2005-08-29"
+"Brad","Foster","804 University Pl.","Grosse Pointe","MI","48230","3139523354","brad@bradleyjfoster.com","","4","Somewhere between 5-10 people. Can you give me prices for multiple options. What about the 26th through the 29th?","","2012-12-21","2012-12-24","2012-11-28"
+"Cindy","Neff","468 Park St.","Birmingham","MI","48008","248-644-7361","cindy4avon@hotmail.com","4","9","","Hi Debby. I'm not sure if you remember me or not. I'm the one you and I wrote back and forth a couple yrs ago on a special price to stay there since I've told several people about your resort. I continue to do so. It is awesome there. We'd like to come spend Christmas weekend there. Can you pls send me the cost for two adults for a 2 bedroom 1 bath condo?  We are excited to come back. Has been a few yrs. Will wait to hear back from you. \r
+\r
+Cindy","2012-12-22","2012-12-25","2005-08-29"
+"Shelly","Petoskey","","Highland","MI","48357","734-558-2488","slpetosk@svsu.edu","5","4","","I have a softball team playing in Petoskey.  Would we be able to Block 15 to 20 rooms until Feb.?\r
+\r
+Would we be able to receive a group discount?\r
+\r
+Thanks- Shelly Petoskey","2013-08-01","2013-08-04","2012-12-01"
+"Kerri","","","","","","","kmac76@shaw.ca","","4","Would there be any availibility for Jan.1st and 2nd (2 nights) for either 4 or 10 ppl.\r
+could you let me know for each and what the cost would be?","","","","2012-12-04"
+"John","Whedon","21935 wildwood","Dearborn","MI","48128","248-760-7749","Jw0003@aol.com","3","9","Prefer unit with wood burning fireplace even if it requires a 2 bedroom 1 bath unit.  It is a unit for staff to stay in while working at our bosses home up there.","","2012-12-18","2013-01-02","2012-12-02"
+"Jessica","","","","","","","JessicaGLundberg@gmail.com","1","7","","","2012-12-29","2013-01-01","2012-12-05"
+"kathy","miller","1745 Sevenoaks Rd.","Jackson","MI","49203","517 784-3531","kathy.miller@jcisd.org","","4","","","2013-08-22","2013-08-24","2012-12-08"
+"jeff","yarian","2143 Horton","Muskegon","MI","49445","2317440713","ayarian@msn.com","","9","","We have said at Trout Creek several times.  Just checking to see if you still have the special that if you stay two nights you get the third free.","2013-06-13","2013-06-16","2009-11-11"
+"Jennifer","Valentine","","","","","","jvalentine73@yahoo.com","","8","We have reservations for July via Global Vacations.","We have reserved units 59 & 66.  I was wondering if there are pictures available of those units?  Also, how far is it to the nearest beach?","","","2012-12-11"
+"Scott","Weatherford","1335 Farwood Dr.","East Lansing","MI","48823","5173511864","weatherfordmedia@gmail.com","","4","I made a reservation on your website earlier today. I would like to cancel that reservation.\r
+It was for 12/30 to 1/02 for a 2 br. loft.\r
+Please let me know when you have received this message.","","","","2012-12-11"
+"Kim","","","","","","","kjonesrep@comcast.net","5","9","","","2012-12-12","2012-12-14","2012-12-11"
+"gregory","jones","25206 gettysburg rd","plainfield","","60544","8479753948","gregdjones25206@gmail.com","1","6","","i've been to crystal mountain before that's it, hoping for an experience as good or better","","","2012-12-13"
+"Donna","Gabriel","","Cleveland","OH","44113","","donnagabriel70@gmail.com","","8","","We can increase rankings of your website in search engines. Please reply back for more details.","","","2012-12-13"
+"Cindy","Neal","5290 W. State Road 28","Frankfort","IN","46041","765-659-2399","cmttneal@gmail.com","","","","","","","2012-12-14"
+"Eric","Ash","4758 pine hollow rd","holland","MI","49423","6163354618","boat904@gmail.com","6","8","we have 3 families looking for accomodations for new years.  Do you have anything?","","2012-12-31","2012-01-02","2012-12-15"
+"gary","hill","1330 georgia","marysville","MI","48040","8109563535","ghill002002@yahoo","","9","was i to recieve a confirmation number for my resvervation?","","2012-12-27","2012-12-30","2012-12-20"
+"changsook","yu","","novi","MI","","734-673-2549","sckim_home@hotmail.com","5","9","from 12-25~12-27 3 night please","","2012-12-25","2012-12-27","2012-12-23"
+"Ivan","Ballard","","Portland","","97205","","ballardivan60@gmail.com","","8","We offer quality Search Engine Optimization / SEO Services and Internet Marketing Solutions. Our dedicated team of SEO Professionals ensures Top 10 search engine rankings. Our SEO Processes are designed in view of the SEO guidelines, and white hat SEO techniques are strictly followed to ensure that our clients from world over get the best SEO services. Please reply to this email so we can send you more details.","We offer quality Search Engine Optimization / SEO Services and Internet Marketing Solutions. Our dedicated team of SEO Professionals ensures Top 10 search engine rankings. Our SEO Processes are designed in view of the SEO guidelines, and white hat SEO techniques are strictly followed to ensure that our clients from world over get the best SEO services. Please reply to this email so we can send you more details.","","","2012-12-28"
+"Derrick","","","","","","","dconkle2@gmail.com","4","7","Would just like to know what your rates are?  I am not sure on a date yet but I would be interested in a rate for a check-in Friday and Check out Sunday just a weekend deal. I know rates will very from week to week but just a general idea would be great.  Thank you.","","","","2012-12-28"
+"David","Sparks","3735 Bowen Rd.","Toledo","OH","43613","(419) 471-0815","djsparks@marathonpetroleum.com","","8","Purchased a week long reservation in Unit 31 from a United Way auction through Marathon in Detroit, MI. Just checking to see availability for this year to plan a trip. I would prefer to come in the late spring/summer.","I was unable to specifically look for the condo that I won the reservation for and would like  a list of available dates to make the reservation.","","","2013-01-02"
+"George","Gannage","","","","","","ggannage@yahoo.com","","8","I have heard about your condos from others.","I far are you from Boyne Highlands?Can you walk there from your condos?If so, I want the closest unit to Boyne highlands,","","","2013-01-02"
+"Holly","Mustion","4235 covered bridge road","Bloomfield hills","MI","48302","2488218850","Hemustion@earthlink.net","3","9","","","2013-02-21","2013-02-22","2013-01-02"
+"Mike","Davis","29 Lowell NE","Grand Rapids","MI","49503","616-292-6401","steven_davis1958@att.net","6","6","","My daughter is planing a wedding late August at Bay Harbor Village so we are looking for a place to stay for family cumming from Grand Rapids,Mi. I am not sure how many yet but looking for prices on a condo in the area we may need more than one. Could you let me know if you have any condos available on the days requested and how many nights are required and how much per night. Thanks! Mike","2013-08-29","2013-08-31","2013-01-04"
+"Michelle","Stookey","","","","","","mes2626@aol.com","","4","","My family has a reservation  toward the end of the month, and I didn't see anything about pets. Do you allow pets? If yes, how much for a deposit on dogs?","","","2013-01-13"
+"Michael","Peterson","38239 French Pond","Farmington Hills","MI","48331","248 210-9582","jmpeterson@twmi.rr.com","4","8","Hi. We have reservations for unit 41 through Global Connections. Question: does this condo have high speed internet provided? \r
+\r
+Thanks. \r
+\r
+Michael","","","","2012-11-28"
+"Donald","Offringa","5709 16th Avenue","Hudsonville","MI","49426","616-667-1248","dco4653@att.net","","8","","We are currently booked through Global Connections to stay in Unit #41 from 7/27/13 to 8/3/13.   I noticed in reviewing your website that Trout Creek offers golfing packages including golf couses Black Lake, Boyne Highland and Little Traverse Bay.    As a guest of Trout Creek, but not signed up under one of your golf packages,do you offer special golf rates to play any of the above mentioned courses?","","","2013-01-05"
+"Joseph","Kuberski","","","","","7344764887","Kubejos@chrobinson.com","6","8","","","2013-02-08","2013-02-10","2013-01-06"
+"Michelle","","","","","","","mpherren@yahoo.com","","9","","We would like to rent a condo that allows for pets.  We have a vizsla (40 lb dog)and although she has good manners & is not unruly, we understand not everyone welcomes a dog.","","","2013-01-09"
+"STACY","KLEIN","","","","","","SLKLEIN@HUGHES.NET","","9","","Have you set the date for the fall scrap booking retreat?","","","2013-01-11"
+"Ari","Berris","","","","","2485355111","aberris@gmail.com","","","","","2013-08-02","2013-08-04","2013-05-20"
+"Joan","Bickes","3345 Erie Dr","Orchard Lake","MI","48324","248 762 0546","jbickes@wayne.edu","","9","I am planning a family reunion. There are 5 families with their children and grandchildren\r
+The largest family is 6 adults with 8 children \r
+Family of 6 adults and 4 grandchildren (2 are under 2 years)\r
+Family of 5 adults and 2 grandchilren (1 under 2)\r
+Family of 5 adults and 1 grandchild (under 2)\r
+Family of 4 adults","","2013-07-28","2013-08-03","2004-01-27"
+"Pat","Zawadzki","","","","","","pzawadzki@orchardlakeschools.com","","8","owner","PLEASE CANCEL MY RESERVATION  Unit 45 for next weekend.  Please notify when done, and if possible please rent out.\r
+\r
+Thank You!","","","2013-01-13"
+"Marlene","Bennett","1541 Rebecca","Hudsonville","MI","49426","616-667-1199","mb3561@sbcglobal.net","","","","","","","2013-01-14"
+"phyllis","Vruggink","5064 Tyler St.","Hudsonville","MI","49426","6166691346","phylv@att.net","","4","Are there cross country ski trail near by.","","","","2013-01-15"
+"Lisa","Hamidi","9818 Nabozny Dr","Milan","MI","48160","2483026049","lisahamidi@me.com","5","4","We need to know if you are dog friendly and have availabilty this weekend.","","2013-01-19","2013-01-21","2013-01-17"
+"scott","moeller","","","","","","scott@grandpremiervacations.com","5","6","I have a client who is looking for a few nights in Harbor Springs. Do you have travel agent discounts?","","2013-07-13","2013-07-16","2013-01-17"
+"Pamela","Morell","2008 Scotch Drive","Holland","MI","49423","6165021261","Pamorell2@comcast.net","","4","Got your information from Sally Hunt...  I used to help her clean the condos "back in the day".  :)  I have been wanting to call, but only seem to get to it after regular business hours, so thought perhaps I would try to e-mail instead.\r
+\r
+Looking, actually, for the saturday and sunday night in february starting the 23rd.  3 queens, plus 4 twins or 2 twins and pullout....would work.  \r
+\r
+Thank you so much! \r
+Pam (Uroda) Morell","","2013-02-23","2013-02-25","2013-01-20"
+"Mark","Zickel","","","","","","mjzickel@charter.net","","9","","I would like to rent unit 87, 2/28, 3/1/ 3/2 checkout 3/3.  (3 nights) I usually get Thursday night free when renting this unit.  Please send me your best rates with taxes, all fees included.   Thanks.  Mark  (231) 557-1025","","","2013-01-22"
+"Stacy","","","","","","","slklein@hughes.net","","9","Chris-\r
+\r
+Sorry to report that Nikki & I won't be able to make the fall retreat this yr (bow season).  We LOVED it last year & regret not being able to return.  With that said do you know of any other retreats in your area that may be in late Sept or late Oct.  Thanks  Stacy Klein","","","","2012-04-04"
+"Erik","Hautamaki","","","","","5864051045","eahautam@yahoo.com","1","9","","","2013-05-17","2013-05-19","2013-01-25"
+"vito","raimondo","22475 Lange","Saint Clair Shores","MI","48080","586-945-4940","vraimond@ford.com","","8","Church Wild Game auction dinner","Cannot find any prices on your site. A map of Michigan would also help being I'm not familaiar with area. I live in lower east michigan.","","","2013-01-26"
+"Joseph","","","","","","","coachjoe1721@yahoo.com","","8","","I have booked Condo Unit 66 through Global Vacation Network. I have been looking on your site and have been unable to find any information regarding this unit. Do you have any info and photos you can send me of this unit.","","","2013-01-29"
+"Dave","","","","","","","dseger@aol.com","3","9","Trying to find out the price of 6-7 nights in late July.","","","","2013-02-04"
+"Liz","Klinger","","Grand Rapids","MI","","734-239-5365","eliza.leon@hotmail.com","","6","","Hi! I'm hoping to get some information about pricing and availability for your condos for the weekend of the 2013 Zoo de Mack bike ride. I see on your website you have some information about the ride, and it looks like your resort would be a great option for our group!\r
+However, we're only looking to make arrangements for Friday night- do you permit people to make one night reservations for this event?\r
+Please call or email me with some more info! Thank you!","2013-05-17","2013-05-18","2013-01-31"
+"Dawn","Pryor","","","MI","","","dawnpryor22@yahoo.com","","6","Looking to accommodate 10 families, each with their own condo for these dates.  How far are you from the beach?  Is there a community spot for grilling?\r
+\r
+Thanks.","","2013-07-13","2013-07-20","2013-01-31"
+"Kurt","","","","MI","","","kpm68@yahoo.com","","4","","Do you allow pets?  Id like to bring my dog if possible.","","","2013-01-31"
+"Chad","","","","","","","arv3580@yahoo.com","","","","","2013-07-19","2013-07-22","2013-02-04"
+"Marcel","","","","","","","cello1269@hotmail.com","","9","I reserved a condo for Friday, May 17th.  Could you please send me an email reciept/confirmation.\r
\r
+Thank you,\r
\r
+Marcel Borja\r
+(586)764-8624","","","","2009-06-04"
+"deb","","","","","","","debby@troutcreek.com","","1","","","2013-06-05","2013-06-07","2003-08-20"
+"Neville","Bugli","","","","","","nbugli@sbcglobal.net","","4","","Hi There,\r
+\r
+We heard about Trout Creek through our good friends who were there a year ago. We are planning a family re-union in July. Can you please send us availability and costs. Planning to be there 3 nights. We may need one or two condos depending on the number of family members. \r
+\r
+Thanks","2013-07-02","2013-07-05","2013-02-19"
+"Tammy","Lewandowski","81 Montmorency","Rochester Hills","MI","48307","","tslewandowski@wowway.com","6","9","","Actually I need alot more cabins.  We have about 30 of us that would like to have a family reunion.  We normally stay in cabins close to each other but are looking for a different place to stay this year.  We like to golf, bbq, have fires at night, be able to do outdoor activities in a yard area.  Could you recommend something for us","2013-07-20","2013-07-27","2009-06-07"
+"Anne","Fleming","607 Wildwood Avenue","Jackson","","49201","5177459501","anne@fleminglaw.com","","9","","We are interested in 2 bed 2 bath condo for this weekend.  Please advise availability and rate.  Thanks.","2013-03-08","2013-03-10","2013-01-31"
+"Brian","Bell","","","","","","Bell@ameritech.net","","7","4 adults and 2 kids looking to ski for weekend. Looking for specials or good deal. Thank you","","2013-02-22","2013-02-25","2013-01-31"
+"Test","User","","","","","","test@gaslightmedia.com","","","","just \r
+test","2013-01-02","2013-01-02","2013-01-31"
+"Hillery","Ross","1939 Summerset Dr","Muskegon","MI","49442","5132939562","josephine44@yahoo.com","","","","","","","2013-02-04"
+"Kevin","Wolfram","","","","","","Kevin.wolfram@ameritox.com","","","","We play 2 rounds per day, preferrably around 8:30 and 2:30","2013-06-01","2013-06-04","2013-02-01"
+"Chris","Guy","","","","","586-630-0814","cguy0910@yahoo.com","","","","Have a golf outing of 24 need tee times for
+fri PM
+Sat AM and PM
+Sun Mid morning 11AM
+i look forward to hearing from you","2013-06-21","2013-06-23","2013-02-01"
+"ART","DUERR","","","","","734-748-9533","duerr3350@aol.com","","","","","2013-08-12","2013-08-14","2013-02-01"
+"jeff","mcintosh","","","","","5863830057","jeffmacattack@wowway.com","","","","","2013-05-17","2013-05-19","2013-02-01"
+"Rachel","","","","","","","Schoahs@shaw.ca","4","8","We have stayed with you before","","2013-03-12","2013-03-15","2013-02-23"
+"Chris","Brilinski","","","","","231-526-2148","chris@troutcreek.com","","","","","2013-06-23","2013-06-26","2009-01-21"
+"Chris","Brilinski","","","","","231-526-2148","chris@troutcreek.com","","","","","2013-06-23","2013-06-26","2010-01-20"
+"Carol","Schrotenboer","","","","","616-836-3934","schrotie@charter.net","","","","Hey Chris!  Looking forward to seeing you in March!!!! Get your dancing shoes on! LOL","2013-05-17","2013-05-19","2009-07-17"
+"jerilyn","robison","4631 ottawa","okemos","MI","48864","5177756276","jerilynrobison@yahoo.com","5","4","","I would like unit 53 building 8\r
+I also want to reserve condo 65 building 0 and condo 112 building 16","2013-03-01","2013-03-03","2013-02-19"
+"Mark","Karavite","1561 Eason","Waterford","MI","48328","248-618-9000","mkaravite@comcast.net","1","6","","We're looking for a place near Nubs Knob / Boyne Highlands to sleep 2 adults & 4 kids for the week of winter break:  Feb. 17 - 22.\r
+We'd like the Mid Week Lodging Special & preferably a place with a real fireplace.\r
+We're also interested in the discount lift tickets.\r
+Please contact me at 248-618-9000 to discuss options.","2013-02-17","2013-02-22","2013-02-05"
+"Jennifer","Schultz","","","MI","","","jennschultz11@hotmail.com","","8","Soccer tournament","","","","2013-02-05"
+"Mary rose","","","","","","","Mfahlman@comcast.net","","9","Are either of the two five bedroom condos \r
+Available in the month of July 2013?\r
+\r
+How much are they for a week?","","","","2013-02-06"
+"Yvonne","Frysh","290 S Haas St","Frankenmuth","MI","48735","989-652-3071","yfrysh@gmail.com","1","7","2nd request date. \r
+ Mar. 7 -  10, 2013\r
+\r
+ I'm interested in Condo's 16 and 24.","","2013-02-21","2013-02-24","2013-02-10"
+"Jeff","Simmonds","","","","","","jsimmonds@macvalves.com","","","","I am inquiring about a golf outing for one nights lodging and 18 holes of golf at Little Traverse Bay.  The night of lodging would be September 6th, with golf on the morning of September 7th.  We will have between 28 and 36 golfer and would like to tee off around 7:45 a.m.\r
+\r
+Thanks and let me know if you have any questions.  Thanks for your time and look forward to hearing from you.\r
+\r
+Jeff Simmonds","2013-09-06","2013-09-07","2013-02-12"
+"Corey","Mettler","3560 Barker St.","Hudsonville","MI","49426","","cmettler@bethany.org","3","8","We are members of Global Discovery Vacation Club.  We are looking forward to experiencing this resort!","We were specifically interested in knowing if unit #59 has a fireplace or jacuzzi tub.  The website made it seem as if all of your condos had these, but since it is a private unit and was not listed in our amenities list through Global, we weren't sure if it was standard for all units or not.  Thanks for you help!","","","2013-02-12"
+"Michael","O'Neill","311 Valerie Court","Essexville","MI","48732","989 598-4441","mpatrick51@yahoo.com","","","","I put together a golf outing for upwards of 40-50 golfers and would like to know your best price for housing such a group ... each man will need a separate bed...","","","2013-02-13"
+"Vanessa","Cruz","2035 Commerce Blvd, Apt 216","Ann Arbor","MI","48103","8477698799","vanessacruz7@gmail.com","5","6","My family and I are looking for 1 room. We wanted to know about the best package for these activities: dog sledding, snow tubes, skiis, snowboards, horse drawn carriages. Also, do you have any indoor pools or golf available? We are looking for a room for 4-6 adults or two rooms.  \r
+\r
+Dates: March 2013 visit 3/24-3/26\r
+\r
+Thanks, \r
+Vanessa","My family and I are looking for 1 room. We wanted to know about the best package for these activities: dog sledding, snow tubes, skiis, snowboards, winter rafting and snowmobiles. Also, do you have any indoor pools or golf available? We are looking for a room for 4-6 adults or two rooms.  \r
+\r
+Dates: March 2013 visit 3/24-3/26\r
+\r
+Thanks, \r
+Vanessa","2013-03-24","2013-03-27","2013-02-20"
+"Sarah","hotchkiss","4535 N. Hamilton Ave apt. 3w","Chicago","IL","60625","6163406766","shotchkiss05@gmail.com","6","8","","I am looking for a place to have my wedding reception and I would like a place where we can party outside with a bonfire and then all the guests can stay onsite.  If this is something you can offer, please email me.","2014-05-16","2014-05-18","2013-02-21"
+"Susan","Brueggemeier","6335 Memorial Drive","Dublin","OH","43017","615-789-9416","Rbruegge@columbus.rr.com","5","9","If a Sunday to Sunday booking doesn't work, a Saturday to Satuday from \r
+                  7/20/13 to 7/27/13 also works for us or...\r
+                  7/27/13  to 8/3/13\r
+Thank you!","","2013-07-21","2013-07-28","2013-02-23"
+"Beth","Daniels","654 4th St","Wyandotte","MI","48192","7346584531","kidscanfightcancer@yahoo.com","","8","","I am the Co-Captain of a Relay For Life team called "Kids Can Fight Cancer."  My niece, Emily, created this team when she was 9 years old because she loves to volunteer!  2013 is our 3rd year of Relay For Life.  The team has grown to include our family & friends.  We will fight harder to find a cure this year because our Aunt Janet is currently battling a tough form of breast cancer.\r
+We are asking for donations to support us in our fight against cancer.  We are hoping to build a basket that will inspire Relay For Life visitors to spend their vacation time right here in Michigan!  All money raised is donated to the American Cancer Society.  We will be having raffles at a bowling fundraiser on March 23, 2013.  Our Relay For Life event takes place at Heritage Park in Taylor, Michigan on May 18, 2013 & will have a silent auction.  We are looking for donations of products, services or gift cards to be used as prizes/silent auction items. Cash or check donations would also be appreciated.","","","2013-02-23"
+"jim","","","","","","","jamesrose3024@hotmail.com","","","","Looking for your best rate for 4-6 golfers 2nights 3 days of unlimited golf at close be diff. Golf courses for a mens group bachelors outting golf trip from a group of Canadians","2013-07-10","2013-07-13","2013-02-23"
+"Jill","Bertich","51470 Royal Links Court","Macomb","MI","48042","586-949-7319","jcrazy4@aol.com","","","","","","","2013-02-24"
+"Margo","","","","","","","spartie06@yahoo.com","6","4","We are Bob and Nancy Cook's children coming for a visit with the.  What would the rate be for the dates listed for Condo #2?\r
+Thank you.","","2013-08-03","2013-08-10","2013-02-25"
+"Terry","Evans","","","","","1519 507 2962","gsxrbro@hotmail.com","","","","Hi I was looking for an unlimited golf package.I couldn t find any sI was wondering if you coulkd send me some more info","2013-07-05","2013-07-08","2013-02-26"
+"Michael","","","","MI","","","Mike@tourconnection.com","5","7","","","2013-03-01","2013-03-03","2013-02-26"
+"John","Brust","","","","","(248) 299-0803","jackbrust@att.net","","","","Need a 4 bedroom condo.","2013-07-25","2013-07-29","2013-02-27"
+"Justin","McGuire","","","","","519 520-2607","justin.mcguire012285@gmail.com","","","","We would like to play bay harbour in twilight rates due to the amount of money it would cost. Little Traverse in the morning, and black lake it doesnt really matter. \r
+Also if you could give an option with Boyne Highlands involved to and replacing either traverse or black lake. we are fine for having double occupancy per room also. \r
+We are looking at two dates one in mid july and the other in mid september. so if you can give us a quote for that it would be great.\r
+\r
+We booked with you last June and had a blast and we would like to work with Big Fore again!","2013-07-12","2013-07-15","2013-02-27"
+"Susan","Brueggemeier","6335 Memorial Drive","Dublin","","43017-8884","614-789-9416","rbruegge@columbus.rr.com","","9","Hello,\r
+I made a phone reservation on Tuesday, 2/26, for July 21 to July 28 for condo #47.  Will you be sending and email confirmation?  \r
+Thank you very much,\r
+Sue","","","","2013-02-27"
+"Kerry","Baker","","","","","","skbaker62@chartermi.net","","9","","Hi,\r
+Coming in again for Zoo-De-Mack bike ride.  Do you have any condos available for 1 night?\r
+Hope so, as we LOVE staying at Trout Creek.\r
+Thanks!\r
+Kerry","2013-05-17","2013-05-18","2013-02-27"
+"Gianluca","Glazer","No Mail Please","Agoura Hills","CA","91301","8185385147","gglazer@reviewincus.com","","6","","I recently ran a search on your business, and noticed it currently has very few customer reviews on sites such as Google, Bing, Yahoo, Citysearch, etc. Here is a link that shows you how your business shows up when a potential customer searches for your reviews: http://google.com/search?q=Trout+Creek+Condominium+Resort+reviews \r
+\r
+Did you know 86% of consumers use online reviews as part of their buying process, and if you have NO RATINGS only 2% of consumers would be likely to do business with you. You could be losing customers to a competitor who has great reviews. \r
+\r
+At ReviewInc ( http://reviewincus.com ), our software makes it easy, affordable at only $129/month and effective to use reviews to grow your business. Give me a call at your convenience for a quick demo, and I’d be happy to show you how it works.\r
+\r
+Kind Regards,\r
+\r
+Gianluca Glazer\r
+Account Executive, ReviewInc\r
+Direct Line: (818) 538-5147","","","2013-02-28"
+"terry","watt","48715 tilch","macomb twp","MI","48044","5865669294","twatt1@att.net","1","8","stayed here a few times.","if I request the 21st to the 28th does that mean we check out the morning of the 29th?","2013-07-21","2013-07-28","2011-07-02"
+"Jim","Koczaa","","","","","","jmkoczara@aol.com","","8","stayed at Trout Creek several times.","Can you do a 1 night rental?  I am thinking about a day trip next week Saturday for one night, 3/9?    If so, are all condo units available, even the 5 BR if I get my brother and family to come with us?","","","2013-03-02"
+"Karen","Thompson","","","","","705-356-2325","ktthompson@persona.ca","","","","Lots of beds - all middle aged ladies that do not want to sleep with each other","2013-05-09","2013-05-12","2011-12-12"
+"Rick","","","","","","","rickyd@cogeco.ca","","","","","2013-08-07","2013-08-10","2013-03-03"
+"nicole","kelly","2194 austin","schererville","IN","46375","2197764907","nicolekelly1@sbcglobal.net","","","","","","","2013-03-03"
+"KERRY","GREENHUT","","","","","","KLG6675@SBCGLOBAL.NET","","4","","Are fishing licenses required to fish on your property??\r
+\r
+Thank you.","","","2013-05-24"
+"Jamie","Lininger","","","","","","bucks9395@bright.net","","","","We would like to play Hidden River or Little Traverse Bay on Monday afternoon (7/8) and Bay Harbor on Tuesday","2013-07-08","2013-07-10","2013-03-04"
+"Cheryl","Cooper","1570 Oak Grove","Walled Lake","MI","48390","2487615903","cheryllcooper@comcast.net","5","6","","Do you have any discounts off the rack rate?  We are looking to pay about $125.00 per night. Do you have anything in that range?\r
+\r
+Thank you.","2013-07-04","2013-07-04","2013-03-04"
+"paula","","","","","","","paulaben_2000@yahoo.ca","6","6","Hello, we are coming to the harbour srpings area for a family wedding on SEpt 07, 2013.  As we are coming from the Windsor, Ontario area, we would like to find accomodations that will allow most of the family to be in close proximity of each other.\r
+There will be 16 adults and 8 children (ages 10 years to under 1 year of age). We would need a minimum of 10 beds.  Can you suggest any ideas on accomodations for all of us?\r
+Im not sure if you rent by the weekend or only by the week.  I did see the 5 bedroom condo you listed, but one wouldn't be enough and not sure if you can rent out two for a weekend.\r
+I appreciate your help, we are looking forward to visiting Harbour Springs.  With thanks, Paula","","2013-09-06","2013-09-08","2013-03-05"
+"Tom","Stoll","3431 Hillside Dr","Ypsilanti","MI","48197","734-434-8823","tcstoll@sbcglobal.net","","9","","I'm looking for lodging the night before the Zoo-de-Mac bike ride. Not sure how big a group I'll have. Can you please let me know what options and at what prices you have for that one night?","2013-05-17","2013-05-18","2013-03-06"
+"Vicki","Frantz","1116 Viewpoint Drive","Lake in the Hills","IL","60156","847-854-4081","Bwwmarketing@sbcglobal.net","","","","","","","2013-03-07"
+"Gloria","Berridge","8263 St. Mark Dr.","Brooksville","FL","34601","3523973127","gloann1951@aol.com","6","8","Global Travel","Our family gets together every year for a reunion so we are looking for a big unit.  We are just starting to begin planning our 2014 vacation.","2014-07-12","2014-07-19","2013-03-08"
+"Kevin","Weaver","","","","","9897144013","kevinfweaver@gmail.com","","","","","","","2013-03-08"
+"James","Hart","1400 St. Andrews Drive","Clovis,","NM","88101","575-763-6311","jhart33@suddenlink.net","","6","","Attempting to get siblings together for vacation.  Enjoy simple fishing, pontoon boating, perhaps bike riding, pool activity and pretty accommodations .  Can you please respond with availability and price. Thank you!","2013-05-30","2013-06-04","2013-03-08"
+"Brent","Baker","101 North Milner Street","Ottumwa","IA","52501","641-777-7210","wendy_baker36@yahoo.com","6","6","","","2013-06-22","2013-06-29","2013-03-11"
+"Dawn","","","","","","","dawnkzoo@hotmail.com","","9","I am interested in accommodations for 5 adults for one night, Friday, May 17th.\r
+\r
+Please let me know if you have anything that will accommodate.","","2013-05-17","2013-05-18","2013-03-11"
+"Ann","Brooks","13609 California St","Omaha","NE","68130","402-891-6962","abrooks@aurhomes.com","","8","online","I have a medical professional coming to work at the Petosky hospital for 3 months and I am looking for housing for them.  What options would you have available?","2013-03-20","2013-06-24","2013-03-12"
+"Richard","Pincombe","1024 Griffith Street","London","ON","N6K3Y7","5196570306","pincombe_r@hotmail.com","6","6","","","2013-07-11","2013-07-14","2013-03-15"
+"Terri","Nelson","8888elonglakedrive","Scotts","MI","49088","2693239507","Tnelson@dataconstructs.com","","","","","","","2013-03-13"
+"","","","","","","","baneill295@yahoo.com","","","","","","","2013-03-14"
+"Rick","Cojocari","","","","","519 969-5849","rcojocari@cogeco.ca","","","","","2013-09-13","2013-09-15","2013-03-14"
+"Frank","","","","","","248-627-5617","feb52@comcast.net","","","","","2013-09-20","2013-09-22","2013-03-16"
+"Steve","Haack","","","","","734-620-0208","haacker@outlook.com","","","","Please contact by email first. We are interested in 1 rd on Thurs, 2 on Friday, 2 on Saturday and 1 on Sunday. Interested in your accomdations, would prefer a house/condo for all but will consider others.","2013-08-08","2013-08-11","2013-03-18"
+"kevin","Cox","35163 pembroke","livonia","MI","48152","248 860 1140","bethkevcox@aol.com","2","9","","","2013-07-01","2013-07-05","2013-03-17"
+"Katie","","","","","","","kkloosterman6355@charter.net","","9","Will you have the outdoor pool open for the Easter week end?","","","","2013-03-21"
+"Tracy","Christopher","880 St. Clair Parkway","Mooretown","ON","N0N 1M0","5198622057","christophers_4@sympatico.ca","1","9","Once again we had a great stay in February.  Can't wait to come again, always planning our next vacation.  We are wanting to come just after Christmas (27th) and stay in Unit #85 if possible.  It looks like it is too early to book but wondering if you will let us know when we can book this.  Thanks so much. Tracy P.S. We would like to compliment your staff for your friendliness and helpfulness each and every stay we have had.  Kudos to you all for a great job.  Looking forward to hearing from you.","","2013-12-27","2014-01-01","2013-03-21"
+"Leslie","Robinson","","","","","586-899-0362","leslierobinsons@comcast.net","","","","","2013-08-23","2013-08-25","2013-03-23"
+"Andrea","Pulos","2445 N. Roberts Rd.","Muskegon","MI","49445","231-343-2443","drapulos@gmail.com","","9","","I am my son's soccer team manager and we are looking to go to the tournament June 15th-17. I am wondering if you have any lodging specials? We stayed there last year and we were offered specials for us. \r
+Please let me know so we can start reserving our lodging.","","","2013-03-24"
+"Monica","Edie","900 S Douglas","Mt. Pleasant","MI","48858","2485152821","edie1mt@cmich.edu","5","1","","","2013-05-12","2013-08-16","2013-03-25"
+"john","anderson","","","","","8103292617","aggie0053@yahoo.com","","","","bathroom with bedroom firepit or bring our own, grills","2013-08-24","2013-08-27","2013-03-26"
+"Robert","Herrgott","1903 Sandy Shores","Oxford","MI","48371","2488909829","robert@rherrgott.com","3","9","","Looking for a condo for a couple of days.  Are you busy over easeter?  Arriving Saturday night and leaving tuesday night.","2013-03-30","2013-04-02","2013-03-28"
+"Jan","","","","","","","newdr99@yahoo.com","","","","","2013-07-13","2013-07-17","2013-04-04"
+"scott","jensen","","","","","2623373789","scottjensen427@gmail.com","","","","","2013-08-08","2013-08-12","2013-04-02"
+"Jerry","Foster","2322 Norton Rd","Rochester hills","Michigan","48307","248-854-3960","fosterjw50@comcast.net","","9","","I need a 3 bedroom plus loft condo","2013-06-28","2013-07-01","2008-02-28"
+"Rick","Venner","","","","","","Rickvenner@gmail.com","","","","","","","2013-04-07"
+"Jenna","","","","","","","mischjen@yahoo.com","","9","","What is the largest rental you have available for Jan. 31- Feb. 3 you have available?","","","2013-12-04"
+"Dorreen","Clements","2509 sunny meadow","Mckinney","TX","75070","9728149777","dorreenclements@gmail.com","3","9","Need wi fi","","2013-08-01","2013-08-31","2012-06-19"
+"Karen","","","","","","","Kblucid@comcast.net","","","","","2013-07-07","","2013-04-09"
+"Brian","Krus","","","","","248-766-3613","krusfamily@comcast.net","","","","From a group perspective looking for individual accomodations for couples.\r
+\r
+For golf we are looking as a group for 18-36 holes on Friday and Saturday and 18 holes on Sunday.  \r
+\r
+Some may be interested in golfing the day of arrival as well on Thursday.\r
+\r
+Please let me know what you might have available to fullfil these requests.","2013-08-15","2013-08-18","2013-04-10"
+"Dennis E.","Kubit","","","","","586-929-9764","qman46@att.net","","","","Prefer 2 units with seperate bd rms for each person. 18 holes arrival date. 36 holes nxt two days. Please keep vicinity of each course in consideration for least amt of travel between ea.","2013-09-29","","2013-04-10"
+"adam","teschke","","","","","5193848375","teschke87@hotmail.com","","","","looking for an unlimited golf package stay and play. arriving the 6th night and leaving the 9th afternoon","2013-06-06","2013-06-09","2013-04-10"
+"Julie","Hultgren","","","","","313-580-2951","Jkmwines@yahoo.com","","","","","2013-07-13","2013-07-20","2013-04-11"
+"Gary","England","","","","","519-280-2828","andreaandgary@rogers.com","","","","I have put in 2 separate requests for similar package quote at Big Fore website and have not received any response to date.\r
+\r
+Your assistance is appreciated.\r
+\r
+Gary","2013-07-05","2013-07-07","2013-04-21"
+"Radha","Vemuri","","","","","706-467-3783","vemuri48@yahoo.com","","","","","2013-08-17","2013-08-21","2013-06-20"
+"Bridget","Smith","1606 W. Troy","Ferndale","MI","48220","248-808-7439","bridgetsmithma@gmail.com","6","2","We are looking for 1, possibly 2 condo's for that weekend.  We are a nonprofit out of Royal Oak.  We hope to have around 20 guests.  We would probably start with 2 and cut one if need be.  Unless perhaps have a large Lodge?  Since we are a nonprofit we are on a limited budget.","","2013-08-16","2013-08-18","2013-04-12"
+"tom","katofiasc","","","","","248-798-1522","tomkato@charter.net","","","","little traverse sat morning and chestnut valley in afternoon then Hidden River on Sunday. Looking for 2 br condo","2013-08-16","2013-08-18","2013-04-18"
+"Christine","Kafka","214 ezra avenue","santa rosa","CA","95401","707-570-2429","chstagnaro@sbcglobal.net","","6","Hello, We are planning a family reunion and your resort looks like we might fit there.  \r
+Can you please send me information about rentals for July/August of 2014.  \r
+We would stay anywhere from 4 nights to 7 nights.  There are about 50 of us and I'm thinking we would need anywhere from 8-12 condo's.  I am also interested in what the daily charge would be for you community room for that time as well.  Thank you for any information you can send me.  How far are you from the lake? \r
+Chris","","2014-07-21","2014-08-08","2013-04-20"
+"Candice","Onodi","","","MI","","","candiceonodi@yahoo.com","5","4","","Hello - I recently used your online reservations to set up a stay for Memorial Weekend. Although I received a conformation pop-up after I clicked reserve, I didn't get a conformation email with details. I booked the holiday weekend (Friday through Monday) in condo #61. I just wanted to make sure everything is good to go and that we for sure have a place to stay when we get there!\r
+\r
+Thank you!\r
+Candice","2013-05-24","2013-05-27","2013-04-22"
+"Lisa","Yamin","","","","","","Lisa.yamin@gm.com","","","","Would like ground floor condo in the wooded area","2013-06-27","2013-07-06","2013-04-23"
+"Adelina","","","","","","","adelinairvine@cogeco.ca","","8","Could i please have the contact name and number of the person responsible for your advertising","","","","2013-04-23"
+"Matt","","","","","","","mjmalone@umich.edu","","","","Group of 8 guys looking for a golf package. Want to stay Thursday, Friday, Saturday night with two rounds of 18 holes on Friday and Saturday, and one round of 18 on Sunday.","2013-07-25","2013-07-28","2013-02-19"
+"Joshua","Teno","","","","","5862129351","jteno2155@yahoo.com","","","","two rounds a day is wanted to play","2013-07-25","2013-07-28","2013-04-24"
+"Lori","Page","","","","","","loripage1@hotmail.com","5","9","","Hello from Ohio,\r
+\r
+Hope spring is comimg your way soon. We had a little snow yesterday ...ugh !! I have a question, as a family we will be staying at the ex-Sharon Case home on July 6th. Dave and I are thinking about coming up several days prior to the 6th. just wondering if there is any kind of special for that time of year, looks like most of your specials end at the end of June. Dates are only for July 3rd and departing on the 6th, I know, your busiest time of summer. I guess it never hurts to ask. Looking forward to your response. Thanks, and have a nice day.","2013-07-03","2013-07-06","2007-08-31"
+"Jennifer","Bailey","4421 West Giles Road","Muskegon","MI","49445","231-744-2362","jlboo02@yahoo.com","1","4","Recommended by soccer team for Petoskey Tournament.","We heard there is an offer buy two nights and get the third free for this weekend.  We are available on the home line after 5:00 pm and on cell 269-209-1585 anytime.","2013-06-14","2013-06-17","2013-04-28"
+"David","Scott","","","IN","","","dscott304@comcast.net","","","","","","","2013-05-01"
+"Lisa","Regis","","","","","","lisaetjohn@me.com","","","","","","","2013-05-03"
+"Donna","Van Dam","2464 Kimberly fair Street","Rochester Hills,","MI","48309","248-375-2486","dvd31906@yahoo.com","","","","","","","2011-09-12"
+"Hank","","","","","","","hank_runyan@carletonpolice.us","","","","","2014-07-13","2014-07-17","2013-05-07"
+"David","Blain","P.O. Box 510741","Livonia","MI","48151","519-967-1094","djblain@cogeco.ca","","9","When we check availability for 3 bedroom + Loft, we are not finding anything.  Can you let us know what the availability is for near to this time frame, 7 adults, 2 teens, 2 children.  We really want to book for the weekend of 8/3 for the antique fair at the fairgrounds.  please contact me asap.  i have other family members who want to rent separte condos as well during the same time frame.","","2013-07-31","2013-08-04","2007-01-20"
+"Peter","Ecklund","","","","","313-885-4769","ecklundp@comcast.net","","","","Chris,\r
+We were at TC last year and enjoyed our stay.\r
+Would like a condo with three bedrooms and at least 2 baths  (3 is better.  Golf on Mon, Tues and Wed.","2013-07-07","2013-07-09","2013-05-17"
+"nancy","cohrs","","","","","517-930-7068","nancycohrs@wowway.com","","","","","2013-07-27","2013-07-30","2013-05-19"
+"Cheryl","Schell","106 Pickett Drive","Wilmore","KY","40390","8595366207","c.schell@roadrunner.com","","6","","We have reservations July 24-28.  Can you tell me which unit we are in?  Thanks.","","","2013-02-28"
+"Jade","Edwards","","","","","(810) 275-8330","attorneyjadeedwards@gmail.com","","","","Looking to rent one of the 5 bedroom condos for that weekend. Right now we have 6 people but are guessing we will get a couple more.","2013-09-20","2013-09-22","2013-05-19"
+"Geoff","Gilbert","N7455 Hwy 44","Pardeeville","WI","53954","608-429-2984","gilbert14@frontier.com","","8","","I have lost our conformation number for our stay on Aug 16 & 17 could you please email me a copy?\r
+\r
+Thanks,\r
+\r
+Geoffrey Gilbert","","","2013-07-24"
+"Lisa","Olsen","4330 Sourwood Drive","Dayton","OH","45424","937-681-9086","cruisingmama2@yahoo.com","","6","Would you please send/email any information pertaining to family reunions? Tere would be approximately 70-80people. Thank you!","Do you have price lists with any break downs or group rates and also printed material for rooms? Thanks again!","","","2013-05-20"
+"Rudy","Hernandez","4608 Tacoma Blvd.","Okemos","MI","48864","(517) 349-2583","hernandez.rudy.g@gmail.com","","9","","Hello, My wife and I are very seriously considering purchasing a midsized unit, or perhaps even two smaller units.  We are currently have been in contact with a local realtor (Sue Schwaderer) with whom we plan to set up a showing in the near future.  Could you provide us with any info regarding the services that the assoc. fees cover? Thank you, Rudy & Maggie Hernandez","","","2013-05-22"
+"","","","","","","","dg+troutcreek@davegreenhut.com","","","","","","","2013-05-28"
+"Mary","Deegan","33784 colony Park dr","Farmington hills","MI","48331","313-402-9009","mdeegan123@sbcglobal.net","1","9","","","2013-06-28","2013-07-08","2009-06-16"
+"David","Grant","","","","","248-353-2860","dbgran@ameritech.net","","","","","2013-06-29","2013-07-06","2013-06-05"
+"Dan","Pickens","","","","","309-263-1048","dpjpkns4@yahoo.com","","","","","2013-07-09","2013-07-15","2013-06-05"
+"Jon","Nies","","","","","","jnies@ecsteam.com","","8","Hi Guys,\r
+\r
+Jon Nies here, I am Ray Nies' son.  As usual, I will be arriving for the annual trip one day earlier than the group.  Please provide access to me one day earlier. I will be arriving on June 18th.  You have charged me $100 for the night and left a key in the lock box.  Please remind me of the lock box number.\r
+\r
+Thanks!\r
+\r
+Jon\r
+303-523-8199","","","","2013-06-06"
+"Julie","","","","","","","rubberneckinlife@gmail.com","","8","Pure Michigan","","","","2013-06-07"
+"Valerie","Taccolini","1631 Sheffield Dr","Ypsilanti","MI","48198","7344845047","valerietacc@gmail.com","","8","Global Discovery Vacations","We had a disappointing experience at Trout Creek this past week.  We booked a condo through Global Discovery Vacations for my family to celebrate my 50th birthday together.  We found the condo not thoroughly cleaned (cobwebs behind doors, food on a cheese grater, top of fridge and top of stove dirty).  We saw a notice indicating that the pool towels belonged to the condo, but found none.  The large pull-out couch in the living room was broken, and could not be fully opened, therefore unusable.  Upon speaking with the office, we were told that because we had booked through Global, they could not assist us.  So 2 family members had to sleep on the floor, and we were washing bath towels every day to have enough to use at the pool as well.  It wasn't quite the week I had envisioned for a special celebration.","","","2013-06-08"
+"Terry","Booth","5884 Pinewood Court","Canton","MI","48187","","Terrybooth6@aol.com","6","9","We are interested in Unit #1","","2013-08-30","2013-09-02","2013-06-08"
+"elio","canessa","","","","","2898120714","ecanessa@cogeco.ca","","","","","2013-07-19","2013-07-28","2013-06-11"
+"Demetrios","Anastasiow","","","","","248-939-3540","demetriosanastasiow@gmail.com","","","","","2013-07-18","2013-07-21","2013-06-14"
+"Rose","Hepner","3595 Hein Drive","Sterling Heights","MI","48310","(586)215-9438","tweethep@comcast.net","","","","","","","2013-06-14"
+"Bill","","","","","","","kmisch@columbus.rr.com","","","","","2013-09-10","2013-09-14","2013-06-16"
+"gordy","halmhuber","3434 Tothill","Troy","MI","48084","2487702908","gphuber@comcast.net","6","9","","","2013-09-05","2013-08-08","2006-09-25"
+"Amber","Plaster","","","","","6167260354","lanningamber@yahoo.com","","","","Looking to do a trip for our 1yr anniversary and my hisband loves to golf.","2013-07-12","2013-07-14","2013-06-18"
+"elaine","mahrle","","","","","248 219-9919","emahrle@hotmail.com","","","","","2013-08-08","2013-08-12","2007-11-20"
+"Debbie","Hardcastle","","","","","734-604-9531","hardcastle725@gmail.com","","","","","2013-07-12","2013-07-20","2013-06-17"
+"Irene","Noestheden","343 Centennial Drive","Tecumseh","ON","N8N 2P1","5197356130","icnoes@sympatico.ca","","4","I already have reservations for the above dates ... I am with the " JUDY HAWKINS " group from Windsor Ontario Canada ... I would appreciate it if someone could send me the names our package has booked ... I have tried to contact Judy but so far I have not gotten a response ... I would appreciate it if someone could send me the names of the course we are golfing on ...  I look forward to your reply ... Thank-you, Irene.","Just in case you did not receive my question in the previous box I shall quickly ask again ... I need the names of the golf courses we are playing on ... Thank-you for your quick response ... Irene","2013-06-19","2013-06-23","2013-06-16"
+"Ann","Hekhuis","","","","","630-527-0651","ahekhuis@wideopenwest.com","","","","only need 3 rounds of golf","2013-08-02","2013-08-10","2008-10-27"
+"william","valevich","","","","","5718819847","wjvmov@att.net","","","","","2013-06-21","2013-06-23","2013-06-17"
+"Tari","Dygert","44612 Larchwood Dr","Northville","MI","48168","2484497718","tldygert@att.net","","9","I requested information to send our group (soccer team) this morning.  I was wondering if maybe you had the wrong email?  We are interested in the weekend of Sep 7 and 8 which is when our tournament is.","","2013-09-06","2013-09-08","2013-06-20"
+"Rachelle","Houde Simard","","","","","514-944-6363","rachelle.houde@gmail.com","","4","","Hi, \r
+My family will be arriving with the Robert & Laurie Ross group on June 29th with a 7 month old baby and we would like to know if the condos are equipped with high chairs and cribs or if they need to be requested? Since we will be traveling from Montreal, Canada on the 27th, I need to ensure we make proper arrangements if otherwise. \r
+\r
+Thank you very much, you may contact us by phone if preferred: \r
+514-944-6363","","","2013-06-24"
+"Prasath","Balakrishnan","","","","","","prasath.bkn@gmail.com","","9","","I booked a 3 night stay using the online reservation tool from July 4th through the 6th. However, due to some unexpected circumstances I needed to cancel the 3rd night stay. I called the 1-800# and was told that there was a 3 night stay minimum. The reservation page does not mention this. Apparently, this only shows up when I try to book anything less than a 3 night stay. Given that I originally booked a 3 night stay and want to cancel one night there is no way for me to know this policy. Even the confirmation email that was sent doesn't mention anything about it. I have been a past guest with Trout creek on many occasions, and have always chosen it over a lot of other competing offers, but I am sad to say that this might be the last time I will be staying with you guys. Also, please remove me from your mailing lists.\r
+\r
+Prasath Balakrishnan\r
+(248) 890-2128","","","2013-06-26"
+"nadiya","sabat","31642 hoover rd","warren","MI","48093","428-420-0225","nadiuha82@mail.ru","5","4","","","2013-07-04","2013-07-07","2013-06-24"
+"Linda","Haffey","","","MI","","","linda.haffey@gmail.com","","6","","Hi, we are scheduled to bring our family gathering to your resort Aug 15-18 and I was wondering if you can refer me to a local caterer or restaurant that will cater for our Saturday evening dinner in your meeting room.\r
+\r
+Thanks!\r
+Linda Haffey","","","2013-06-26"
+"Kirk","Olson","643 Sorel Dr.","Canton","MI","48188","7343061052","kirklolson@msn.com","","","","","","","2013-06-26"
+"Darlene","Roper","12055 Canterbury Ct.","Marne","MI","49435","616-677-0179","roperd@gvsu.edu","6","6","Do you allow small dogs?","","2014-07-12","2014-07-15","2013-07-03"
+"Margaret","","","","","","","smithpeg@me.com","3","6","","","2013-10-15","2013-10-18","2013-07-03"
+"linda","","","","","","","chuck@ameritech.net","","","","","2013-08-05","2013-08-09","2013-07-03"
+"Lucy","Maillette","2418 Indian Hills Drive","Okemos","MI","48864","517-381-0244","infolm@aol.com","","","","","","","2013-07-03"
+"Sally","Hauschild","324 Osage Lane","Naperville","IL","60540","630-717-9551","Ghauschild@sbcglobal.net","","","","","","","2013-07-03"
+"Sally","Hauschild","324 Osage Lane","Naperville","IL","60540","630-717-9551","ghauschild@sbcglobal.net","","","","","","","2013-07-03"
+"Mike","Rempala","","","","","","mrrdtrip7@aol.com","","8","where on your  web site  do  i  get to  learn  the  prices  of  accomidations???","","","","2013-07-03"
+"william","","","","","","","ctruesr@indy.rr.com","","","","","2013-07-22","2013-07-24","2013-07-04"
+"Amber","Lowe","1351 Blue Pine Way","Howell","MI","48843","8105993393","krajicekamber@yahoo.com","","","","","","","2013-07-05"
+"Annette","Myslinski","19802 Holiday Rd.","Grosse Pointe Woods","MI","48236","313-549-3036","amyslin49@aol.com","","4","I am looking to purchase a condo in the area.  I have seen several listings in a local real estate book but was hoping you sent emails that you may handle yourself.","","2013-01-01","2013-12-31","2012-08-29"
+"James","dawson","","","MI","","","dawsonjm@comcast.net","5","9","","","2013-08-30","2013-09-02","2005-08-29"
+"Eric","Nattress","","","","","2896560374","ric@nat6enterprises.com","","","","","2013-07-10","2013-07-14","2013-07-05"
+"Linda","Mose","3160 Hidden Timber Dr","Lake Orion","MI","48359","248-977-4062","lindamoses36@yahoo.com","","8","Pure Michigan","Are you pet friendly?","","","2013-07-06"
+"Jj","","","","","","","jirenej4j@hotmail.com","","8","magazine","Do you allow small pets?  We have a 5 lb. Yorkie we travel with.","","","2013-07-06"
+"Keith","","","","","","","keith.michelle.redder@gmail.com","","8","Real estate for sale","Hi, I was wondering if you have association for homeowners in the area, we are looking at one on Realtor.com-unit 167.  I was wondering about the by-laws and monthly dues are?  Tried finding info online, however ended up not finding anything.  Thank you.","","","2013-07-06"
+"Thomas","Henderson","2297 spring lake","brighton","MI","","","e03061@att.net","4","9","I am interested in "packages" with golf/lodging.   Would be in August - check in on a Friday and out of Monday - what can you tell me - 4 people.","","","","2013-07-25"
+"Kyle","Sanderson","543 S 430 E","Pleasant Grove","UT","84062","8014046916","squishysandee@gmail.com","2","8","Global Discovery Vacations","First I wanted to confirm our reservation with you for the dates above.  We booked our vacation with you through Global Discovery Vacations and it says we will be in unit #41 2bd/2ba.  I wanted to just check if it is at all possible (if you have available) to upgrade to a 3 Bd/2 ba unit?  If so, how much additional would that cost?  Would we get it cheaper if we checked for that when we arrive next Saturday?  Also, would it be ok to have something shipped to your location and held for me if it arrives before we do?  Do you possibly have any Fans you could leave for us in our room?  We would need 2. \r
+Thank you so much.\r
+-Trisha Sanderson","2013-07-13","2013-07-20","2013-07-06"
+"James","Cole","4505 Hersman S.E","Grand Rapids","MI","49546","616 957 4493","jmshuz@comcast.net","","","","","","","2013-07-07"
+"Doreen","Webber","1280 Beachland Blvd","Waterford","MI","48328","248-2273595","doreen.webber@gmail.com","","4","","","2013-07-26","2013-07-29","2013-07-07"
+"Joseph","Wilberding","","","","","248-250-4835","j.wilberding@yahoo.com","","","","","2013-08-09","2013-08-11","2013-07-08"
+"christa","chapman","","","","","2699626255","christa@ermischtravel.com","","","","looking for 2 rooms for 2 couples for 8/10 2 nights. we do want to include 18 holes of golf for 3 of the 4.\r
+we are very flexible with which course. we are looking for a good deal please.","2013-08-10","2013-08-12","2013-07-10"
+"Cheryl","Bolling","","","OH","45036","","cherylb@newmangasket.com","","6","Hi. I was just verifying or confirming our reservations for July 21st and leaving July 26th for condo #08.   Thanks. Cheryl","","","","2013-07-11"
+"Donna","Gabriel","","","","","","donnagabriel591@gmail.com","","6","","We can increase rankings of your website in search engines. Please reply back for more details.","","","2013-07-12"
+"Barry","","","","","","","bcwiz@chartermi.net","","","","Are there paved biking trails near by?","2013-09-19","2013-09-22","2013-07-12"
+"Daryl","Thomas","","","","","2488426054","dt0671@gmail.com","","","","","2013-08-16","2013-08-18","2013-07-13"
+"Ross","Voelker","1700 Mertz Rd","Caro","MI","48723","989-673-7919","fran1700@hotmail.com","6","6","We would also be able to do the 3 bedroom unit.  We have 8 adults,and one infant","We also would like swimming pool.","2013-08-09","2013-08-11","2013-07-12"
+"Daniel","Kever","","","","","517 765-2325","beefbetty@yahoo.com","","","","We would like a condo close to the pool if possible. We would like to play the Little Traveres Bay course for sure but other than that our second choice doesn't matter, we would like a course that is pretty and unique.  We would arrive late morning so our tee time for Friday would have to be mid afternoon or so.\r
+Thank you","2013-08-15","2013-08-18","2013-07-17"
+"Julie","Schrebe","","","","","","jschrebe@glcommunitydirectories.com","","","","Interested in a great golf package for a group of 8.","2013-08-24","2013-08-25","2013-07-18"
+"Monica","Boote","5909 hayrake hollow","Chelsea","MI","48118","734 891 1202","Bootem@ewashtenaw.org","4","9","We are coming with the Adrenaline softball group and wondered if there is any availability.....I have entered the key dates but would be interested in adding the Wednesday prior depending on availability.  I entered the 2 bed...but would be interested in hearing about any option that may be available.\r
+\r
+Thank you in advance.","","2013-08-01","2013-08-04","2013-07-14"
+"Eleni","Tsaprailis","7166 Cathedral","Bloomfield Hills","MI","48301","248-406-5045","etsapraili@att.net","3","8","We have stayed here before, loved unit 79 if possible.","","2013-07-21","2013-07-22","2013-07-16"
+"Lori","","","","","","","Lori.tepastte@gmail.com","","","","I am interested in a stay and play package.  Thank you.","2013-08-30","2013-09-02","2013-08-28"
+"steve","","","","","","","stephen.summers@shaw.ca","","","","do u have a shuttle to golf courses","2013-09-18","2013-09-20","2013-07-20"
+"Yvonne","Cherry","","","","","","Sonnycherry@mac.com","","","","","2013-08-18","2013-08-22","2013-07-20"
+"janet","koszycki","823 carpenter rd","loveland","OH","45140","513-331-9545","fabfloorcloths@aol.com","","","","","","","2013-07-22"
+"Suzanne","Eisenbeis","11259 Tyrone Trail","Fenton","MI","48430","8108750107","seisenbeis@pglr.com","","8",".","I have a reservation for one of your condos from July 31st thru August 4th but I can't find the confirmation information - could you please email it to me.\r
+\r
+Thanks much,\r
+Suzanne Eisenbeis\r
+seisenbeis@pglr.com","","","2013-07-22"
+"Pam","","","","","","","pamela.rose@gm.com","","6","Want to know any prices on room specials for July 29 (3-4 nights)","","","","2013-07-24"
+"James","Maycunich","","","","","870-405-9675","jim@stl-tags.com","","","","","2013-08-15","2013-08-22","2013-07-24"
+"Jessica","Robinson","","","","","586-436-3742","jessicar@oclrx.com","","4","","Would you be able to send me an email me confirming a reservation for Unit 65 (Mahoney/Risher), by owner. For dates 8/23-8/26/13. Thank you!!!","","","2013-07-26"
+"Tracy","Jezewski","4197 S. Paul Circle","Bay City","MI","48706","","tjjezewski@att.net","","","","","","","2013-07-28"
+"Andrew","Harbison","11665 Glen Mary Dr","Byron","PA","48418","7175996117","aharbison2004@yahoo.com","5","8","Next year my wife and I will celebrating our five year anniversary.  We spent our honeymoon at trout creek and I would like to surprise her for our five year.  We really enjoyed our stay there even though there was a fan running all week as the place flooded before we got there.  It was still great though and we still cherish the picture that we have the morning after we married while eating breakfast is your breakfast nook.","","2014-08-29","2014-08-31","2009-11-11"
+"Elsa","Turk","","","","","","Reedet1@yahoo.com","","","","","","","2013-07-30"
+"Ed","Kristofik","","","","","","kristofik@email.com","","","","","2013-09-12","2015-09-15","2005-08-30"
+"David","Daniels","","","","","269-377-1301","ddaniels@dowagiacschools.org","","","","","2013-09-10","2013-09-15","2008-10-27"
+"Jim","Karolyi","","","","","","jkarolyi241114mi@comcast.net","6","8","Friend","Hello\r
+\r
+We are planning a vacation for our family to celebrate our 50th wedding anniversary next July or August.\r
+\r
+We would be in the area this August 11th or 12th.\r
+\r
+Would a staff associate be available to show us your property?\r
+\r
+Jim and Jill Karolyi\r
+\r
+734 641 0894","","","2013-08-02"
+"renia","carrier","","","","","2312391473","rtpcarrier4@att.net","","","","","2013-08-07","2013-08-10","2013-08-06"
+"Linda","Rainville","","","","","705-849-9449","lindarainville@persona.ca","","","","I am interested in speaking with a rep regarding our next years golf event.  It will be our 25th year coming to Gaylord area, and we are interested in speaking with you to see what kind of pricing we can get, and what courses you would recommend.  You may call me at the above phone number, however, I will not be home until Friday (so you can call anytime after that).  Thank you. Linda Rainville","2014-07-20","2014-07-23","2013-08-08"
+"Jim","Bult","","","","","269-760-7497","jbult@superior-colour.com","","","","Looking for package pricing for 6-8 guys for the last weekend in September. Arriving Friday evening, Sept 27 and depart Tuesday morning, Oct 1. Would like 36 holes on Sat, Sun & Mon.","2013-09-27","2013-10-01","2013-08-08"
+"Connie","Gates","1550 Michelson Drive","Grayling","MI","49738","9893488249","akpgates@gmail.com","","","","","","","2013-08-10"
+"Lawrence","Bresnahan","","","","","7059235509","Bresnahan.roy@hotmail.com","","","","Looking for reasonably prices golf package. Dates are flexible within 2 days","2013-08-26","2013-08-29","2013-08-12"
+"JUlie","Harris","","","MI","","","Jules65@wowway.com","6","4","Also interested in pricing individual condos\r
+3 units. each with 2 bedroom/1 bath\r
+\r
+Thank you\r
+Julie","","2013-12-29","2014-01-01","2013-08-14"
+"Al","Larrabee","","","","","3133206022","larrabee_23@yahoo.com","","","","","2014-06-26","2014-06-29","2014-01-17"
+"Dan","Shaw","","","","","248-685-3803","dashaw42@gmail.com","","","","Also would like info on your other condo complex that starts with an H","2013-09-08","2013-09-13","2013-08-22"
+"Jody","Wesley","","","","","","jjwesley@comcast.net","","9","I made a reservation for 8-23 to 8-25, cant find my confirmation.  Can you send it to me again.  Thanks!!!","","","","2006-09-25"
+"mike","","","","","","","mikebloom22@cogeco.ca","","","","We are looking at the two condos number 1 and 2 the five bedroom ones. As for course are they close or long drives? Also do you offer meals and unlimited golf. Thanks for any and all info.. Mike","2014-06-05","2014-06-08","2013-08-22"
+"TRACEY","ANTONIADES","7062 Ravens Run","Cincinnati","OH","45244","513 235-5063","traceyantoniades@gmail.com","6","6","Hi Debbie\r
+I will call you later to day to confirm our reservation for Unit 1\r
+Thanks,\r
+Tracey Antoiades","","2013-12-27","2013-12-31","2013-08-23"
+"Brett","Filcek","","","","","","brett.filcek@dana.com","","","","","2013-09-22","","2013-08-23"
+"Melissa","","","","","","","m1496adams@gmail.com","","6","I have perused your website and see no information regarding rates.  I am looking to accommodate 90-100 people during the last week of July/first week of August of 2014.","","","","2013-08-24"
+"Richard","Parker","","","","","519-895-0030","cdparker@rogers.com","","","","would like to play Little Traverse Bay Sept.25th, and Black Lake September 26th unless it is more than 30 miles away. If it is replace it with Bay Harbor for 26th.","2013-09-24","2013-09-27","2013-07-16"
+"Bob","FitzSimmons","","","IN","46514","","bfitzsimmons@gulfstreamcoach.com","5","9","I believe you have a 3 night min. stay during your summer season. When does your 2 night min. start?","","","","2013-08-27"
+"Kris","Sweiringa","","","","","","krisswieringa@gmail.com","","","","","2014-05-16","2014-05-18","2014-01-14"
+"Michele","Jeffery","410 Depot St.","Monroe","MI","48161","7346783142","925mmj@gmail.com","","8","Zoo De Mac website.","My reservation code is 91663, I am registered for the following package:\r
+        2 Bedroom, 2 bath Loft Condo for 6 - $147.00 per person \r
+        (Based on 6 person occupancy if booked before 9/17)\r
+        Includes 2 nights in a fully furnished 2 bedroom/2bathroom LOFT condo with Jacuzzi tub and \r
+        fireplace.  Rate includes BOTH nights (9/20 & 9/21) and includes all taxes and fees at \r
+        Trout Creek PLUS Your Fall Frenzy Wristband to all events, Bike Registration, and Box Lunch.\r
+\r
+How do I register all my guests for the Wristbands and Bike Registration?\r
+\r
+Michele Jeffery","","","2013-08-28"
+"Peggy","Kruczynski","14439 E Grand Lake Rd","Presque Isle","MI","49777","989-595-6415","peggy_k@hotmail.com","6","4","Just wanted to say our stay was the BEST we had a blast with our Girls Week-end away....the staff was so helpful...Deb,Tracie,Chris,Shari were so accommadating!!!!We will be back...Thank you we will be back!!!!!","","","","2013-08-29"
+"Donald","Duchesne","","","","","734-479-1236","DUCH07@aol.com","","","","We enjoyed our stay in 2010. Thought we come back to Trout Creek again. Can you set up a golf pkg. to play the 4 courses at Boyne Highlands + 9holes at Chestnut Valley? Total cost? June 12,13,14,15 2014. 3 nites, 16 golfers.","2014-06-12","2014-06-15","2013-08-29"
+"Michael","O'Neill","","","","","","m.oneill10@yahoo.com","","9","","Dear Sir or Ma'am,\r
+\r
+First of all I would like to mention that I have stayed at your resort several times in the past and have thoroughly enjoyed every minute of it. Every aspect of your resort has been excellent. Due to this satisfaction, my fiance and I are considering booking a condo for our honeymoon.\r
+\r
+However, I just had two quick questions before we make our decision. The first is just simply if you have any special packages for honeymoons or not, and if so what that might be. The second is if your company has any sort of military discount.\r
+\r
+Thank you very much and I look forward to hearing from you.!\r
+\r
+Best regards,\r
+\r
+Mike O'Neill\r
+m.oneill10@yahoo.com","","","2013-09-02"
+"Tammy","Belanger","2988 Stone Meadow Dr.","Milford","MI","48380","2487890940","tlbblossom@hotmail.com","6","9","","","2014-12-27","2014-12-30","2013-09-04"
+"Monica","Capers","24974 Chalk Farm Road","Warren","MI","48091","3138062254","bellm@karmanos.org","1","6","","","2013-09-03","2013-08-10","2013-09-03"
+"Patrick","Burns","","","","","419 726 6866","pjburns@bex.net","","","","","2013-09-23","2013-09-25","2013-09-03"
+"Daniel","Engelhardt","4308 Winterwood","Saginaw","MI","48603","9892251786","dan.engelhardt@siionline.com","5","6","","ON a motorcydle tour of upper Michigan, looking for a 3 day retreat","2013-10-11","2013-10-13","2013-09-05"
+"Debbie","Robertson","","","TX","","","debbie.robertson@childrens.com","5","2","","We are an older couple and we will be on our honeymoon. We are interested in finding out about your packages that would best suite our needs.\r
+Thanks!","2013-10-10","2013-10-11","2013-09-05"
+"Allen","","","","","","","acush47@comcast.net","","","","","2013-09-17","2013-09-19","2013-09-05"
+"Mary","Patterson","","","","","8106556695","mary5120@comcast.net","","6","Pure Michigan","Do you accept pets?","","","2013-09-05"
+"Tracey","Shepherd","12900 Hall Road, Suite 300","Sterling Heights","MI","48313","5862540200","tshepherd@mikesmithlaw.com","","","","","","","2013-09-06"
+"Mark","","","","FL","","","newf130@gmail.com","","9","","I am looking for the management company name  that runs the condo association for Trout Creek.  If you could help out that would be great.  Thanks","","","2013-09-09"
+"donald","","","","","","","donpat@ameritech.net","","","","noon tee off prefered","2013-09-13","2013-09-15","2013-09-10"
+"Rod","Filcek","5340 Brandy Lane","Sylvania","OH","43560","419-345-0262","rod.filcek@dana.com","","","","9/13 - Bay Harbor Links/Quarry at around 1:30 pm, 9/14 - Little Traverse Bay at 8:30 am, 9/15 - Black Lake at 10:00 am","2013-09-16","2013-09-18","2010-05-31"
+"Steve","Wolf","","","","","347 525 7015","steve.wolf@outlook.com","","","","Please let me know the pricing options for a round of golf each day & a condo for 4 people over that duration of time. Thank you!","2013-10-23","2013-10-27","2013-09-11"
+"Louise","","1420 Monck ave","LaSalle","ON","N9J 3P5","","louisearpin@me.com","4","6","","Looking for yor best price. \r
+Thank you in advance.","2013-10-10","2013-10-13","2013-09-15"
+"Ryan","Wrobleski","","","","","2482240114","ryan.wrobleski@pnc.com","","","","I am looking for a golf/lodging quote for a group of 20 golfers on the dates noted above. 4 rounds of golf (TH-18, FR-18, SAT-36). Please contact me using information herein to discuss details.","2014-09-11","2014-09-14","2013-09-17"
+"Bonnie","Koenig","730 Boutell Dr","Grand Blanc","MI","48439","8106945017","bbkoenig@gmail.com","","","","","","","2013-09-18"
+"Laurie","Carter","","","","","","lauriecarter33@att.net","","","","","","","2012-03-19"
+"","","","","","","","Mcconnell46788@frontier.com","","","","","","","2013-09-25"
+"jill","liley","","","","","","jmliley@comcast.net","4","6","I am interested in availablity of unit 49 in November. Please advise dates and cost. Thanks!","","2014-11-08","2014-11-10","2009-06-04"
+"Marvin","Sayles","","","","","586-977-7366","pokermarv@sbcglobal.net","","","","Not sure of dates---just a general idea.","2013-10-10","2013-10-15","2013-09-27"
+"Pat","Sommerfeld","112 Arizona Rd","Alpean","MI","49707","9896575859","wsomm@i2k.net","2","9","","Hey Chris,\r
+Hi and hope you are doing well. I am just looking ahead at some possibilities for my immediate family and possibly other family members to get their own condos for a weekend this winter. I see right now that you have condos that I favor for 591.71 for 3 nites verses 1009.05 for the winter months. Do you have any winter specials for 2014 yet? I really like condo #112 as a first choice, condo # 119 as a second choice and condo #70 as a third choice if I accomidate for my immediate family. \r
+We could also see 2-3 more condos for other family memebers join us unless they group together into a larger unit. If all join us we could have as many as 30-35 of us if all choose to participate in this outing. Can you tell me if you have any super specials for the winter? Thanks, Take Care, Pat Sommerfeld","2014-01-17","2014-01-19","2013-09-25"
+"Melodee","Willson","5600 N. Williamston Road","Williamston","MI","48895","","melodeewillson@gmail.com","","","","","","","2013-09-30"
+"joan","schearer","1887 banbury","Birmingham","MI","48009","2487232766","jss20@aol.com","","","","","","","2013-10-01"
+"Linda","Lupi","4015 Auburn Drive","Royal Oak","MI","48073","2485491075","lupil@wowway.com","1","4","We will have 3 vehicles---one will have a trailer with 2 snowmobiles. What are the rules for snowmobile use and vehicle/trailer parking please.","","2014-02-06","2014-02-09","2013-12-19"
+"Sherrie","English","5644 Roundhill Road","Bloomfield Hills","MI","48301","248-258-4917","s1english@aol.com","","8","I made a reservation online today and neglected to print my confirmation. Would you please email a confirmation for my above dates?\r
+\r
+Thanks so much,\r
+Sherrie English","","2013-10-31","2013-11-03","2013-10-04"
+"Jessica","Walker","","","","","","Jwalker43130@yahoo.com","","","","","","","2013-10-04"
+"Jenny","Palomba","8256 Farnum Circle","Warren","MI","48093","","jen026@yahoo.com","","","","","","","2013-10-06"
+"Kelley","Golich","1593 Gleneagles","Highland","MI","48357","248-889-2593","kelleygolich@comcast.net","","9","","I am looking for 2 units next to each other preferably for these dates, can you let me know if you have any available and what are the rates?  Also, I know it depends on the weather but has the ski resort been open over Thanksgiving in prior years?","2013-11-27","2013-11-30","2010-11-10"
+"Melissa","Lovell","3535 Kipling Circle","Howell","MI","48843","8105990238","mlove121@gmail.com","6","9","We stayed at Trout for last year's Zoo de Mack.","I am not 100% sure of the exact dates as of this time, but was just wondering if we brought more people this year, perhaps the larger condo would be a good fit.  Could you give me an estimate of what the daily charge would be for either (or both) of  the larger units during the Zoo de Mack weekend?  \r
+As a matter of fact, a list of the costs for each unit might be helpful in our planning. Thank you.","2014-05-17","2014-05-19","2013-10-13"
+"Jason","Siegert","1505 Hubert Rd","Hubbard Lake","MI","49747","989-727-3842","northstarep1@yahoo.com","","6","","I am inquiring on whether you hire a professional security firm for your condominiums or resort, and if so, how may I place a bid in.\r
+                          Thank You\r
+                        Jason Siegert\r
+                NorthStar Executive Protection\r
+                       1505 Hubert Rd\r
+                  Hubbard Lake, Mi 49747","","","2013-10-15"
+"Donna Gabriel","","","","","","","dnngabriel@gmail.com","","6","","We can increase rankings of your website in search engines. Please reply back for more details.","","","2013-10-24"
+"steven","smith","","","","","239 596-2999","ssmith@lesmith.com","","","","We stayed with you about 3 years ago on our annual golf trip.  All eight men want to play the above course PLUS True North. Would like to know the availability.  Trip dates might change a little as we plan.","2014-07-20","2014-07-23","2013-10-24"
+"Paula","Maas","1904 Goldeneye Dr","Holland","MI","49424","6163993662","pmaas1011@gmail.com","6","6","","","2014-02-16","2014-02-18","2013-10-28"
+"linda","culbertson","13323 shire rd","wolverine","MI","49799","231-525-9104","culbertsonli@hotmail.com","","8","I may be interested in purchasing one of your 2 bed 2 bath condos. Can you give me a break down of what HOA fees covers and a ball park idea of what utilites run per month? Thank you for your help. Linda Culbertson","","","","2013-11-03"
+"Tyler","McCarty","1050 Bay View Rd","Petoskey","MI","49770","2318386048","tmccarty@kilwinsfranchise.com","5","8","","I just moved back to the area and was wondering if you do long term rentals on your condo's?","","","2013-11-04"
+"Susie","Steinour","3360 w. pebble beach t","Lecanto","FL","34461","352-527-3621","Susiegepp@yahoo.com","","","","Hiking also","2014-07-19","","2013-11-03"
+"deb","barney","48738 Crescent","Macomb","MI","48044","313-885-5644","deb.barney@bills.nfl.net","1","4","We are also interested in New Years Eve Rental if at all possible..\r
+Arriving on the 30th or 31st (day) and leaving on the 2nd or 3rd.","We are looking to purchase something in this area within the next year or so for retirement purposes.  If possible please provide as much information concerning your units as you can...\r
+We are interested in at least 2 bedroom with a loft that can be used as a bedroom or a typical 3 bedroom unit.  At least one full and one half bath to two full baths.\r
+Do you offer garages?  if so, what size 1 or 2 car...are they attached to the unit?  What are you HOA fees are there assessments?  thank you very much, we ARE interested.","2014-02-14","2014-02-17","2013-11-05"
+"dennis","zaski","","","","","517-782-1857","jockozaski@att.net","","","","would like a quote on golf package\r
+16 golfers - all guys\r
+so I need 16 beds\r
+4 rounds of golf\r
+arrive on Wednesday play wed,thur,fri,sat\r
+depart on subday","2014-06-03","2014-06-08","2013-11-06"
+"Werner","Grundei","30543 Warner","Warren","MI","48092","586-751-3999","wgrundei4779@wowway.com","","9","Am interested in renting Condo 30 and 32 in bldg. 5. Please call me. I have rented from you condo #2 for 3 years. I'm just a little late this year. I need the condo's to be adjacent to one another to house our family.","","2014-02-14","2014-02-18","2011-01-31"
+"Maddie","Kearns","","","","","","kearns.made@uwlax.edu","","6","","I wanted to book a weekend through you, and saw that you have a discount on lift tickets through Nubs Nob. How much is the discount that you are offering?","","","2013-11-11"
+"liz","urquhart","","","ON","n8n1t6","5195662785","ulizb@yahoo.ca","","6","Hi, we are looking for dates stated.  5 of the 8 people are skiing.  Also would like to know is there an option of brining a pet (no big deal if it's not ok).  Please would you also provide address, so that we can get our bearings on location.  thank you,  Liz","","2013-12-29","2013-01-02","2013-11-11"
+"Jackie","Somerville","1117 North Center Street Apt 108","Royal Oak","MI","48067","2488082776","jcqlnsomerville@gmail.com","6","9","Greetings! I have a group of roughly 12-14 people looking to stay in Condo #2 the weekend of Feb 7-9 2014. Could you tell me if this condo is available at that time and what I would need to do to reserve it? \r
+\r
+Thank you!","","2014-02-07","2014-02-09","2013-11-13"
+"Donna","Gabriel","Seventh Street","Tulsa","OK","74127","","donnagabriel786@gmail.com","","6","","We can increase rankings of your website in search engines. Please reply back for more details.","","","2013-11-14"
+"Laura","Piwko","23433 Deziel Street","St Clair Shores","MI","48082","586-243-5910","laurapiwko@yahoo.com","","9","","For the past few years our soccer club, St Clair Shores Select, has stayed at your facility over Fathers Day weekend. I am looking to reserve some condos for our families. I have 80 players and their families. We will need roughly 40-60 rooms. These are the prices that we were given last year, which included staying either the Thursday beforehand or Monday afterwards for free.\r
+\r
+1 Bedroom, 1 Bathroom $492\r
+\r
+2 Bedroom, 1 Bathroom $516.56\r
+\r
+2 Bedroom, 2 Bathroom $548.60\r
+\r
+2 Bedroom, 2 Bathroom, Plus $606.48\r
+\r
+2 Bedroom, 2 Bathroom, Loft $651.04\r
+\r
+3 Bedroom, 2 Bathroom, Loft $735.28\r
+\r
+Can you please let me know if you would be able to accommodate our group and what the costs would be?  Thank you for your time and help.\r
+\r
+Laura Piwko\r
+SCS Select Soccer Club","2014-06-13","2014-06-15","2013-11-14"
+"maria","maddage","PO BOX 571","Brooklyn","MI","49230","5175921758","maddria@gmail.com.com","","","","Are pets allowed?","","","2013-11-21"
+"kim","marr","504 drahner street","eaton rapids","MI","48827","5176670683","kimpossible914@yahoo.com","2","6","Please advise of your availability.  Our family will be traveling up to ski.","","2013-12-28","2014-01-01","2013-11-21"
+"Jan","Skinner","","","","","5862542943","Skinner@msu.edu","6","9","","","2013-12-23","2013-12-26","2013-11-22"
+"Lori","Marchel","1357 old farm lane","st joseph","MI","49085","269-408-0405","lori.marchel@bcdtravel.com","","","","","","","2012-03-24"
+"Liz","Yoon","","","MI","48374","5866123296","sdleq@sbcglobal.net","4","9","","","2013-12-24","2013-12-26","2013-11-28"
+"Mark","","","","","","","markpbering@wowway.com","","9","","We have a reservation at Trout Creek for Dec 28-30. Normally we come up for skiing, but we would also like to do a day of snowmobiling this year.\r
+I would like to rent snowmobiles for the whole family Dec 30. This would include my wife and I and our 4 grownup kids (youngest is 18). Ideally we would like to have a guide though since we're not experienced riders. \r
+Can you guys help arrange that?\r
+\r
+Thanks,\r
+...Mark\r
+313 404 5567 cell","","","2010-12-12"
+"Lisa","","","","","","","lgolder@sbcglobal.net","","8","pure michigan","are the special rates for the early ski package before Dec 25th for two days or the amount quoted per day? Also does the deal end on Dec 25th or thru dec 25th?\r
+I also wanted to see whether the outdoor pool and hot tub are oprn during december,","","","2013-12-08"
+"Dan","Brys","940 Woods Lane","Grosse Pointe Woods","MI","48236","248-390-0960","djbrys@gmail.com","","4","","I understand I'm late here so I hope you can help.  I have my wife, myself and our two daughters and their husbands.  My daughter & husband in from CA.  I also have  our Chesapeke Bay Retriever - not sure if that's a deal breaker or not.  Please let me know what you can do or any recommendations you have for us.  You can email me back or call me at 248-390-0960.","2013-12-26","2013-12-29","2013-12-04"
+"Lisa","","","","","","","vanrynl@gvsu.edu","","4","","do you allow small, non-shedding dogs in any of the condos?","","","2014-01-15"
+"Gino","Roncelli","6471 Metro Parkway","Sterling Heights","MI","48312","5865573453","gino.r.roncelli@gmail.com","6","8","Megan Staake","Hi -\r
+\r
+Last minute notice, but was wondering if you had any accommodation that could a group of 10 individuals available?  Interested in the nights of the 30th, and 31st, with a possibility of the 29th as well.  Please let me know if you have anything that might work!\r
+\r
+Best,\r
+Gino Roncelli\r
+gino.r.roncelli@gmail.com\r
+586-557-3453","2013-12-29","2014-01-01","2013-12-09"
+"Catherine","M.","","","","","","pcmcdonagh@att.net","4","8","Family magazine","Either a 1 bed/bath or a 2 bed/1 bath for a Sat-Mon 2 night stay. Can you provide the cost and if there are any restaurants on the grounds? \r
+Thank you!","2014-01-04","2014-01-06","2013-12-10"
+"Ivan","Ballard","","","OR","","","ivanballard84@gmail.com","","1","We can increase rankings of your website in search engines. Please reply back for more details.","We can increase rankings of your website in search engines. Please reply back for more details.","","","2013-12-13"
+"George","Hartay","N72 W22406 jeanine Lane","Sussex","WI","53089","262-246-4204","gjhartay@yahoo.com","","","","","","","2013-10-04"
+"susan","dillon","3108 Sunrise Ct","middleton","WI","53562","608-239-3271","sedillon3@yahoo.com","1","8","2 couples coming that way to cross country ski. Want to know if you have trails nearby and have availabilty for those days. Please call if able, thank you.","","2014-01-23","2014-01-26","2013-12-23"
+"Sherry","Cummins","657 N. Wayne St.","Kenton","OH","43326","","cumminssherry@hotmail.com","","","","","","","2013-12-25"
+"kristi","stempien","","","","","","kristihatch@yahoo.com","","6","hi! i am inquiring about your giving procedure for non profits.  we are looking for a donation of a stay at your hotel for a getaway package we are planning.  please advise as to proper protocol for such requests.  thank you in advance.","","","","2013-12-30"
+"Theresa","Bonham","506 Chalmers","Detroit","MI","48215","","theresa978@gmail.com","","","","","","","2013-12-30"
+"Chantal","Rosa","","","","","819-566-8715","Chantal.rosa@videotron.ca","","","","","2014-08-08","2014-08-18","2013-12-31"
+"Brett","Filcek","","Sylvania","OH","43560","","bfilcek@yahoo.com","1","9","","This is a request for quote.  There will be 2 families and we will require 2 condos.\r
+Because there will be young kids, building 16 is in the most ideal location.\r
+\r
+If available, can you please provide me pricing for condo 113 (2BR 2BA+Loft) and 112 (2BR 2BA+).\r
+\r
+Check in date will be August 9, 2014 and check out on August 16, 2014.\r
+\r
+Thanks and I look forward to booking summer vacation!\r
+\r
+\r
+Brett Filcek","2014-08-09","2014-08-16","2014-01-02"
+"Brian","Gorman","1010","Grand Ledge","MI","48837","","beezer00000001@aol.com","","","","","","","2014-01-03"
+"Katrina","Roy","65075 Van Dyke","Washington","MI","48095","8104599035","kat829@comcast.net","","","","","","","2014-01-03"
+"Mantissa","Schuler","3954 Walnut Street","New Troy","MI","49119","269-426-3941","schuler.mant@comcast.net","5","6","","Just wondering if the midweek special still applies to these dates. Your website was unclear.","2014-02-23","2014-02-28","2014-01-03"
+"moe","miller","","","","","502-477-6042","millertimeranch@yahoo.com","","","","","2014-08-20","2014-08-27","2014-01-06"
+"Ken","King","","","MI","","","kking.spc@gmail.com","6","6","","How much is Condo #2 for March 14-15?\r
+\r
+Ken","2014-03-14","2014-03-16","2014-01-07"
+"Lisa","Jackson","29488 Ashland 201","harrison twp.","MI","48045","5867411318","617blkjack@att.net","","","","","","","2014-01-08"
+"Michele","VanTassel","3058 West YZ Avenue","Schoolcraft","MI","49087","269-679-3473","shel.vantassel@gmail.com","3","6","I am looking for a condo that sleeps 4, king and queen bed or two kings would be great.  the dates are flexible but would like Friday to Sunday.  We will be skiing at Nubs Nob.","","2014-01-31","2014-02-02","2014-01-09"
+"Calvin","Murdock","1300 Murdock Dr","Sparta","MI","49345","","ericksonnancy@att.net","2","8","","","2014-03-01","2014-03-08","2014-01-10"
+"milt","","","","","","","miltkailis@me.com","","","","starting to look at golf packages for june 2014. We usually go to boyne mountain or boyne highlands","2014-06-16","2014-06-19","2014-01-10"
+"john","faiola","647 Highview St.","Dearborn","MI","48128","313-550-6517","johnfaiola52@gmail.com","","","","We are a foursome and this will be out 5th time golfing in this part of Michigan.","","","2014-01-11"
+"stephanie","rowe","","","","","","stephanie.rowe@hotmail.com","6","7","We are interested in rates for a 5 bedroom or a 2 bedroom unit.  Thanks, Stephanie","","2014-02-07","2014-02-09","2014-01-12"
+"Mary","Lindig","2409 Cherie","Ottawa","IL","61350","8154330575","mlindig@gmail.com","","","","","","","2014-01-13"
+"Tom","Marciniak","4403 Darla Dr.","Bay City","MI","48706","989-280-3294","tnttrouble@msn.com","4","9","We are looking for pricing and availability for condo #33  for the months of Feb. and March would come up on a Friday and leave on a Sunday. The trip would be for four adults and just a weekend event for us. looking for avail. dates and pricing so we can look at our calendar. Thanks, Tom","","","","2013-08-16"
+"Michele","Fent","625 N.Old Woodward","Birmingham","MI","48009","2483301344","Michele_bw@live.com","3","4","with the Detroit Country Day ski team,one family recommended your facility.looks very nice on line. We are interested in condo's #114 in bld.16 and condo 121 in bld.17. our friends are in bld.4 unit 22,we believe if we follow grasshopper trail we will end up at their door.!thankyou for your assistance.","","2014-01-23","2014-01-26","2014-01-15"
+"James","Kocsan","","","","","440-823-0966","Ckocsan@aol.com","","","","Looking for approx. cost on 3 bedroom condo for 3 nights, 4 to 6 rounds of golf\r
+\r
+Looking to play Little Traverse and Black Lake  plus Various Boyne Highlands and Hidden River\r
+\r
+Golf would be\r
\r
+Sun afternoon\r
+Mon Morning and afternoon \r
+Tues Morning and afternoon\r
+Wed Morning\r
+\r
+Then departure","2014-06-08","2014-06-11","2014-01-15"
+"Dale","","","","","","","daleangus@comcast.net","","","","","2014-08-21","2014-08-24","2014-01-17"
+"Judith","Bashforth","6662 Willowood Ave.","Maumee","OH","43537","4198666128","cjbash@sbcglobal.net","","","","","","","2013-12-13"
+"Beverly","Giuliani","","","","","","kgiuliani2@att.net","","","","","","","2014-01-19"
+"Karen","Jbara","","","","","248 673-6468","gkjbara@comcast.net","","9","","Hi Debbie.  We spoke about condo's #130 & #108 this morning.  Just wondering if either condo has pet availability?  We have a dog named Kobe.... I have other options for him as well, but just checking.  I will talk with you tomorrow.\r
+\r
+Thanks,\r
+Karen","","","2014-01-20"
+"sarah","richmond","5150 merriman rd.","Jackson","MI","49201","517-581-1139","scrhouse@comcast.net","6","8","We are very interested in renting unit #2 for President's weekend.  No pets.  No smokers.  Please call my phone # shown as soon as possible with availability and rates.  Thank you!","","2014-02-13","2014-02-17","2011-01-13"
+"Kelly","Petitto","","","","","","kellypetitto@comcast.net","","4","I booked unit 112 for this weekend, but I neglected to print or copy my confirmation info assuming it would get emailed to me.  However, I haven't noticed anything in my inbox- so I wanted to verify it was processed and request an email confirmation be sent.  Thanks so much!!","","2014-02-13","2014-02-17","2014-01-25"
+"ELIZABETH","EADS","48310 Manorwood Drive, Northville, MI","NORTHVILLE","MI","48168","248-408-9899","eadsfamily@comcast.net","2","9","","","2014-02-13","2014-02-17","2007-08-14"
+"bob","","","","","","810-357-4621","yvonnebob20@hotmail.com","","","","I set up a trip for 36-48 golfers each year, is there accommodations for that many golfers at your facility on dates above. Every player would would want there own bed.","2015-07-17","2015-07-21","2014-01-27"
+"Stacy","Baker","3108 Mack Island Rd","Grass Lake","MI","49240","","shbaker@wowway.com","","4","","I made a reservations the other night for a 3 bedroom/2 bathroom loft in Building 16 for 2/14 through 2/17, but have not received an email confirmation and unfortunately I did not print a copy of the confirmation.  I would like to verify that I have a reservation and if you could send me the number that would be great.","","","2014-01-25"
+"Jerry","Klein","811 Hickory Lane","Fowler","MI","48835","","jmklein@live.com","5","9","","","2014-06-08","2014-06-10","2009-07-03"
+"Nancy","McDonald","121 Gilkison Ave","Kalamazoo","MI","49006","2695528461","nmm50@yahoo.com","","9","Hi, I am lookign to schedule a summer vacation at Trout Creek again. Right now I have a group of 8 adults with 5 children.  We have stayed at your large condo before.  We are looking to book for 3 days (we could be flexible with the days) between late July and end of August.  Do you have any availability and can you tell me the price ? We loved our last stay.  Thank you! Nancy McDonald","","","","2014-01-31"
+"Adelene","Bauer","","","","","248-625-6255","adelenebauer@hotmail.com","","","","Ladies golf outing. Would need to golf around 1pm on the Sunday 22nd.  Other two days would like 10am or around.  Need lodging that would accommodate the 8 of us.  Don't want to have to drive very far to courses","2014-06-22","2014-06-24","2014-02-04"
+"Cathleen","Burke","153 Pueblo St","Tavernier","FL","33070","3053945670","kateburke@bellsouth.net","3","4","Am interested in a two month rental. Must be a lower unit as my son is in a wheelchair, and must be pet friendly (indoor cat). Please advise availability and cost. Thank you so much.","","2014-06-01","2014-07-30","2014-02-05"
+"Yves","Poirier's","","","","","","Poiriey@outlook.com","","","","Looking to golf all day Saturday and Sunday Only. Please let me know what you can do.\r
+\r
+Thanks\r
+\r
+Yves","2014-05-16","2014-05-19","2014-02-05"
+"Jan","Gaswint","","","","","","jquartersj@yahoo.com","","8","Global Vacations","Does unit #66 have a Jacuzzi in the master bath? Thank you.","","","2014-02-06"
+"George","jones","7517 Madden dr.","fishers","IN","46038","","thedagman2@yahoo.com","","","","","","","2014-02-12"
+"Jeff","Nemeth","","","","","248-219-8035","nemeth.jeff@gmail.com","","","","Interested in one large or two small condos, would like all players to have their own bed. Would like to play 36 holes of golf on Saturday and 18 on Sunday.","2014-05-16","2014-05-18","2014-02-12"
diff --git a/admin/Contact/spam/TROUTEivQb5.body b/admin/Contact/spam/TROUTEivQb5.body
new file mode 100644 (file)
index 0000000..aa1bbdb
--- /dev/null
@@ -0,0 +1,163 @@
+From: TroutCreekNews <news@troutcreek.com>
+Return-To: steve+owner@localhost
+To: steve+owner@localhost
+Subject: Last minute deal!!
+Reply-to: steve+reply_to@localhost
+Mime-Version: 1.0
+Content-Type: multipart/alternative; boundary=ContentBoundry
+
+--ContentBoundry
+Content-Type: text/plain; charset="utf-8"
+It is incredibly beautiful outside with perfectly blue skies! We want you to come visit with us this weekend to take advantage of a special offer. Call us before the end of the day tomorrow (Thursday) and we will give you:A FREE Thursday or Sunday night 20% discount off of the room chargeLate Checkout...you can tell us what time you would like to leaveDon't forget these great reasons to visit us this winter:We have discounted lift tickets at Nubs Nob &amp; BoyneFREE Shuttle to Nubs Nob on Saturday &amp; SundayOutdoor Pool and Hot TubFitness Center with indoor pool, hot tub, saunaEvery condo has a full kitchen- save money and bring food!Every condo has a fireplace...either wood burning or gasThe Customer Service cannot be beat!We may not be Ski-In/Ski-Out...but we are right here! The price you pay to stay with us is half the price as other lodging options in our neighborhood.It is so great out today! We can't wait to hear from you!!Debby, Dan, Chris and Nikki1-800-748-0245
+
+-------------------------------------------------------------------
+You are receiving this message because you have expressed an interest in
+receiving specials and information from Trout Creek. If you do not
+wish to receive future items of this nature, please reply to this e-mail
+with the word "CANCEL" on the subject line. You will then be removed 
+from future mailings.
+-------------------------------------------------------------------
+
+--ContentBoundry
+Content-Type: text/html; charset="utf-8"
+
+<html>
+<head>
+<title>Trout Creek Condominiums Newsletter</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<style type="text/css">
+<!--
+td, div {   font-family: Arial, Helvetica, sans-serif;
+    font-size: 12px; color: #000000;}
+
+a:link { color: #0f3220; }
+a:visited { color: #0f3220; }
+a:hover { color: #4e6e52; }
+a:link { color: #0f3220; }
+
+h1 {
+    font-family: Arial, Helvetica, sans-serif;
+    font-size: 18px;
+    font-weight: bold;
+    color: #213A62;
+    margin-bottom: 4px;}
+h2 {
+    font-family: Arial, Helvetica, sans-serif;
+    font-size: 14px;
+    font-weight: bold;
+    color: #0f3220;
+    margin-bottom: 3px;
+    margin-top: 15px;
+    clear: both;
+    }
+.address {
+    float: bottom;
+    font-family: Arial, Helvetica, sans-serif;
+    font-size: 11px;
+    color: #1c3962;
+    margin: 10px;}  
+-->
+</style>
+</head>
+
+<body bgcolor="#FFFFFF" text="#000000">
+<style type="text/css">
+<!--
+td, div {   font-family: Arial, Helvetica, sans-serif;
+    font-size: 12px; color: #000000;}
+
+a:link { color: #0f3220; }
+a:visited { color: #0f3220; }
+a:hover { color: #4e6e52; }
+a:link { color: #0f3220; }
+
+h1 {
+    font-family: Arial, Helvetica, sans-serif;
+    font-size: 18px;
+    font-weight: bold;
+    color: #213A62;
+    margin-bottom: 4px;}
+h2 {
+    font-family: Arial, Helvetica, sans-serif;
+    font-size: 14px;
+    font-weight: bold;
+    color: #0f3220;
+    margin-bottom: 3px;
+    margin-top: 15px;
+    clear: both;
+    }
+.address {
+    float: bottom;
+    font-family: Arial, Helvetica, sans-serif;
+    font-size: 11px;
+    color: #1c3962;
+    margin: 10px;}  
+-->
+</style>
+    <div align="center" style="border: 1px solid #2a8251; width: 550px;
+margin: 0 auto;">
+        <div align="left">
+            <table cellspacing="0" cellpadding="0" border="0"
+width="550" style="width: 500px;">
+                <tr>
+                    <td width="275"><a
+href="http://vserver/www.troutcreek.com/"><img
+src="http://vserver/www.troutcreek.com/assets/newsletter-logo.gif"
+width="275" height="91" alt="" title="Trout Creeks Website" border="0"
+style="display: block;"></a></td>
+                    <td width="138"><a
+href="http://reservations.troutcreek.com/irm/AccessType.ASP"><img
+src="http://vserver/www.troutcreek.com/assets/newsletter-reservation.gif"
+width="138" height="91" alt="" title="Make a Reservation" border="0"
+style="display: block;"></a></td>
+                    <td width="137"><a
+href="http://vserver/www.troutcreek.com/specialspackages-4/"><img
+src="http://vserver/www.troutcreek.com/assets/newsletter-specials.gif"
+width="137" height="91" alt="" title="Check our current specials"
+border="0" style="display: block;"></a></td>
+                </tr>
+            </table>    
+            <div style="margin: 10px;">
+                <p style="MARGIN: 0in 0in 0pt" class="MsoNormal"
+/><p><em></em></p><p>It is incredibly beautiful outside with perfectly
+blue skies! We want you to come visit with us this weekend to take
+advantage of a special offer. </p><p>Call us before the end of the day
+tomorrow (Thursday) and we will give you:</p><ul><li>A FREE Thursday or
+Sunday night </li><li>20% discount off of the room charge</li><li>Late
+Checkout...you can tell us what time you would like to
+leave</li></ul><p>Don't forget these great reasons to visit us this
+winter:</p><ul><li>We have discounted lift tickets at Nubs Nob &amp;
+Boyne</li><li>FREE Shuttle to Nubs Nob on Saturday &amp;
+Sunday</li><li>Outdoor Pool and Hot Tub</li><li>Fitness Center with
+indoor pool, hot tub, sauna</li><li>Every condo has a full kitchen- save
+money and bring food!</li><li>Every condo has a fireplace...either wood
+burning or gas</li><li>The Customer Service cannot be beat!</li><li>We
+may not be Ski-In/Ski-Out...but we are right here! The price you pay to
+stay with us is half the price as other lodging options in our
+neighborhood.</li></ul><p>It is so great out today! We can't wait to
+hear from you!!</p><p>Debby, Dan, Chris and Nikki<br
+/>1-800-748-0245</p>
+            </div>  
+            <div style="font-size: 11px;"><br
+clear="all"><br>-------------------------------------------------------------------<br>You
+are receiving this message because you have expressed an interest
+in<br>receiving specials and information from Trout Creek. If you do
+not<br>wish to receive future items of this nature, please reply to this
+e-mail<br>with the word "CANCEL" on the subject line. You will then be
+removed <br>from future mailings.  <a
+href="http://vserver/www.troutcreek.com/"><B> Trout
+Creek</b></a><br>-------------------------------------------------------------------<br></div>
+            <div class="address">
+            4749 Pleasantview ~ 
+        Harbor Springs, MI 49740 ~ 
+            <b>1-231-526-2148 ~ 
+            1-800-748-0245</b> ~ 
+            <a href="mailto:info@troutcreek.com">info@troutcreek.com</a>
+        </div>
+        </div>
+    </div>
+</body>
+</html>
+
+
+--ContentBoundry--
\ No newline at end of file
diff --git a/admin/Contact/spam/TROUTEivQb5.head b/admin/Contact/spam/TROUTEivQb5.head
new file mode 100644 (file)
index 0000000..43e99d5
--- /dev/null
@@ -0,0 +1,6 @@
+NotifyAddr: steve+owner@localhost
+ProcessName: Trout Creek
+From: info@troutcreek.com
+ReportInterval: 2
+BlockSive: 20
+ProductionMode: ON
diff --git a/admin/Contact/spam/TROUTEivQb5.ready b/admin/Contact/spam/TROUTEivQb5.ready
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/admin/Contact/spam/TROUTEivQb5.to b/admin/Contact/spam/TROUTEivQb5.to
new file mode 100644 (file)
index 0000000..0d429d1
--- /dev/null
@@ -0,0 +1,5894 @@
+121050311@comcast.net
+15.cgilpin@heritageacademies.com
+187.mike@gmail.com
+1cougarmom@comcast.net
+1patrice@comcast.net
+1peterson@lafcu.com
+2silbert@gmail.com
+317lewis@comcast.net
+417bruce@comcast.net
+4kjs@comcast.net
+5duffs@sbcglobal.net
+5mcgraths@ameritech.net
+5oats@comcast.net
+617blkjack@att.net
+6barry97@comcast.net
+8ft4par@sbcglobal.net
+925mmj@gmail.com
+a089028@allstate.com
+a113bell@aol.com
+a1cottages@a1cottages.com
+a221149041@hotmail.com
+aabics@comcast.net
+aadams4512@comcast.net
+aarmour5@emirates.net.ae
+aaron.s.krieger@gmail.com
+aaronthill@yahoo.com
+aasma_aziz@hotmail.com
+aawisnie@gmail.com
+aazoes@gmail.com
+abby_harju@yahoo.com
+abby_harma@hotmail.com
+ab.golder@shaw.ca
+ab.menon@gmail.com
+abookah67@yahoo.com
+aboyce@dickinsonwright.com
+abrcrmbdab@hotmail.com
+abrodbine@aol.com
+abstorbeck@comcast.net
+abutler@nucalgon.com
+acarsonpho@aol.com
+acatallo@beaumonthospitals.com
+aceistheplace@excite.com
+achandross@excite.com
+achelniak@comcast.net
+achla_k@yahoo.com
+achoma@aol.com
+acoulter@guardian.com
+acube15@aol.com
+acush47@comcast.net
+acwalsh1@yahoo.com
+adagro@wowway.com
+adaily@twmi.rr.com
+adajamesgang@comcast.net
+adam1493@yahoo.com
+adamlis01@gmail.com
+adams277@comcast.net
+adamsd@graphicpkg.com
+adamsj18@gmail.com
+adams@lumbermens-inc.com
+adams@wmich.edu
+adark@cogeco.ca
+adelenebauer@hotmail.com
+ademarti@ford.com
+adgreenough@yahoo.com
+adow6985@aol.com
+adpapin@aol.com
+adwhitman@sbcglobal.net
+aebert@genesyspho.com
+aems_medic19@hotmail.com
+afeller957@comcast.net
+afscott4@hotmail.com
+AGB42@aol.com
+aggie0053@yahoo.com
+agilliam@acsc.net
+agi_tator@yahoo.com
+agking@peoplepc.com
+aglo510@comcast.net
+agnieszka8@comcast.net
+a_govanis@hotmail.com
+agracoopkids@yahoo.com
+agrake26.2@comcast.net
+agrelli@aol.com
+aguthat@fragomen.com
+ah2106@wayne.edu
+ahallman@wright-filippis.com
+aharbison2004@yahoo.com
+aharder1791@wowway.com
+AHC100@comcast.net
+ahcsswickson@hotmail.com
+ahearne@wowway.com
+ah@edmondsonhall.com
+aheise@wccnet.org
+ahekhuis@wideopenwest.com
+ahkfutures@yahoo.com
+ahrens2@verizon.net
+ahultgre@umich.edu
+ahyers@hotmail.com
+aigreen@comcast.net
+airplane40@comcast.net
+ajabjarrett@att.net
+ajanemcc@aol.com
+ajanson@hansonlogistics.com
+ajdpistons@att.net
+ajg1437@aol.com
+akcmehta@wowway.com
+aketels@msn.com
+akiko@chartermi.net
+akpgates@gmail.com
+akruszewski207035mi@comcast.net
+alainacrandell@yahoo.com
+alanandbethm@aol.com
+alandwer@comcast.net
+alanmcrawford@gmail.com
+albers@comcast.net
+albert_jen2002@hotmail.com
+aleathahoff@sbcglobal.net
+alfic76@msn.com
+alfredahenley@aol.com
+alglmg@comcast.net
+alh810home@aol.com
+alice.mcguire@sbcglobal.net
+alicia.loves.31@gmail.com
+ali@jamco1.com
+alikraai@hotmail.com
+alisonamorgan@yahoo.com
+alis@tm.net
+allen4994@comcast.net
+allison_cofone@waters.com
+allwags@comcast.net
+alnoneck@sbcglobal.net
+alogiudice@hotmail.com
+alpacadan@windstream.net
+alucas@new.rr.com
+alusky@sbcglobal.net
+al.white@td.com
+alyciamwilliams@yahoo.com
+alyse.f.martinelli@att.com
+amaldred@gmail.com
+amandabohl@hotmail.com
+amarasharon@aol.com
+amarkkula@sault.ymca.ca
+amb4735@hotmail.com
+ambyryan@hotmail.com
+amcardle@harveykruse.com
+amfaje@gmail.com
+amfinmuth@aol.com
+amkhu@chartermi.net
+amn1007@aol.com
+amybixel@yahoo.com
+amybk@wowway.com
+amycontrera@comcast.net
+amygirl2020@yahoo.com
+amyjo1019@yahoo.com
+amyjpant@yahoo.com
+amykirby5@comcast.net
+amylynn_48167@yahoo.com
+amymariewilliams@hotmail.com
+amyslin49@aol.com
+ana_cuellar@hotmail.com
+anav95@aol.com
+andaalk@aol.com
+andreaandgary@rogers.com
+andreajtaylor@yahoo.com
+andrealbennett@comcast.net
+andrearae2006@yahoo.com
+andrea.sheppard@abbott.com
+andreasimard03@gmail.com
+andrea.termini@comcast.net
+andrew.johnston86@gmail.com
+andrew.litynskyj@comcast.net
+andrsnma@aol.com
+andyb@kdccpa.com
+andygeater@aol.com
+andyp11668@yahoo.com
+andyv@keiprototype.com
+a.nestor@worldnet.att.net
+angela2angelacarson.com
+angelacole@hotmail.com
+Angela_Ettawageshik@cargill.com
+angelalhughes@hotmail.com
+angel-ii-s@sbcglobal.net
+angelika.veziridis@googlemail.com
+angiehallberg@comcast.net
+angiezuiderveen@yahoo.com
+anhillstrom@hotmail.com
+anmohe@aol.com
+Anmohe@aol.com
+annalou323@att.net
+annamodei@yahoo.com
+annam_williams@comcast.net
+anna.rea@tfienterprises.com
+annareynolds@cfaith.com
+annebeck@peoplepc.com
+anne@fleminglaw.com
+annelohnes@yahoo.com
+annemcmanamon@yahoo.com
+ann_eric@att.net
+annetrap@comcast.net
+annette.m.raddatz@chi.frb.org
+annevillani@aol.com
+anneward@wideopenwest.com
+anngerrys@aol.com
+annkgallagher@yahoo.com
+annnort@gmail.com
+annpoos@yahoo.com
+annsimsarian@cox.net
+annthomas@esacredheart.org
+anryinfl@yahoo.com
+anthonyberto@hotmail.com
+anthony.quaglia@brucepower.com
+anthonyrencher@yahoo.com
+anthonyursitti@hotmail.com
+antiquemama10@yahoo.com
+antoniotodaro98@yahoo.com
+aoxender@wowway.com
+apdemonte@comcast.net
+apgray@aol.com
+apickens@comcast.net
+apples4iu@sbcglobal.net
+appope@svsu.edu
+apriesko@live.com
+arabedio@svsu.edu
+arch.cm@att.net
+ardie_lundin@spartanstores.com
+arkkal@cogeco.ca
+arlinhunsberger@comcast.net
+armstrong.mikej@gmail.com
+arnboss@shaw.ca
+arnie31879@aol.com
+arnoldcoleman@gmail.com
+arnold_ketels@yahoo.com
+arogier@siua.com
+aron@chartermi.net
+arsenalkicker@gmail.com
+art2mom@comcast.net
+artcbenton@gmail.com
+artimiss@bex.net
+art.noey@gmail.com
+art.r.jennings@sympatico.ca
+arvin.singla@gmail.com
+asallen994@aol.com
+asalter@ameritech.net
+asarmoudlian@msn.com
+ashidol1@yahoo.com
+ashley_olinghouse@hotmail.com
+askjoet@yahoo.com
+aslupski@hotmail.com
+aspajb@comcast.net
+aswaneck@yahoo.com
+atallent48@yahoo.com
+atmmarasco@yahoo.com
+atsukochap7@comcast.net
+attorneyjadeedwards@gmail.com
+atudell@ameritech.net
+auspitz@sbcglobal.net
+Aussiemom@comcast.net
+avara921@comcast.net
+avaughn@emich.edu
+avinashrao00@gmail.com
+aviz3@comcast.net
+avrawill@wideopenwest.com
+aw5095@wayne.edu
+awildman@xplornet.com
+awilson@itape.com
+awosik262916MI@comcast.net
+ay5214@wayne.edu
+ayarian@msn.com
+azuiderveen@devontitle.com
+babbenson@aol.com
+babygrand14@comcast.net
+babykennedysmom@yahoo.com
+babyo@hotmail.com
+bacigald@msu.edu
+backmasu@comcast.net
+backofes@cooley.edu
+backpatti@hotmail.com
+backyjack11@gmail.com
+badawes@yahoo.com
+BADERISLEY@aol.com
+bafriis@comcast.net
+bagodzik@earthlink.net
+bagruizinga@gmail.com
+bakerlee3@yahoo.ca
+bak@kellerthoma.com
+balakrp@ntcna.nissan-usa.com
+ballardivan60@gmail.com
+ballen@shelti.com
+bamclean@bellsouth.net
+bandcwatt@rogers.com
+bandjromero@hotmail.com
+bandman21@msn.com
+baneill295@yahoo.com
+banido21@yahoo.com
+banpoos@yahoo.com
+barbara.daly@comcast.net
+barbarahunter104@hotmail.com
+barberkms@yahoo.com
+barbjfletch@hotmail.com
+barb.w@netzero.net
+barkman.mike@sbcglobal.net
+barlowk@msu.edu
+barnold128@live.com
+barnro@mirealsource.com
+barrons1@xcelco.on.ca
+barry.flaga@gmail.com
+barthel@umich.edu
+bartjilll@charter.net
+bartletts@twmi.rr.com
+BartSchram@aol.com
+bashoemaker@hotmail.com
+basmfc@aol.com
+bates.helen@att.net
+batterydoc@yahoo.com
+baycitybeth@hotmail.com
+bball32cd@yahoo.com
+bbalnave@wowway.com
+bbaringer@vesco-oil.com
+bbbrickard@yahoo.com
+bbclout@yahoo.com
+bbdgm@sbcglobal.net
+bberk0719@sbcglobal.net
+bbkoenig@gmail.com
+bblinkhorn@glfasteners.com
+bblucas@yahoo.com
+bbmartin@mei.net
+bboas72@gmail.com
+bbooth@rochester.k12.mi.us
+bbpotter@wowway.com
+bbshellito@yahoo.com
+bbttkkj@aol.com
+bbusby@besam.ca
+bcaldwell96@comcast.net
+bcandey@wadetrim.com
+bccfan@sbcglobal.net
+bccunn@yahoo.com
+bcecconi@charter.net
+bc_hackworth@yahoo.com
+bchasco@gmail.com
+bckjsimon@yahoo.com
+bcollins12@hotmail.com
+bcopple@kumc.edu
+bcrogers@charter.net
+bcvella@hotmail.com
+bdavis1252@aol.com
+bdawes@hmfdlaw.com
+bdjordan86@aol.com
+BDJordan86@aol.com
+bdoughty@umich.edu
+bdowns72@hotmail.com
+bdridenour@wowway.com
+bduneske@yahoo.com
+beanc@eagleottawa.com
+bear.management@gmail.com
+becarpen@yahoo.com
+Beckyka1975@yahoo.com
+bedervis@aol.com
+bedrocks3@gmail.com
+beefbetty@yahoo.com
+beezer00000001@aol.com
+bella3250@gmail.com
+bellm@karmanos.org
+bells1968@aol.com
+belsitz@hotmail.com
+bemansfield@gmail.com
+bemerrill@yahoo.com
+ben0714@hotmail.com
+benbeth@comcast.net
+ben_dankert@yahoo.com
+ben@distinctivehomesltd.com
+bendixen@prodigy.net
+benjamin.laubender@gmail.com
+benkay727@charter.net
+bennettr1@aol.com
+ben.pauzus@bilsing-automation.com
+bensaltsman@yahoo.com
+bensonfamily@comcast.net
+benyr@aol.com
+bepo@cableone.net
+berk10@aol.com
+bermatinge@aol.com
+bernesemom@aol.com
+bernie@fryebrokerage.com
+berrox@hotmail.com
+Beslock@sbcglobal.net
+bethannieann@comcast.net
+bethdawid@sbcglobal.net
+bethha2003@yahoo.com
+bethkevcox@aol.com
+beth.nowak@bbdodetroit.com
+Beth.Schubiner@sbcglobal.net
+bethune@wyan.org
+betsyenders@comcast.net
+betsyhemm@wi.rr.com
+betsy.jackson@gm.com
+bettybzielinski@aol.com
+beverly2000@prodigy.net
+beverly.orban@gm.com
+beverlyschultz@sbcglobal.net
+bevsfc@aol.com
+bewest@chartermi.net
+beyermeg@msu.edu
+bferrilla@wideopenwest.com
+bfershtman@yahoo.com
+bfguimond@hotmail.com
+bfitzsimmons@gulfstreamcoach.com
+bfrania@jaguaroftroy.com
+b.frantz@sbcglobal.net
+bfriedrichs@sanluisrassini.com
+bfuzet-przekop@cranbrook.edu
+bgalarno@spsd.net
+bganas@sbcglobal.net
+bgarveycpa@sbcglobal.net
+bgass@growdirect.com
+bgawin@cinci.rr.com
+bghandhi@comcast.net
+bgrady@mi.rr.com
+bgranot@ameritech.net
+bgriffin@griffinrealtygroup.com
+bgstoner@verizon.net
+bgwiec@yahoo.com
+bhavenga@seyfarth.com
+Bhchartier@comerica.com
+bhenning@pcs.k12.mi.us
+bholtman@rehmann.com
+bigbow1270@msn.com
+biggie1226@hotmail.com
+biker.julia@hotmail.com
+bilanssi@yahoo.com
+bill@bardhvac.com
+bill.bowling@paramountprop.com
+billclu75@aol.com
+billettesm@hotmail.com
+Billideau@yahoo.com
+bill.lyle@hylant.com
+billm82@aol.com
+bill.piontkowski@ge.com
+billsad@prairieinet.net
+bill.steffes@accessbusinessgroup.com
+bill@surreydigital.com
+binettekandp@comcast.net
+biondojohnson@comcast.net
+birish57@yahoo.com
+bizhongzhu1@sbcglobal.net
+bjaynes@jerviswebb.com
+bjharvey@tds.net
+bjherman05@aol.com
+bjlawson@hughes.net
+bjoyce@immlutheran.org
+bjpalm@charter.net
+bjreef@hotmail.com
+bjsmith1313@comcast.net
+bjteahan@hotmail.com
+bjwootton@yahoo.com
+bk_401@msn.com
+bkbailey@accesstoledo.com
+bkk84@aol.com
+bknowles@onwbeer.com
+bkulawik@cs.com
+bl654@yahoo.com
+BL654@yahoo.com
+blaauw@umich.edu
+blahunkas@aol.com
+blairwill@wideopenwest.com
+blaisekrol@comcast.net
+blake52@aol.com
+blessedru@comcast.net
+bline4@yahoo.com
+blockhome@ameritech.net
+blockman03@juno.com
+blofish99@aol.com
+blondie347455@yahoo.com
+bloomdadjim@comcast.net
+blsandercock@comcast.net
+blwaybright@hotmail.com
+blysiak@sympatico.ca
+bmamajones@aol.com
+bmarcinkowski@comcast.net
+bmarx@resortsandlodges.com
+bmcgee@betco.com
+bmellin@pnc.edu
+bmendols82@aol.com
+bmmellinger@hotmail.com
+bmulheisen@hurstind.com
+bnallamothu@gmail.com
+bndlewis@wideopenwest.com
+bne93@yahoo.com
+boat904@gmail.com
+bobandjan@toast.net
+bob_bleyaert@bankofnorthernmichigan.com
+bobbyschroeder@yahoo.com
+bobcowen@earthlink.net
+bob@elitecleanroom.com
+bobgarvey@ameritech.net
+bob.hanson@hutchinsonssi.com
+bob.horner@softhome.net
+bobkris@comcast.net
+bobkushler@comcast.net
+bob.mccullough@gm.com
+bobminn@sbcglobal.net
+bobmorris07@yahoo.com
+bobmumma@earthlink.net
+bobnholly@wowway.com
+bobrains@landmarkmgt.com
+bobreeb@aol.com
+bobsimon5@comcast.net
+bobsmith533@hotmail.com
+bobsornson@aol.com
+bobs@sharedimaging.com
+bocklava@comcast.net
+bojudy@sympatico.ca
+bold31@aol.com
+boldinglandscape@aol.com
+bollal@dteenergy.com
+BONESMAGE@SBCGLOBAL.NET
+bonnie60491@sbcglobal.net
+bonnieperkins@comcast.net
+bonny428@sbcglobal.net
+bon.rob@sympatico.ca
+bonzo1953@charter.net
+boop48@chartermi.net
+Bootem@ewashtenaw.org
+borinfamily@comcast.net
+bourgoinfam8@aol.com
+boushieadam@hotmail.com
+bowenx3@gmail.com
+bowesam@yahoo.com
+boz5602@yahoo.com
+bozhardy@aol.com
+bozimek@twmi.rr.com
+bpaterick@yahoo.com
+bpbowler11@aol.com
+bpdroste@stgerard.org
+bpearl8411@aol.com
+bpencak@aol.com
+bpepper55@hotmail.com
+b.piccirillo@hotmail.com
+bpsgoal@sbcglobal.net
+bqsturtz@comcast.net
+bradfordjn@yahoo.com
+bradlic@aol.com
+bradmarsh7@hotmail.com
+bradyfamily4@mac.com
+brahce@sbcglobal.net
+brainovich@sbcglobal.net
+brakauskas01@comcast.net
+brandesroy@yahoo.com
+brandon.odell@hotmail.com
+bransptcruiser@netzero.net
+brantp5@comcast.net
+brarric@entery.com
+bratilla57@wowway.com
+brbarnett2003@yahoo.com
+brbrbacon@aol.com
+breentim@comcast.net
+brennans06@ymail.com
+brenners@airadv.net
+brentcrist@msn.com
+brentk@charter.net
+Bresnahan.roy@hotmail.com
+brewbikeski@yahoo.com
+brian.campbell@dsm.com
+brian@flexlite.net
+brian.hodek@kellogg.com
+brianmccabe62@hotmail.com
+brian.mccall@charter.net
+brian@northroofing.com
+brian@pinconningcheese.com
+brian.p.scully@gmail.com
+brian.sharpe@tatumllc.com
+brianw@alertequip.com
+brianw@municipalsupply.com
+briasselin@yahoo.com
+bridgetsma@netzero.net
+bridgetsmithma@gmail.com
+bridget@wekeepitclean.com
+brindle8@aol.com
+brittineeo@bex.net
+britton.5@hotmail.com
+brosinksi@sbcglobal.net
+browersix@aol.com
+brown262@msu.edu
+Brownhouse45@aol.com
+brownken@comcast.net
+brsov@yahoo.com
+bruce.havenga@focuspg.com
+bruce@postguard.com
+brucerogers@yahoo.com
+brucesimon@realestateone.com
+bruckman@racc2000.com
+bruetman@msn.com
+brundage@sympatico.ca
+brunotrent@aol.com
+brushrunabout@aol.com
+bryan@galloupguitars.com
+bryan@peppmotors.com
+bryan_porritt@spartanstores.com
+bsalkovic@hotmail.com
+bsallen@delta.edu
+bshardacre@aol.com
+bsharkne5@sbcglobal.net
+bshearer@ameritech.net
+bshutler@sbcglobal.net
+bsimon44@gmail.com
+bskrick@aol.com
+bsparks21@wowway.com
+bspicknall@new.rr.com
+bsulli8138@aol.com
+btb4u@hotmail.com
+btch69linkinpark@yahoo.com
+bteno@comcast.net
+btharwood@gmail.com
+btoohey@hrblock.com
+btrudeau@comcast.net
+bubbginny@hotmail.com
+buckleyb5@aol.com
+bucks9395@bright.net
+bucksgs1@comcast.net
+buffalogal@wideopenwest.com
+buffett_fan@verizon.net
+bumperpoole@hotmail.com
+burchsu@yahoo.com
+burfam6@shianet.org
+burgoyne@comcast.net
+burntmushu@yahoo.com
+buroak2thdoc@embarqmail.com
+busik@msu.edu
+butterfly6787@hotmail.com
+bvc@foto1.com
+bvorpagel@goagile.net
+bwarra612@yahoo.com
+bwaybright@8020inc.com
+bwblock@tds.net
+bweiss@vinu.edu
+bwidener@comcast.net
+bwigentcpa@comcast.net
+bwperkins@comcast.net
+Bwwmarketing@sbcglobal.net
+byamanishi@yahoo.com
+byrnes@msu.edu
+bzaborney@wowway.com
+bzavell@bex.net
+bzonde8137@aol.com
+cabraljason6@hotmail.com
+cabuss12@aol.com
+cac82980@yahoo.com
+cahee201@yahoo.com
+CAHOUY@SBCglobal.net
+cajcscott@msn.com
+cajspicehunt@aol.com
+calliekay@aol.com
+calnal@sbcglobal.net
+campabello@gmail.com
+campbellmom2@sbcglobal.net
+camtem@aol.com
+candanski@aol.com
+candicutie659@sbcglobal.net
+canice.boran@autoliv.com
+canno1979@yahoo.com
+cannsilver1@yahoo.com
+cannster@hotmail.com
+cap414@hotmail.com
+caparks18@comcast.net
+capopour@gmail.com
+carden@aaps.k12.mi.us
+carehall@umich.edu
+carinohomes@aol.com
+carlson54@msn.com
+carmenc@cisco.com
+carolgarland123@yahoo.com
+Carol@Greenleafrealty.com
+carolhunter2@frontier.com
+carolhunter2@verizon.net
+caroljcohen@sbcglobal.net
+carol.lenger@gmail.com
+carol.lis@tm.net
+carolncliff@yahoo.com
+carolstapleton@comcast.net
+carolynstesney@ameritech.net
+carpfenton@aol.com
+carriemanceau@yahoo.com
+carrieon@msn.com
+carrieroeder@yahoo.com
+carrikistner@sbcglobal.net
+carrilyn@acegroup.cc
+carsonshop@sbcglobal.net
+caryn.gray@mecglobal.com
+caseyh@lighthouse.net
+casimone@yahoo.com
+casps@sbcglobal.net
+cassidyj@comcast.net
+castoneback@hotmail.com
+catb45@aol.com
+catcn40@aol.com
+cathedraldean@rrohio.com
+catherine@bayviewassociation.org
+catherine.l.harte@gm.com
+catherine_m_adams@yahoo.com
+cathi_rhynard@yahoo.com
+cathskitchen@comcast.net
+cathy_brooks@hermanmiller.com
+cathy@kucherak.com
+cathylee6@juno.com
+cathypage3@hotmail.com
+cathy@region3cussa.org
+cavrames@yahoo.com
+caw716@aol.com
+cawleybl@aol.com
+cawthon@chartermi.net
+cbaker@michiganpga.com
+cbarnes@kingventure.com
+cbartos@comcast.net
+cbbishop@comcast.net
+cbean@federalscrew.com
+cb_heaser@yahoo.com
+cbixby@twmi.rr.com
+cblain1963@comcast.net
+cbraunmd@msn.com
+cbrockie@hotmail.com
+cbyrnes02@hotmail.com
+ccarson1@ameritech.net
+ccd4@sbcglobal.net
+ccesario@oldmissionwindows.com
+cchaney@cityofbryan.net
+cchapm6@columbus.rr.com
+cchroshuk@sympatico.ca
+cciesick@gmail.com
+ccjfuller@hotmail.com
+cclalka@yahoo.com
+ccleary@indy.rr.com
+cconklin7@comcast.net
+ccosteiu@misd.net
+ccp@voyager.net
+ccrowley@netpenny.net
+ccs10@alumnimail.albion.edu
+cdelave@wideopenwest.com
+c.deluca@att.net
+c.deluca@att.net
+cdemar@comcast.net
+cdepuydt@pathwaynet.com
+C_devalk@hotmail.com
+cdlr55@aol.com
+cdmiller1305@charter.net
+cdobies01@me.com
+cdparker@rogers.com
+cdscas@netzero.net
+cdsums@verizon.net
+cdudek4@sbcglobal.net
+cdwestbrook@comcast.net
+ceceliamaloneycmd@gmail.com
+cec.lewandowski@gmail.com
+ceeppler@yahoo.com
+cello1269@hotmail.com
+celwert@qcasa.com
+cemccreadie@yahoo.com
+cengland@hlecpa.com
+centralc@earthlink.net
+cewhit@msn.com
+ceyoung6@juno.com
+cferguson002@sympatico.ca
+cflander@ford.com
+cfrenell@yahoo.com
+cgaravaglia@bergsteel.com
+cgdeburton@hotmail.com
+cgoldfine2@aol.com
+c.gowman@sbcglobal.net
+cgrammatic@hotmail.com
+cgrifka48843@aol.com
+cgrysman@rogers.com
+cguy0910@yahoo.com
+ch2rx@comcast.net
+chachalaca22@yahoo.com
+chad@conradgrebel.com
+chad.t.bowles@daimler.com
+chad@thedunkles.com
+challenger53@aol.com
+chanelkami@hotmail.com
+chaneyray@aol.com
+Chantal.rosa@videotron.ca
+chantio@yahoo.com
+chapinfamily03@yahoo.com
+charismant@yahoo.com
+charleneebert@sbcglobal.net
+charles.johnson@safelite.com
+charlieedu@yahoo.com
+charlottetooo@gmail.com
+charonjenn@yahoo.com
+Chasmary1@adelphia.net
+chasselkus@comcast.net
+chcost1@fuse.net
+cheapskatecharlies@comcast.net
+Cheers908@aim.com
+chelseajaiemills@hotmail.com
+chemtee717@aol.com
+cheriemaurer@comcast.net
+chermc56@yahoo.com
+cherreitz@aol.com
+cherryme@msu.edu
+cheryl74hygiene@aol.com
+cherylb@newmangasket.com
+cheryl.burt@eaglegroupusa.com
+cherylkennelly@comcast.net
+cheryllcooper@comcast.net
+cherylmel@comcast.net
+cherylschrage@yahoo.com
+chholme@aol.com
+chip.boat1952@verizon.net
+chisey@umich.edu
+chissong12@hotmail.com
+cholstein8494@wowway.com
+chrisa@lightcorp.com
+chrisbish7@aol.com
+chrish@ceoexpress.com
+chrisheide@aol.com
+chris.horlacher@sanfordcorp.com
+chris@interlakesbases.com
+chrisjohnson05@comcast.net
+chrismarcangelo@mac.com
+chrismarcsimone@comcast.net
+chrisoconnor2@earthlink.net
+chris.oster@gm.com
+chrisray68@hotmail.com
+christa@ermischtravel.com
+christe68@aol.com
+christinecullen@comcast.net
+christine.harris@gpschools.org
+christine_murrell72@yahoo.com
+christineseno@mac.com
+christocarol@gmail.com
+christopherniedzwiecki@yahoo.com
+christophers_4@sympatico.ca
+christopher.sommers@dana.com
+chris@troutcreek.com
+christy.smith@la-z-boy.com
+christy_winnell@whirlpool.com
+chris.vanneste@smithgroup.com
+chris.waier@gmail.com
+chris_young@cogeco.ca
+chstagnaro@sbcglobal.net
+chuck@ameritech.net
+chuckbutler@usa.net
+chuckmatt@mindspring.com
+chuckpappas@wideopenwest.com
+chvykova@hotmail.com
+chynan@misd.net
+chzbrgr1@hotmail.com
+chzzshrr@aol.com
+cici.amiri@gmail.com
+cilver33@hotmail.com
+cindy1484@sbcglobal.net
+cindy4avon@hotmail.com
+cindyclough@aol.com
+cindynovotney@allstate.com
+cindytomczak@aol.com
+cindywisner@aol.com
+citysweet1@aol.com
+ciucanudobra@aol.com
+cjbash@sbcglobal.net
+cjbrilinski@core.com
+cjcolv@comcast.net
+cjdulgar@earthlink.net
+cjmch@comcast.net
+cj@mpw.com
+cjrabette@yahoo.com
+cjrozema@charter.net
+cjtorraco@msn.com
+ckeenu@hotmail.com
+ckln@comcast.net
+ckmmiller@sbcglobal.net
+ckocsan@aol.com
+Ckocsan@aol.com
+ckok@dow.com
+ckrater@wi.rr.com
+ckushler@comcast.net
+clabues1@msu.edu
+claireschultz@gmail.com
+clamcentral@hotmail.com
+clarelimerick@comcast.net
+clargo.reed@sympatico.ca
+clark.don@verizon.net
+clark.mike@yahoo.com
+clarksoncolette@comcast.net
+claudiahuffmaster@yahoo.com
+clblunden@wowway.com
+cld92786@netzero.com
+clea603@aol.com
+clean5clan@yahoo.com
+clegs3@msn.com
+cleis5@charter.net
+clfswife1@yahoo.com
+clfweaver@gmail.com
+clherweyer@aol.com
+clh@wowway.com
+cliffandmel@charter.net
+clint_guess@yahoo.com
+clintonjschlee@gmail.com
+clkint@mrtransportation.com
+clmarkstrom@aol.com
+cloudenbeck@thesterlinggrp.com
+cls19801@hotmail.com
+club21@comcast.net
+clucio@athome.com
+cmay@beckwithgroup.com
+cmb2@uakron.edu
+cm@boscospizza.com
+cmburleigh@gmail.com
+cmcalvert@roadrunner.com
+cmceceliamaloney540@gmail.com
+cmck659@comcast.net
+cmdose@comcast.net
+cmdougherty@logic.bm
+cmeld@hotmail.com
+cmettler@bethany.org
+cmflanagan@ameritech.net
+cmgerwin@hotmail.com
+cmichael.healy@ilitchholdings.com
+cminor@comcast.net
+cmonk1027@comcast.net
+cmoss@alumni.nmu.edu
+cmthorne@att.net
+cmttneal@gmail.com
+cmu82@sbcglobal.net
+cnegrut@umich.edu
+cnorris@intra-corp.net
+CNunge6341@aol.com
+coachbugsy@yahoo.com
+coachperrie@charter.net
+cobrashep@aol.com
+codybri@aol.com
+coffeeman58@hotmail.com
+coffeewithlaura@aol.com
+coggs@sympatico.ca
+coghill@mchsi.com
+cohmstedt@aol.com
+cokeefe@okeefeassociates.com
+cole22468@wideopenwest.com
+coleweber@bell.blackberry.net
+colled01@aol.com
+colleen6236@yahoo.com
+colleen.wilberding@comcast.net
+collinsd@ewashtenaw.org
+coloradogradys@gmail.com
+concorp@aol.com
+connie@ecoprgroup.com
+connieminarik@yahoo.com
+connorc18@hotmail.com
+cook2dtour@aol.com
+cooperdds@hotmail.com
+coosterhou@sbcglobal.net
+coquettefluharty@yahoo.com
+corbett@comcast.net
+corbgradjack@hotmail.com
+cosrock_pastor@hotmail.com
+countrylawn@mac.com
+courseng@aol.com
+courtdog_10@hotmail.com
+courtneycaulkins@yahoo.com
+couryfam@ameritech.net
+cowan_d@ghc.on.ca
+cowand@sah.on.ca
+cowens5579@yahoo.com
+cowlidr@kellyservices.com
+cows@voyager.net
+coxfam@chartermi.net
+coxon5@msn.com
+cpalo@comcast.net
+cpaulus@glgt.com
+cperros@comcast.net
+cpfahler@woh.rr.com
+cpochodylo@comcast.net
+cps15@bellsouth.net
+craigcabble@comcast.net
+craigcarrel@yahoo.com
+craig.cavagnetto@globalcrossing.com
+craigesler@yahoo.com
+craiglush@charter.net
+craig@mtl-troy.com
+craigo75@aol.com
+craigrioux@hotmail.com
+craigtamgrem@peoplepc.com
+craigtomai@comcast.net
+crescent26@comcast.net
+criss@pr-weld.com
+CRITTENDONS366@dpdhq.ci.detroit.mi.us
+crob67@yahoo.com
+crosbyr05@hotmail.com
+crshuby@yahoo.com
+cr_spring@msn.com
+cruisingmama2@yahoo.com
+cruzindawn@comcast.net
+csarver@domesticuniform.com
+csdangler@yahoo.com
+csdregas@msn.com
+csfix@sbcglobal.net
+cshoman@aol.com
+csiegel@comcast.net
+csmiggen@sbcglobal.net
+csmith@rayder.net
+cspeters@ameritech.net
+csrhf1947@comcast.net
+csr@raderfishman.com
+c.sthenry@comcast.net
+cstuard2@msn.com
+csuhy2@comcast.net
+ctatetot3@aol.com
+cthomas0622@yahoo.com
+ctlanefamily@yahoo.com
+c_t_madigan@hotmail.com
+ctristant@fnf.com
+ctruesr@indy.rr.com
+ctstnt@aol.com
+ctyfnd1@fuse.net
+cultura101@hotmail.com
+cumminssherry@hotmail.com
+cuneofam@hotmail.com
+cunning3@oakland.edu
+cunninghammichele@rocketmail.com
+curts254@alltel.net
+cvaluck@comcast.net
+cvklok@hotmail.com
+cwa4050@yahoo.com
+cwagner@bex.net
+cwalters48@aol.com
+cwaskevich@aol.com
+cwcabernet@comcast.net
+cweissman@fabricantweissman.com
+cwjw@wowway.com
+CWMMEEK@AOL.COM
+cwoodbeck@hotmail.com
+cwv@trihull.com
+cyd412@comcast.net
+cyndi_daniels@comcast.net
+cyndiy@triton.net
+d5ca7@aol.com
+dab0188@yahoo.com
+dablakes@comcast.net
+daceves@wowway.com
+dacrites@wowway.com
+dagraves@mapllc.com
+dagrusa@dsddance.com
+dakaczynski@comcast.net
+dakepete@comcast.net
+dakerner@comcast.net
+dakota1994@hotmail.com
+daleangus@comcast.net
+dalefedewa@yahoo.com
+dalevcharge@comcast.net
+dalewat1@aol.com
+dalewf57@comcast.net
+dalijojen@aol.com
+dallen14@insightbb.com
+dallen5@yahoo.com
+danallensr@yahoo.com
+danbryant2@aol.com
+danbstuart@yahoo.com
+dancook1@comcast.net
+dan@dankelley.net
+dandylynn@charter.net
+dane0123@charter.net
+daneturner_ttr@yahoo.com
+dangelok@gdls.com
+danielandcari@comcast.net
+danieldewindt@ussailing.org
+Daniel.Jacobs@dla.mil
+danieljbarberi@yahoo.com
+daniel.lenhardt@scotiabank.com
+Danielpmaas@maplenet.net
+danielschreiber@lapeerind.com
+danirwebb@verizon.net
+dankuz2001@yahoo.com
+danlaughlin@gmail.com
+danl@michvet.com
+danmitchell23@hotmail.com
+danny716@comcast.net
+danokomendera@aol.com
+dan@plittco.com
+danreidculligan@shaw.ca
+dansandme@hotmail.com
+danscott@mergisgroup.com
+dan.shar@comcast.net
+dan@troutcreek.com
+daolivi@sympatico.ca
+darillest356@aol.com
+Darlenema@uawlsp.com
+darnsmith@comcast.net
+darolyn1@verizon.net
+darrylllucas@hotmail.com
+dashaw42@gmail.com
+davanilm@comcast.net
+dave44941@aol.com
+daveabraham@comcast.net
+daveacky@hotmail.com
+dave@americanvideoandsecurity.com
+dave_campbell_2001@yahoo.com
+davedrinan1@aol.com
+dave@eccv.org
+dave@nexesrealty.com
+davesias@aol.com
+davewillride@comcast.net
+davewillson@comcast.net
+david_1724@charter.net
+davidakelly@earthlink.net
+davidalp00@gmail.com
+davidausman@billbrownford.com
+david.bennett@us.pilkington.com
+davidbrainard@cbc-on-line.com
+davidbr@cooperelliott.com
+david.carriere@erac.com
+david@contract-dewatering.com
+davidjurk@comcast.net
+davidk025@comcast.net
+davidkarri@hotmail.com
+davidk@dankanechev.ca
+davidmurbach@sbcglobal.net
+davidreem@aol.com
+davidrsholly@hotmail.com
+davidstile@forestcity.net
+davisdewitt1@comcast.net
+davyst@mapleleaf.ca
+dawaligora@yahoo.com
+dawes_m@stjohns.edzone.net
+dawnnotshawn@comcast.net
+dawnpryor22@yahoo.com
+dawsonjm@comcast.net
+dayl_hall_cm@comcast.net
+dbaines@mpcu.org
+dbaird02@sbcglobal.net
+dbaker578@aol.com
+dbaran@hfcc.edu
+dbetley@sjm.com
+dbgillis@sympatico.ca
+dbgran@ameritech.net
+dbither.commerce@sbcglobal.net
+dblair@foremanblair.com
+d_bloomgren@hotmail.com
+dblydy@ksrint.com
+dbodine@wideopenwest.com
+dboland30@comcast.net
+dbolts@twmi.rr.com
+dbrendtke@yahoo.com
+dbreuch@clarkhill.com
+dbrica@yahoo.com
+dbriegel@swmich.edu
+dbrown230@comcast.net
+dbwisniewski@comcast.net
+dbwong@umich.edu
+dbyrne1215@wowway.com
+dc45chicago@hotmail.com
+dc7730@yahoo.com
+dcarcus@bex.net
+dcataford@cogeco.ca
+dcbracciano@aol.com
+dcdumelle@comcast.net
+dchasco@uiuc.edu
+dchristensen@amerigistics.com
+dcole108@yahoo.com
+dconkle2@gmail.com
+dcopeland@businesspeople.com
+dcrowley@lowellschools.com
+dd4215@att.net
+ddaldine@wowway.com
+ddaldine@wowway.com
+ddaniels@dowagiacschools.org
+Ddawnkin@aol.com
+dday@manisteecountymi.gov
+DDBEAN@COMCAST.NET
+dddk_4@msn.com
+ddiacono@aol.com
+ddjack123@aol.com
+ddkerr33@aol.com
+ddonaldson9915@msn.com
+ddragonetti@comcast.net
+ddrinan@comcast.net
+ddwomack@aaamichigan.com
+deader4029@comcast.net
+dean219@aol.com
+deancrewof3@charter.net
+deandreabeecham@yahoo.com
+deanrivard@chartermi.net
+debawilk@yahoo.com
+deb.barney@bills.nfl.net
+debbedubey@yahoo.com
+debbiebreak05@hotmail.com
+debbiedeaton@wideopenwest.com
+debbie.robertson@childrens.com
+debbie_yadon@decoma.com
+debby.hannigan@corp.aol.com
+DEBD29@msn.com
+debjoseph@charter.net
+debkatz@mac.com
+deb.k.trucks@dowcorning.com
+deborah1@sandiego.edu
+debwhite98@comcast.net
+decacon54@hotmail.com
+deckedou04@yahoo.com
+deckedout04@yahoo.com
+decon52@hotmail.com
+dedmond22@att.net
+deebabe379@comcast.net
+deedeekfair@comcast.net
+dehansen@us.ibm.com
+demetriosanastasiow@gmail.com
+denbake@iserv.net
+denise.c.johnson@gm.com
+dennisbuser@comcast.net
+dennishowell@comcast.net
+denniskrawzak@sbcglobal.net
+dennis_weathers@hotmail.com
+densichau@hotmail.com
+depedwin@aol.com
+depoych@hotmail.com
+deppen@oakland.edu
+derbydd@msn.com
+derek@eeiglobal.com
+derekjohnson.231@gmail.com
+DErickson123@yahoo.com
+derrick.ayers@53.com
+dersidc@mac.com
+desantis4@comcast.net
+deschenes4@comcast.net
+detiz@usol.com
+deucedss@hotmail.com
+devo1765@comcast.net
+DeWitt6@aol.com
+deziner77@aol.com
+d_fahr@yahoo.com
+dfclgc@aol.com
+dfeeman@barrettpaving.com
+dfefopov@umich.edu
+dfenske@wensco.com
+dferrara09@comcast.net
+dfilos@comcast.net
+dflanagan@62regina.com
+dfoubist@rivernet.net
+dfrankint@aol.com
+dfscommerce@comcast.net
+dfthompson3@msn.com
+dg1@att.net
+dgbenton@apt.net
+dgmengebier@cmsenergy.com
+dgoeckel@idccorporation.com
+dgray@crittenton.com
+dgriffus@umich.edu
+dgscrip@msn.com
+dg+troutcreek@davegreenhut.com
+dgueninlelle@albion.edu
+dguibord@charter.net
+dh1460@yahoo.com
+dharkins1@cogeco.ca
+dhclemans@sbcglobal.net
+dhmerrifield@comcast.net
+dhowell1956@yahoo.com
+dhowe@mason.k12.mi.us
+dhsurg@comcast.net
+dhuntersp@aol.com
+dialgy@hotmail.com
+diamondback23@comcast.net
+diamondjob@aol.com
+dianecharb@hotmail.com
+dianematheis@comcast.net
+dianemdoran@hotmail.com
+dianeodoerfer@yahoo.com
+dianetayler@aol.com
+diann.garagiola@eds.com
+dicker22@msu.edu
+dicker677@comcast.net
+dickgoebel@tx.rr.com
+dickie07@aol.com
+diharmat1@yahoo.com
+dijanni@comcast.net
+dingojoe89@yahoo.com
+dinolalama@yahoo.com
+divallen@aol.com
+divorpahl@aol.com
+diwilks@wowway.com
+DIXIEMCKEAN@AOL.COM
+djacobs1220@aol.com
+d-jaeger@sbcglobal.net
+djblain@cogeco.ca
+djbrys@gmail.com
+djgrooms@hotmail.com
+djkarsch@cbs.com
+djlwarrenville@yahoo.com
+djmachdp@aol.com
+djmarus@ctchome.com
+d.johnson@frontiernet.net
+djohnson@isomedia.com
+djpalka@sbcglobal.net
+djpuffer@comcast.net
+djriley77@hotmail.com
+djs@cablespeed.com
+djsharer@comcast.net
+djsjjegla@aol.com
+djs@vwlst.com
+djvlaan@comcast.net
+djwhip@comcast.net
+dkaadams@hotmail.com
+dkalota7@gmail.com
+dkbitterman@aol.com
+dkd6310@aol.com
+dkenneyjr@yahoo.com
+dkgullette5@msn.com
+dkhyames@chartermi.net
+dkmattis@comcast.net
+dknooihuizen@finsvcs.com
+dkonal@pappasfinancial.com
+dkpaul@yahoo.com
+dkronig1@yahoo.com
+dkvdrie@comcast.net
+dlbress@aol.com
+dlbriggs@att.net
+dlbudreau@sbcglobal.net
+dlburch@ameritech.net
+dleffers@pdr-usa.net
+dlewand001@aol.com
+dlillie@dundeewealth.com
+dloughlin@wnj.com
+dltarantino@mmm.com
+dlterry001@hotmail.com
+d.maine@comcast.net
+d.mancina@hotmail.com
+dmandel@crain.com
+dman@hdtinfo.com
+dmaniko@chartermi.net
+dmansor@att.net
+dmassey@twmi.rr.com
+dmaxim2@cogeco.ca
+DMB419@comcast.net
+dmccan@marshallremc.coop
+dmchon@yahoo.com
+dmmstark@aol.com
+d-moneyretired93005@hotmail.com
+dmorelli2005@comcast.net
+dmorrow77@cogeco.ca
+DMSEBI@AOL.COM
+dmthom@kalcounty.com
+dmueller007@netzero.net
+dmukomel@comcast.net
+dmustardwible@aol.com
+dnacht@nachtlaw.com
+dnc11490@comcast.net
+dnmccarthy@ameritech.net
+dnngabriel@gmail.com
+dnolanbi@yahoo.com
+do7mucs@comcast.net
+dobbinsm@ciaccess.com
+dobbins@sofsurfaces.com
+docbertram@aol.com
+doclendo@yahoo.com
+dogdoc@btc-bci.com
+dok1bill@aol.com
+dolflee@empal.com
+doloresr@bserv.com
+donahuemf@aol.com
+donaldh@coslink.net
+donaldnawrocki@comcast.net
+donald.smith10@comcast.net
+donchev@sbcglobal.net
+donesi@aespeo.com
+don@graphicolor.com
+donhudak@sbcglobal.net
+donkooima@yahoo.com
+donlynnh@sbcglobal.net
+donmanvel@aol.com
+donnab_944@msn.com
+donnacarnago@aol.com
+donnagabriel70@gmail.com
+donnagabriel786@gmail.com
+donna@raylfamily.net
+donnashawn@yahoo.com
+donnauccardi@rocketmail.com
+don_nellis@msn.com
+donpat@ameritech.net
+don.reef@sprint.com
+don_vachon@bsbcom.com
+doozhee@chartermi.net
+doreen.webber@gmail.com
+dorianjb@earthlink.net
+dorikmc@yahoo.com
+dorman424@roadrunner.com
+dorotheaag322@aol.com
+dorothe@comcast.net
+dorothylatchana@yahoo.com
+dorreenclements@gmail.com
+dorschb@aol.com
+dot1061@aol.com
+dougburkholder@ymail.com
+doughankla@comcast.net
+dougmichigan@aol.com
+doug.pontious@comcast.net
+doug.roby@gpschools.org
+dougrochejr@aol.com
+dougtomayko@comcast.net
+dougweber@wideopenwest.com
+downriversmiles@hotmail.com
+doyma@att.net
+dpbroadwell@yahoo.com
+dpcampbell@prodigy.net
+dperlman77@gmail.com
+dpiacsek@msn.com
+dpjpkns4@yahoo.com
+dpkts@aol.com
+dpluta55@yahoo.com
+dppremoe@hotmail.com
+dpruitt@nationalpropertyadvisors.com
+dpseverin@verizon.net
+dquade4@comcast.net
+dra7@comcast.net
+drapulos@gmail.com
+drcarolep@comcast.net
+drdchiro69@yahoo.com
+drdonart@yahoo.com
+dreamsbeth@gmail.com
+dreaume44@wowway.com
+dredgemantommy@yahoo.com
+dreef@mspcpa.com
+drewgrzegorczyk@delta.edu
+drewsmith22@hotmail.com
+dreyerjen@comcast.net
+dreyna98@hotmail.com
+drh2776@aol.com
+driefe@prologis.com
+driest5@comcast.net
+drillnfill1991@yahoo.com
+drjetamdg@aol.com
+dr@kaltelnet.net
+drmain5@gmail.com
+drmarty6@aol.com
+drmehl@aol.com
+drmog@bellsouth.net
+drnajman@aol.com
+drogers@b-vconstruction.com
+drolentwins@att.net
+drrondadiegel@comcast.net
+drrubicz@umich.edu
+drubanners@sbcglobal.net
+drufke16088@comcast.net
+drw919@comcast.net
+dsaba@schiffhardin.com
+dsbdandy39@hotmail.com
+dsberger@comerica.com
+dscarpenter@voyager.net
+dschae10@att.net
+dschesky@aol.com
+dschom921@aol.com
+dschwartz1@comcast.net
+dscott304@comcast.net
+dseger@aol.com
+dsfodellfam@comcast.net
+dsglenarbor4@comcast.net
+dsgonzales@comcast.net
+dshutton@sbcglobal.net
+dsilvasi@aol.com
+dsjem@comcast.net
+dsjwolak@wideopenwest.com
+dslavin@gmail.com
+dsnaughton@aep.com
+dsnellgrov@aol.com
+dsokoloski@bcbsm.com
+dsouza.vijay@gmail.com
+dsparrow@crosshuller.com
+dspieker3@comcast.net
+dsrs5@comcast.net
+dssanders@comcast.net
+dstephenson10@cogeco.ca
+dstol1@wideopenwest.com
+dstrautz@twmi.rr.com
+DSuna@msn.com
+dt0671@gmail.com
+dtalbot211@comcast.net
+d.tardif2@verizon.net
+dtarnas@sbcglobal.net
+dtaylorkidz1st@yahoo.com
+dthornburgh@orchard.org
+dtrexler@etczone.com
+duakins@comcast.net
+dubkovetski@sbcglobal.net
+duboisrchd@aol.com
+DUCH07@aol.com
+dudleybush@mac.com
+dudzikrj@yahoo.com
+dudzrm@charter.net
+duenorth@tds.net
+duerr3350@aol.com
+dugbar1@yahoo.com
+duke_jodie@sbcglobal.net
+dulmer@verizon.net
+dumdom@earthlink.net
+dumsarya@msu.edu
+dupes@brktel.on.ca
+du_stokes@hotmail.com
+dvantong@yahoo.com
+dvd0216@yahoo.com
+dvd31906@yahoo.com
+dvdbanach@yahoo.com
+dvduh@aol.com
+dvikhter@sbcglobal.net
+dwelke@wowway.com
+dweller@ic.net
+d_wheeler_2000@yahoo.com
+dwhite25@cogeco.ca
+dwilliams157@comcast.net
+dwink01@aol.com
+dwitham320@comcast.net
+dwyerte@student.gvsu.edu
+dxstodda@oaklandcc.edu
+dylan_foukes@yahoo.com
+dzane@rocketmail.com
+dzaski@librami.com
+dzjlb@netscape.net
+dzkerry@att.net
+e03061@att.net
+eaamato@yahoo.com
+eac60@yahoo.com
+eadsfamily@comcast.net
+eaglefamly@yahoo.com
+eahautam@yahoo.com
+ealfredson@twmi.rr.com
+eandjwright@comcast.net
+eanncholland@aol.com
+earlypowell@comcast.net
+ebishop65@sbcglobal.net
+ebloch97@aol.com
+ebondie@hotmail.com
+ebshuert@comcast.net
+ebtaylor@umich.edu
+ecanessa@cogeco.ca
+ecbrady@comcast.net
+ecf1@bellsouth.net
+ecg@gtldc.com
+echan1@yahoo.com
+ecklundp@comcast.net
+ecpsbier@aol.com
+edbrown3772@sbcglobal.net
+eddan68@comcast.net
+ed.doyle@hp.com
+edheidishort
+edheidishort@gmail.com
+edie1mt@cmich.edu
+edmeemaronge@yahoo.com
+ed.pobur@masseycadillacplymouth.com
+edwardrago@comcast.net
+eedumire@yahoo.com
+efsaladin@sbcglobal.net
+egaw@comcast.net
+egeland1@msn.com
+ehweir@umich.edu
+eilene_kane@hermanmiller.com
+ejhewitt40@gmail.com
+ejoseph@cbre.com
+ejre@sbcglobal.net
+ekowalski@nhav.misd.net
+elaine@ekarchitect.com
+elaine.push@terumomedical.com
+elaine_yates@bellsouth.net
+elanarealtor@sbcglobal.net
+elclark@deloitte.com
+eldertime@hughes.net
+eleeson@cinci.rr.com
+elek70@comcast.net
+elennon@lennonlawpllc.com
+elizabethaduffy@sbcglobal.net
+elizabeth.careathers@detroitdiesel.com
+elizabeth.mosher@farmington.k12.mi.us
+elizabeth.stickel@catherines.com
+elizabeth@thehelmfamily.com
+eliza.leon@hotmail.com
+ellenf@rsmpllc.com
+ellen.humphrey@xerox.com
+ellen.potter@xerox.com
+elmclean@wowway.com
+elounds@comcast.net
+elsiehues@comcast.net
+elwangler@gmail.com
+elyame@msn.com
+emahrle@hotmail.com
+emajvan@xcelco.on.ca
+ematelski@gmail.com
+emaurer@postique.com
+emch@aaps.k12.mi.us
+emerkle@bdo.com
+emerlingl@aol.com
+emilyschwartzdds@gmail.com
+emitchell@saf.kaba.com
+emmatuskey@yahoo.com
+emo_mom49@yahoo.com
+englerandcompany@hotmail.com
+englishl1@michigan.gov
+enowak@umich.edu
+eoles@wowway.com
+eraasch@charter.net
+erabbot@microsoft.com
+ericandels@comcast.net
+erich.kuhlman@zehnders.com
+erichmolitor@yahoo.com
+erickson.m@sbcglobal.net
+ericksonnancy@att.net
+eric@nationalconeyisland.com
+eric@theprescriptionstore.com
+erin.crocker@colorado.edu
+eringp@hotmail.com
+erkfritzdawn@yahoo.com
+ernest.bracken@sympatico.ca
+ernie.g.neumayr@us.abb.com
+escapedriva@hotmail.com
+eshovlin@mac.com
+eshwilliams83@yahoo.com
+esiggaard@excite.com
+esmith@dtl-inc.com
+essenceofyou4731@gmail.com
+estaperfenne@rochester.k12.mi.us
+estoz@wowway.com
+eszcz@hotmail.com
+etrim@hotmail.com
+etsapraili@att.net
+Eugenestrickland89@gmail.com
+eunice.ys.kim@gmail.com
+eva@evedetroit.com
+eve.bazy@sbcglobal.net
+evergreen05@hotmail.com
+evkovacs@yahoo.com
+evkozal@yahoo.com
+ewidlund@comcast.net
+explosivo2k2@yahoo.com
+expovinny@earthlink.net
+extremefam@aol.com
+extruguru@chartermi.net
+eyesound@yahoo.com
+eykens@sympatico.ca
+e_youngdahl@hotmail.com
+eyoung@wmol.com
+fabfloorcloths@aol.com
+fabmommyof2@sbcglobal.net
+fairiegirl72@yahoo.com
+falconep@comcast.net
+familyammann@yahoo.com
+farhanm13@yahoo.com
+farley.barbara@sbcglobal.net
+farmerpatricia@att.net
+farmhutch@sbcglobal.net
+fatherhubbard@sbcglobal.net
+fatimak@gmail.com
+favulus@hotmail.com
+fbacic1@comcast.net
+fdziegel@mackinacresearch.com
+fefelady@aol.com
+felcoint@aol.com
+fentonhike@aol.com
+fergusor50@hotmail.com
+ferres@msu.edu
+fetke@sbcglobal.net
+FFETTERS@LEAR.COM
+fghandhi@yahoo.com
+fiddlin2cheyanne@aol.com
+fidz@charter.net
+fiegelist@comcast.net
+finance@raycs.com
+finetuned13@yahoo.com
+finfamily1@comcast.net
+finkville@bex.net
+fins2theleft@charter.net
+Firaskesto@hotmail.com
+firefightmd@yahoo.com
+firemanfitz65@yahoo.com
+fisherdb@wowway.com
+fisherka@msu.edu
+fishg73@yahoo.com
+fitzenreiter@gmail.com
+fitzger9@msu.edu
+fivemoorekids@aol.com
+fjnoble48@sbcglobal.net
+FKCarino@aol.com
+fkovalik@comcast.net
+flanman@cablespeed.com
+fletcherstewart@msn.com
+flinrae@aol.com
+flipside89@comcast.net
+flobee119@neo.rr.com
+flogers2@yahoo.com
+floydfamilyof5@yahoo.com
+flygirljean11@hotmail.com
+flynne13@gmail.com
+fmg@pcisys.net
+FMOURTOS@COMCAST.NET
+fmurphy@fmurphyassoc.com
+fnardoni@acromag.com
+fneubrecht@yahoo.com
+fodellgang@aol.com
+fojo63@att.net
+foleynd@yahoo.com
+footdoc@comcast.net
+force4@hotmail.com
+fordfreud@yahoo.com
+forecarr@wincome.net
+fosterjw50@comcast.net
+fouryos1et@aol.com
+foutsmail@sbcglobal.net
+foxydog2@att.net
+frakes@ameritech.net
+fran1700@hotmail.com
+francisg5@comcast.net
+frankandkris@aol.com
+frankpatzenere@comcast.net
+frank.toms@us.army.mil
+Fraser@ppg.com
+fredbinder@comcast.net
+fredmsx@aol.com
+fred.ransford@sbcglobal.net
+freeboa@peoplepc.com
+frenchy45616@yahoo.com
+fridahinsdale@yahoo.com
+friendxfour@msn.com
+friesenj@sympatico.ca
+fr_martinez@sbcglobal.net
+frnkamnt@aol.com
+fsabre@charter.net
+fsass01@comcast.net
+fsebest@yahoo.com
+fsorentino@optimvalue.com
+fsruch@sbcglobal.com
+ftaproven@comcast.net
+fudejiu@netzero.com
+fultonj@ewashtenaw.org
+funonmiela@comcast.net
+fxs@hillsdale.edu
+fzimmer@scheersinc.com
+g1942woody@aol.com
+g2gaylor@gmail.com
+gabbydenton@comcast.net
+gadamo@wowway.com
+gafleming1@cox.net
+gail7084@aol.com
+gail.altekruse@parkview.com
+gailjenerx@comcast.net
+gail.trendler@gm.com
+galgrif2@aol.com
+gall1954@yahoo.com
+gallagher2004b@netzero.net
+gallagher20@fuse.net
+games3832@comcast.net
+gandpat@aol.com
+gapeggs@hotmail.com
+garbits@comcast.net
+garciashize@aol.com
+garlockg@aol.com
+garnet@eckstrand.com
+garreynolds@comcast.net
+garychris624@hotmail.com
+garymanthey@hotmail.com
+gary.wichman@nationalcity.com
+gautan_jha@yahoo.com
+gavinlevin@chartermi.net
+gaygorman@ameritech.net
+g_babakhanyan@yahoo.com
+gbelanger@easyinsure.ca
+g.benny@charter.net
+gbhess@juno.com
+gbonamicidds@yahoo.com
+gbrooks5446@wideopenwest.com
+gbrooksii@comcast.net
+gbrummel@sbcglobal.net
+gbrusstar@gmail.com
+gc16@aol.com
+gcamm71@hotmail.com
+gchapman@csdesigngroup.com
+gcmccros@aol.com
+gcs4azul@aol.com
+gcsgrazul@chartermi.net
+gdgaudino@wowway.com
+gdotbrown@yahoo.com
+gdr111@aol.com
+gduffett@sbcglobal.net
+gedrate@wwwinc.com
+gedwards@pls-usa.com
+geesker@hotmail.com
+gemurray47@yahoo.ca
+genemodrycki67@att.net
+gentile261@comcast.net
+geoffandleeann@yahoo.com
+geokinsler@yahoo.com
+georgegroup@comcast.net
+geoshari@comcast.net
+geridorris@comcast.net
+gerinab@aol.com
+ges3960@verizon.net
+gfrederickson@jack-post.com
+ggannage@yahoo.com
+ggieleghem@msn.com
+g.giffin@infineum.com
+gglazer@reviewincus.com
+ghamilton@cedarville.edu
+gharper256@aol.com
+ghauschild@sbcglobal.net
+Ghauschild@sbcglobal.net
+gheiss4863@msn.com
+ghill002002@yahoo
+gholbein2002@yahoo.com
+ghumitz@charter.net
+giancarlofamily@juno.com
+giancarlo.pinterpe@grubb-ellis.com
+gibbonsgs@sbcglobal.net
+gibstracity@hotmail.com
+gigiv@wowway.com
+gilbert14@frontier.com
+gilmore610@comcast.net
+gilurban@aol.com
+gina@bbsbradys.com
+gina.lapp@yahoo.com
+gininab@hotmail.com
+ginny4464@aol.com
+gino@cliffeprinting.ca
+girard@chartermi.net
+gis1948@aol.com
+gjaynes@comcast.net
+gjhartay@yahoo.com
+gjkassociatesinc@charter.net
+gjschwind@sbcglobal.net
+Gjtaylor@mtu.edu
+gjuszczyk@comcast.net
+gkendell@mchsi.com
+gkernosek@envirosolutionsinc.net
+gkjbara@comcast.net
+gklorenz@comcast.net
+gkonyndyk@hotmail.com
+gkphillips5002@sbcglobal.net
+glabun2002@sbcglobal.net
+glabun@hotmail.com
+glade.lathrop@att.net
+glaliao@gmail.com
+g.lamore@sbcglobal.net
+glarson@twmi.rr.com
+glawson@wcs.k12.mi.us
+glenhackman@yahoo.com
+glennrein@sbcglobal.net
+gloann1951@aol.com
+gloria.delano@gmail.com
+glwalt@gmail.com
+gmendrek@hotmail.com
+gmoreau@comcast.net
+gmsemaan@yahoo.com
+gnjbrooks@msn.com
+gobluefan2323@yahoo.com
+gochoa6100@aol.com
+godbludgeon@yahoo.com
+goddeeri@gmail.com
+goeckelinc@aol.com
+gogden@homespunfurniture.com
+gogreen1991@aol.com
+golf2500@aol.com
+golfbonpar@hotmail.com
+golfdance@personinternet.com
+golfergranny@wowway.com
+golfnut7777@msn.com
+golfqueen1943@aol.com
+golfubet2@sbcglobal.net
+golson@serena.com
+gomad2@aol.com
+gonbirdie@aol.com
+gorderley@aol.com
+gordon_nisbet@suth.com
+goshnock@charter.net
+gosneys@comcast.net
+gpbonsai@comcast.net
+gphuber@comcast.net
+gpilchak@comcast.net
+gplaskie@aol.com
+gprather5@aol.com
+gps5657@hotmail.com
+grabbes@ameritech.net
+GRAHALL@KELLYSERVICES.COM
+graham.compton@us.army.mil
+grahamfamily7@yahoo.com
+gramps925@yahoo.com
+granadier@butzel.com
+grandma.dee@netzero.net
+granger@gwu.edu
+granney@prodigy.net
+granny2d@gmail.com
+grant@glmf.com
+granthammer@hotmail.com
+granthb@aol.com
+gray.a@hotmail.com
+greathair78@aol.com
+greconpc@aol.com
+greenenterprises@comcast.net
+greenj@lcc.edu
+gregandlisaclark@yahoo.ca
+gregandmeg@comcast.net
+greg_blair@yahoo.com
+gregdenisecoplai@comcast.net
+gregdjones25206@gmail.com
+greggyoung05@comcast.net
+greglenting@sbcglobal.net
+greglewand@aol.com
+gregory.w.schwepe@chase.com
+greg.schwepe@huntington.com
+greg@westcottdisplays.com
+grenaud11@yahoo.com
+griffintw@ameritech.net
+gringargentina@yahoo.com
+gringuy1@comcast.net
+grosseille@aol.com
+gruin1958@yahoo.com
+grumbine@sbcglobal.net
+gruszczynski@comcast.net
+grutland@aol.com
+gsafko@ermanteicher.com
+gscala@twmi.rr.com
+gschamehorn@sterling-heights.net
+gschoembs@bex.net
+gsil624@ameritech.net
+gsmfreeman@hotmail.com
+gsmithson62@yahoo.com
+gstevens2@yahoo.com
+gstoneb669@comcast.net
+gstrebeck010@earthlink.net
+gsxrbro@hotmail.com
+gtelliott@hotmail.com
+gtesr2000@yahoo.com
+gtopp@wideopenwest.com
+gtriezen@comcast.net
+guifred@aol.com
+guise@chartermi.net
+guticcindy@comcast.net
+guts62@aol.com
+guzza1ma@cmich.edu
+gvallazza@chartermi.net
+gwb1865buy@mac.com
+gwhmsh@aol.com
+gwr22@aol.com
+gwr22@att.net
+haacker@outlook.com
+hackman0521@yahoo.com
+hairsense1@hotmail.com
+haleykbatt@yahoo.com
+hallcraig@hotmail.com
+hal@shugarman.net
+hamandbeaner@yahoo.com
+hammyhill@gmail.com
+hanawalt@comcast.net
+Handleychaz@aol.com
+hanickol@aol.com
+hank_runyan@carletonpolice.us
+hanson.5@osu.edu
+hansone@msu.edu
+hardcastle725@gmail.com
+hardyj66@roadrunner.com
+harfour@bellsouth.net
+harleymanmike@comcast.net
+haroldellis022@gmail.com
+harrishome@parishonline.tv
+harrispole@hotmail.com
+harroc@iserv.net
+harry.miller@trw.com
+harry_rajt@hotmail.com
+hart3808@sbcglobal.net
+harveyanchel@matrixhealthservices.ca
+hassanamb@yahoo.com
+hatbuild@comcast.net
+hawkinsjohnr@yahoo.ca
+hawkins_lori@hotmail.com
+hbdriscoll@charter.net
+hchristian@hanover.com
+hcmarion@sbcglobal.net
+hcmiii@sbcglobal.net
+hcwinter@comcast.net
+HDABROWA@twmi.rr.com
+hdoyle@charter.net
+headgeo@yahoo.com
+healyrice@comcast.net
+heatherbobel@hotmail.com
+heather.pascoe@akzonobel.com
+heather_price33@yahoo.com
+heather.swager@gmail.com
+helmics2@aol.com
+helmsr@frcohio.com
+hemustion@earthlink.net
+Hemustion@earthlink.net
+hemyers09@aol.com
+hendricksong@marsusa.com
+henksailor@aol.com
+henway72@sbcglobal.net
+herbnsue41@hotmail.com
+hernandez.rudy.g@gmail.com
+herouvis@aol.com
+herrington@charter.net
+hersheybsmooth@msn.com
+hess@funtech.com
+heungholee@hotmail.com
+hfoxworthy@hughes.net
+hgang6@sbcglobal.net
+h.goljak@sympatico.ca
+hhgriesser@hotmail.com
+hicksfamily@centurytel.net
+highland@siua.com
+hikeannie@wowway.com
+hiker208@comcast.net
+hilliardmj@hotmail.com
+hisanjani@aol.com
+hj818@aol.com
+hjhayward@comcast.net
+hkindt46804@yahoo.com
+h.klee@sbcglobal.net
+hkleyn@grcc.edu
+hlelbach@aol.com
+hlgrogg@sbcglobal.net
+hmerkel@comcast.net
+hmistele@comlawone.com
+hoelschersteve@yahoo.com
+hoganann44@hotmail.com
+hoipkemier@juno.com
+hollanders@earthlink.net
+hollbacher@yahoo.com
+hollisti@msu.edu
+hollyandblaine@usfamily.net
+hollys7@localnet.com
+hollytraver@comcast.net
+holmepe@sympatico.ca
+holmhome@juno.com
+homedad04@yahoo.com
+homercastanedaa13@gmail.com
+hongsook01@hotmail.com
+hoopster655@aol.com
+hopkinsf16@aol.com
+hopperk@michigan.gov
+hopt@chartermi.net
+horizonext@chartermi.net
+horsemom37@aol.com
+horton@urhere.net
+hosay@lehman.cuny.edu
+hossman67@comcast.net
+hotpeppers2000@yahoo.com
+hotshot7576@netzero.net
+houghtol@gvsu.edu
+HOUSTONSILVFOX@COMCAST.NET
+howardlee@comcast.net
+howdyamy@comcast.net
+howie_kerr@hotmail.com
+hpm1@live.com
+hrhuf@voyager.net
+hrmimvoss@msn.com
+hrsmuck@comteck.com
+hs48044@yahoo.com
+hsbak@hotmail.com
+htice@columbus.rr.com
+htippett@hotmail.com
+hubs@perceptron.com
+hudanish@att.net
+hugmom@comcast.net
+hull58@comcast.net
+huntin55@aol.com
+huntingh20@comcast.net
+huston@msu.edu
+hvecchio@charter.net
+hyame1je@cmich.edu
+hydelarry@hotmail.com
+iambookie@aol.com
+Iamccov@texaschildrenshospital.org
+iaminprayer@comcast.net
+iaquaniello@comcast.net
+ibasemi@aol.com
+ike1906@gmail.com
+ilissa@lnf.com
+ilykcornonthecob@msn.com
+i.marco@yahoo.com
+imgcptreps@aol.com
+indy601man@yahoo.com
+infoarch2@msn.com
+info@goskimichigan.com
+info@heatherlanepottery.com
+info@jocelynm.com
+infolm@aol.com
+info@troutcreek.com
+info@wildswanspa.com
+inglis111@comcast.net
+irab7863@aol.com
+irelands.7.00@comcast.net
+irishkfoy@comcast.net
+isabellscherg@online.de
+isoready@aol.com
+itsue2002@hotmail.com
+ivanballard84@gmail.com
+izzydimag@aol.com
+j3weber1@wmich.edu
+ja2boggs1@yahoo.com
+jabenton@ameritech.net
+jabouganim@yahoo.com
+jacdreinhart@netzero.com
+jackbrust@att.net
+jackieaoshea@yahoo.com
+jackief@columbus.rr.com
+jackie@tawasbayagency.com
+jack@renovationsroof.com
+jack.rummel@axa-advisors.com
+jackturk06@comcast.net
+JACKWAYNE8608@SBCGLOBAL.NET
+jacky_esper@comcast.net
+jacuper@comcast.net
+jad0177@aol.com
+Jagrinch1@gmail.com
+jahstone22@yahoo.com
+jajace@comcast.net
+jajkendall@yahoo.com
+jak2@bright.net
+jakeenan@charter.net
+jakegervais@pioneersurgical.com
+jakelukecameron@gmail.com
+jala@hartmantyner.com
+jalexander@saultstar.com
+jalthefungal@yahoo.com
+jam5002@hotmail.com
+james.a.kelly@gm.com
+james.dent@cbsa-asfc.gc.ca
+james.faulkner@comcast.net
+jamesjhagan@hotmail.com
+james.mickiewicz@wkbdtv.com
+jamespattee@comcast.net
+james@pellandlaw.com
+james.sanborn@us.bosch.com
+jameswaske@comcast.net
+Jamiebfrain@gmail.com
+jamiehummert@msn.com
+jamk114@aol.com
+jamrbrooks@comcast.net
+jamroses@sbcglobal.net
+jamwross@hotmail.com
+jamyejoy@hotmail.com
+jamzuc@comcast.net
+janamclester@hotmail.com
+janbucha@umich.edu
+janeadamczyk@hotmail.com
+janefinn@acd.net
+janet4248108@yahoo.com
+janetdobson@yahoo.com
+janeteoconnor@yahoo.com
+janetjoe@hotmail.com
+janetkellerman@yahoo.com
+janet.l.gole@gm.com
+janetlspiegel@hotmail.com
+janetlynnbree@comcast.net
+Janety602@aol.com
+jangould@ciaccess.com
+janicebrady@sbcglobal.net
+janiwilliams@yahoo.com
+janluedtke@comcast.net
+janmorse@aol.com
+janvettraino@sbcglobal.net
+jaquette@charter.net
+jargyle1378@comcast.net
+jarrard@comcast.net
+jarthur@buckeye-express.com
+jas6565@aol.com
+jasonandwindy@comcast.net
+jasonbrand@gmail.com
+jason.gunder@hdfsi.com
+jasonschneider04@hotmail.com
+jasonshaw@delta.edu
+jason@steelefuneraldirectors.com
+jau@wowway.com
+jawebb24@gmail.com
+jawhip1@hotmail.com
+jaxelsonmd@gmail.com
+jaycarr63@msn.com
+jaymee_gross@hotmail.com
+jayshugars@netzero.com
+jaysilha@comcast.net
+jaythay@aol.com
+jbahlman@dstewart.com
+jbailey@baileytelecomm.com
+jbaysore@comcast.net
+jbeans388@gmail.com
+jbeaudoi@eup.k12.mi.us
+jbeaudoin@bbbmi.com
+jberman@dmc.org
+jberthaume@chartermi.net
+jbgordon@analysts.com
+jbhjames@aol.com
+jbickes@wayne.edu
+jbizango@charter.net
+jbkbunker@hotmail.com
+jbky2000@ameritech.net
+jblandau@comcast.net
+jbobavery@aol.com
+JBraum3@comcast.net
+jbraziun@gmail.com
+jbreau@live.ca
+jbring@hotmail.com
+jbrussee@superior-colour.com
+jbsearch310@yahoo.com
+jbsteele1@comcast.net
+jbuchan1@aol.com
+jbudaj@tbrcpa.com
+jbult@superior-colour.com
+j.b.white@comcast.net
+jbwon4698@yahoo.com
+jbyrd96@yahoo.com
+jbyrd@energyprod.com
+jcar415@comcast.net
+jcarlinodds@yahoo.com
+jcarnacchi@roncelli-inc.com
+jcarras@cramerminock.com
+jcbllb@chartermi.net
+jcbrooksie@comcast.net
+jcculvermd@aol.com
+jcdrechny@sbcglobal.net
+jcelgin@cox.net
+jcharboneau@comcast.net
+jchpiela@hotmail.com
+jchris6811@aol.com
+jchristensen-5@msn.com
+jckeen@umich.edu
+jclc5@comcast.net
+jclose8@hotmail.com
+jcoddo@comcast.net
+jcodo@msn.com
+j_constand@yahoo.com
+jconte187044@comcast.net
+jcooper@hpsk12.net
+jcousins@fncuthbert.com
+jcqlnsomerville@gmail.com
+jcrazy4@aol.com
+jcsasc@aol.com
+jcuster@med.umich.edu
+jcvelthoven@comcast.net
+jcyclone@mac.com
+jd1229@hotmail.com
+jdahlschwede@yahoo.com
+jdales@dales-gs.com
+jdarby@chartermi.net
+jdavidteal@msn.com
+jdditulio@ameritech.net
+jdecarlo@peoplepc.com
+j.deering@comcast.net
+jdeneau@linksim.com
+jderupa@comcast.net
+jdh1@iwarp.net
+jdh@hardwoodsolutions.com
+jdhoffman2@verizon.net
+jdiiorio1@ameritech.net
+jdlewis172@comcast.net
+jdmiller@sault.com
+jdonatelli8@hotmail.com
+jdowdy@lfd.com
+jdoyle420@sbcglobal.net
+jdrathome@yahoo.com
+jdreid3@capitolbancorp.com
+jdrikkers@charter.net
+jdtcpa1@hotmail.com
+jdtonkovich@yahoo.com
+jdweissert@aol.com
+jdylong@sbcglobal.net
+jean.ann.1956@hotmail.com
+jeanann@umich.edu
+jeanburton2002@yahoo.com
+jeanineholderead@yahoo.com
+jeanine@lunghamer.com
+jeanneoconnor2@earthlink.net
+jeannewilhelmi@hotmail.com
+jebrinkman79@hotmail.com
+jebrown@aol.com
+jedebb@aol.com
+jeepscott@sbcglobal.net
+jeffandjuli33@verizon.net
+jeffandlaurene@sympatico.ca
+jeffbancroft@scherer-trier-usa.com
+jeffdufon@ameritech.net
+Jeff.Hansen@xerox.com
+jeffhoogstra@yahoo.com
+jeff.hutting@autoliv.com
+jeffjhack@hotmail.com
+jeff.keuneke@fleetwood.com
+jefflitch@yahoo.com
+jeffmacattack@wowway.com
+jeff-miedema@hotmail.com
+jeffnkaren@embarqmail.com
+jeffreyeastman@yahoo.com
+jeff.reynolds@trelleborg.com
+jeffreywhitmore@gmail.com
+jeff.rybak@grc.nasa.gov
+jeffth9ompson51@yahoo.com
+jeffthompson51@yahoo.com
+jefoulds@aol.com
+jegoldberg@yahoo.com
+jegreene@chartermi.net
+jelennie2@yahoo.com
+jeliotbuchhop@hotmail.com
+jem1020@comcast.net
+jen026@yahoo.com
+jen.abdella@gmail.com
+jenalonzo@sbcglobal.net
+jenatassi@sbcglobal.net
+jenbrianbunker@yahoo.com
+jencoyne@bezaitis.com
+jenfranke1@aol.com
+jenkshea@aol.com
+jennestratton@aol.com
+jenniferalfonsi@yahoo.com
+jennifer.backus@dominos.com
+jennifer.bellore@farmington.k12.mi.us
+jenniferdrummond_20@hotmail.com
+jennifer_hernandez@comcast.net
+jennifer@kaleidoscopeassoc.com
+jenniferlynnschmidt@hotmail.com
+jennifer.mercier@gmail.com
+jenniferstreeter@msn.com
+jennmarie8675@hotmail.com
+jennrose85@hotmail.com
+jennschultz11@hotmail.com
+jenny@21st-psi.com
+jennym31@yahoo.com
+jenny.mccreary1@gmail.com
+jennyrich625@aol.com
+jentennrn@gmail.com
+Jentennrn@gmail.com
+jeorton@comcast.net
+jeramieslee@hotmail.com
+jeremy@fkbpc.com
+jerence02@yahoo.com
+jereneill@sbcglobal.net
+jeribits@yahoo.com
+jerilynrobison@yahoo.com
+jerryd540@aol.com
+jerryh74@hotmail.com
+jerry@oclrx.com
+jerryohearn@hotmail.com
+jerryrisher@oclrx.com
+jerry.w.rohen@smithbarney.com
+jesntom2@hotmail.com
+jessica.kurylowicz@opco.com
+jessica_prentice@hotmail.com
+jestaboy2002@yahoo.com
+jesteele1@charter.net
+jestep002@columbus.rr.com
+jevz8363@hotmail.com
+Jewelz6964@aol.com
+jewindt@yahoo.com
+jfarbell@aol.com
+jfaspen@gmail.com
+JFCALDERARO@JUNO.COM
+jfeurt@total-benefit-systems.com
+jfgrace3@aol.com
+jfitch3@ford.com
+jfloyd@wmfloydheating.com
+jforgie@charter.net
+jforster@fs4sports.com
+j@frisoffice.com
+jfrlawdg@aol.com
+jfrumery@gmail.com
+jgalls77@aol.com
+JGehrke100@aol.com
+jgillette50@live.com
+JGMcComas@comcast.net
+jgorelick@hotmail.com
+jgoulet@umich.edu
+jguelker@yahoo.com
+jgust@dow.com
+jh3157@att.com
+JHAGBERG5@MSN.COM
+jhalsey@umich.edu
+jhamlin@zeeland.k12.mi.us
+jharaszk@umich.edu
+jhart33@suddenlink.net
+jhecker@flexngate-mi.com
+jhercreg@sbcglobal.net
+jhermes@ncusd203.org
+j.herring@dowcorning.com
+jherrmann@sbcglobal.net
+jhlwds7-miscel@yahoo.com
+jhnman1@sbcglobal.net
+jho@email.com
+jhoneycutt1062@yahoo.com
+jhonigman@msn.com
+jhornemsu@comcast.net
+jhorvath1@cinci.rr.com
+jhume@watchtv.net
+jihoon.park@marriot.com
+jillbentley4@comcast.net
+jillgadola@yahoo.com
+jillmc80@hotmail.com
+jillslaght@yahoo.com
+jill-wegmann@uiowa.edu
+jillwhitaker@comcast.net
+jillyflo@comcast.net
+jimandninamac@wowway.com
+jim.beck@dowcorning.com
+jimena@comcast.net
+jimfloc@aol.com
+jimfloer@competitiontire.com
+jim.french@sbcglobal.net
+jimgonzalez25@gmail.com
+jimguthriess@gmail.com
+JimH854@Yahoo.com
+jim_harrington@comcast.net
+jimjax@wowway.com
+jim@kdmullen.com
+jim.marks@comcast.net
+jim.menzie@sysdesinc.com
+jim_murray@roadrunner.com
+jimmylane11@hotmail.com
+jimolsen8@comcast.net
+jim.piel@comcast.net
+jims25@hotmail.com
+jim@s3svc.com
+jimschwark@yahoo.com
+jimskibum@comcast.net
+jimslater@comcast.net
+jim@stl-tags.com
+jim.streeter@emich.edu
+jim.white@ubs.com
+jin108@hotmail.com
+jirenej4j@hotmail.com
+jizzard@charter.net
+jj_0428@yahoo.com
+jjackson@mcka.com
+jjallen253@aol.com
+jjbarton@centurytel.net
+jjbbaja@chartermi.net
+jjbehrend@comcast.net
+jjbova@hotmail.com
+jjcarter@mindspring.com
+jjeakle@webtv.net
+jjgruber@wideopenwest.com
+jjjjtobin@yahoo.com
+jjp59691@yahoo.com
+jjstorts@sbcglobal.net
+jjt777_99@yahoo.com
+jjtracy@sbcglobal.net
+jjtuba@earthlink.net
+jjwavro@msn.com
+jjwesley@comcast.net
+jjwms211@aol.com
+jjw@wwrplaw.com
+jkaczmarek@comcast.net
+jkaloustian@gmail.com
+jkarolyi241114mi@comcast.net
+jkathome@sbcglobal.net
+jkbarry@wideopenwest.com
+jkellyc@comcast.net
+jkfri15244@chartermi.net
+jkiefer580@aol.com
+jkiefer580@gmail.com
+jkiesby@mgh.org
+jking1704@aol.com
+jkmeteo@hotmail.com
+Jkmwines@yahoo.com
+JKNISTER@COMCAST.NET
+jknoester@hollandchristian.org
+jkohn@tc3net.com
+jkurth@bloomfield.org
+jlangan1466@wowway.com
+jlant68455@aol.com
+jlaski@comcast.net
+jlbogart@comcast.net
+jlboo02@yahoo.com
+jlcharris@comcast.net
+jledford@wideopenwest.com
+jleenancarrow@yahoo.com
+jlfulgenzi@comcast.net
+jliddell@san.rr.com
+jline1373@charter.net
+jlong@shaw.ca
+jlounsbury9137@msn.com
+jlpoplawski@sbcglobal.net
+jlramirez@comerica.com
+jlrhoda76@comcast.net
+jlubner@lubnerdesign.com
+jlundie23@aol.com
+jlwick2000@aol.com
+jlynnruns2@aol.com
+jlz38@hotmail.com
+jm0506@comcast.net
+jm4seeds@comcast.net
+jmaccready@jacksonglassworks.com
+jmaiorano@comcast.net
+jmalone@dmc.org
+jmarenti@ford.com
+jmarg51@yahoo.com
+jmattis@owens-minor.com
+jmatwood11@aol.com
+jmbckb@aol.com
+jmbenivegna@hotmail.com
+jmblaze@chartermi.net
+jmbojko@yahoo.com
+jmccabe@jpment.com
+jmcgehee@comcast.net
+jmctune@aol.com
+jmdietrich@mac.com
+jmdliv@earthlink.net
+jmdski22@aol.com
+jmeehan@treasurecoastfoodbank.org
+jmillerschin@auto-pr.com
+jmjoliet@yahoo.com
+jmkirkey@frontier.com
+jmklein@live.com
+jmlambert1@att.net
+jmm78@me.com
+jmngny@tds.net
+jmoore@ghbh.com
+jmoore@shrr.com
+jmpeterson@twmi.rr.com
+jmrsk@comcast.net
+jmshuz@comcast.net
+jmthayer@comcast.net
+jmtotoraitis@oagr.com
+jmulvenna10@comcast.net
+jmvmsw@yahoo.com
+jmyersnelson@sbcglobal.net
+jnafeltz@aol.com
+jnay@msdwt.k12.in.us
+jnbohdan@juno.com
+jnewb2148@aol.com
+jnfields1@hotmail.com
+jnies@ecsteam.com
+jnieuwkoop@yahoo.com
+jnorber1@sbcglobal.net
+jnv033@yahoo.com
+jnvillarreal@comcast.net
+jnyquist@messa.org
+jo1402@hotmail.com
+joan1555@hotmail.com
+joanfarrar@sbcglobal.net
+joanford2@aol.com
+joanmrichards@comcast.net
+joannaslaght@hotmail.com
+joanndoyle1956@sbcglobal.net
+jockozaski@att.net
+jockozaski@comcast.net
+jodiann_73@yahoo.com
+jodie@gaslightmedia.com
+jodifichera@yahoo.com
+jody.ole@sbcglobal.net
+jodyp@williamsgunsight.com
+joe088@sympatico.ca
+joecusumich@gmail.com
+joe.elin@comcast.net
+joe@fdhayes.com
+joehoran@aol.com
+joelwswan@msn.com
+joe_miller7@excite.com
+joeorlich@gmail.com
+joerg.burzer@gmx.de
+joe.trippel@gmail.com
+joe.trippel@gmail.com
+joggerphil@aol.com
+johender@ameritech.net
+johnandnanstrick@aol.com
+johnarnold@comcast.net
+johnaudr1@netzero.net
+johnbirchmeier@hotmail.com
+john@bkccpa.com
+johncooper02@sprynet.com
+johncopp@comcast.net
+john.doyle@us.contiautomotive.com
+johnfaiola52@gmail.com
+john@freshley.net
+johng@mcmahonbaldwin.com
+johnkerwin80@gmail.com
+johnlauraw@yahoo.com
+john_lindow@mascohq.com
+johnm@jcmventures.com
+johnmonp@aol.com
+johnnygresham@hotmail.com
+johnrobertschumacher@yahoo.com
+johnryan2@comcast.net
+john_schaupp@yahoo.com
+johnshell@jimcausley.com
+johnsk60@hotmail.com
+Johnsonk359@yahoo.com
+johnstonm@comcast.net
+john.thornburgh@icemiller.com
+john.travis@bankibt.com
+john.turk@mac.com
+john.welch@bronsonplating.com
+jojosid@aol.com
+jo@josorganizing.com
+joli82@comcast.net
+joliez@gmail.com
+jolinewalt@comcast.net
+jollyba@aol.com
+jollydavid@aol.com
+jolso521@uwsp.edu
+jonden@hotmail.com
+joneil@airmaninc.com
+jonesmichaelp@aol.com
+jones.six@netzero.com
+jonesy1969@msn.com
+jonnothon1975@yahoo.com
+jonsouthman@netzero.com
+jonvangalen@sbcglobal.net
+joparkerazo@yahoo.com
+jordanmiller_pt@hotmail.com
+joseph23001@gmail.com
+joseph2319@gmail.com
+josephine44@yahoo.com
+joseph.white@wsj.com
+joshua_dulin@yahoo.com
+joshuasherbin@comcast.net
+joshua.t.hernandez@gmail.com
+joshuayurich@gmail.com
+jovility1@yahoo.com
+joyce_chhun@yahoo.com
+joycestof@columbus.rr.com
+joymil@voyager.net
+joy.murray@cengage.com
+joyrondini@hotmail.com
+joystrawser@hotmail.com
+jpatsy@wowway.com
+jpeter2724@aol.com
+jpetrie@fhps.us
+jpgklein@aol.com
+jpkanan@comcast.net
+jplindow@mac.com
+jplong3999@hotmail.com
+jpmtmp01@yahoo.com
+jpnelson@rcn.com
+jpr31@chrysler.com
+jpratt0128@comcast.net
+Jpsecco@gmail.com
+jpulido@mimillers.com
+jpzimmerman24@msn.com
+jquay1@stu.wccnet.edu
+jrat0015@yahoo.com
+jratliffmoss@gmail.com
+jreits@hansonlogistics.com
+jrfkosek@aol.com
+jrgomez105@comcast.net
+jrh32@netzero.net
+jricci0728@gmail.com
+JRICCI5901@AOL.COM
+jrj710@yahoo.com
+jroartymd@aol.com
+jrocholl@comcast.net
+jroddy@umd.umich.edu
+jrogo99@toast.net
+jross4_228@comcast.net
+jrtmcvt1@msn.com
+jrw@gospelcom.net
+js306stone@yahoo.com
+js7pica@yahoo.com
+jsalga01@comcast.net
+jsandman@zoomtown.com
+jsar@hit.net
+jschrebe@glcommunitydirectories.com
+jschromke4@gmail.com
+jschrubba@newpassages.org
+jscott418@gmail.com
+jscroggin@fumcmid.org
+jsegal_kpuschel@yahoo.com
+jseyfried@comcast.net
+jsheehan@stonebrook-mi.com
+jshort@goshenschools.org
+jsimcina@aol.com
+jsmebk@comcast.net
+jsmith@incubatenow.com
+jsnesmith@comcast.net
+jsowell@bsdd.com
+jspyule@hotmail.com
+jsrenken@aol.com
+jss20@aol.com
+jst9999@aol.com
+jsteller@talontitle.net
+jsternfels@hotmail.com
+jstewart5@cogeco.ca
+jsuchara@eeiglobal.com
+jsullivan@wrightcoating.com
+jswy@umich.edu
+jszamzow@comcast.net
+jtarabas@sympatico.ca
+jtasset@pol.net
+jtbl8120@comcast.net
+jteno2155@yahoo.com
+jtenodds@comcast.net
+jterens@yahoo.com
+jtfinch@yahoo.com
+jtgiwa@comcast.net
+jthompson@bdo.ca
+jthornburgh@machiningconcepts.net
+jtlovell@hotmail.com
+jtneetz@gmail.com
+jtodevic@onlink.net
+JTousign@dmc.org
+jtquail@gmail.com
+jtravisanminc@aol.com
+jturner@vistaurum.com
+jtwebb4@airadvantage.net
+Jtyarnell@aol.com
+juanes4@yahoo.com
+juddjackson@comcast.net
+judiep75@yahoo.com
+judithawolfe@aol.com
+judith.calewarts@aurora.org
+judithjlc@aol.com
+judy1@wideopenwest.com
+judywestheimer@hotmail.com
+juicyj000@hotmail.com
+Jules65@wowway.com
+julespullin@aol.com
+juliaburns77@yahoo.com
+julia.navaro@detroitdiesel.com
+juliebatog@hotmail.com
+juliecorch@msn.com
+juliejanusz@yahoo.com
+julieland@twmi.rr.com
+julie.macarthur@yahoo.com
+julieren141@aol.com
+juliestark@sbcglobal.net
+junswor@uwo.ca
+just4kx@yahoo.com
+just.fine@hotmail.com
+justinjaguar@netzero.net
+justinliberman@sbcglobal.net
+justin.mcguire012285@gmail.com
+jvandeloo@new.rr.com
+jvandermolen@lvmcapital.com
+jvonmach@aol.com
+Jw0003@aol.com
+jwag789@earthlink.net
+jwaker@msn.com
+jwaldvogel@sbcglobal.net
+jwalew@yahoo.com
+Jwalker43130@yahoo.com
+jwalker5@twmi.rr.com
+jwalsh@rochester.k12.mi.us
+jwaltjd@gmail.com
+jwbaumgartner1@comcast.net
+jweber5547@verizon.net
+jweisler@comcast.net
+jweston@gp.lib.mi.us
+jwhiteho@med.wayne.edu
+jwilkie28@yahoo.com
+jwillbur@ymcametrodetroit.org
+jwischer@ovbank.com
+jwkraus@cogeco.ca
+jwmclellan@comcast.net
+jwolfe@us.brembo.com
+jwporter203@msn.com
+jwrchelsea@comcast.net
+jwstew61@charter.net
+jwstew61@charter.net
+jwyniemko@ejourney.com
+jyung92@yahoo.com
+jzbown@hotmail.com
+jzettelmaier@tds.net
+jzientarski@hotmail.com
+jziu@comcast.net
+jzlojutro@aol.com
+k2brzozowski@comcast.net
+k2shop@comcast.net
+k4msmith@msn.com
+kabeyett1275@aol.com
+kacraig08@yahoo.com
+kaczarkowski@yahoo.com
+kadesouza4mk@yahoo.com
+kadtree@comcast.net
+kae53@comcast.net
+kagdbeebe@comcast.net
+kahilatribe@juno.com
+kahjones@live.com
+kahm2359@cablespeed.com
+kahosack@msn.com
+KAHRN03@aol.com
+kalee8@hotmail.com
+kaling@comcast.net
+kalogan2@uiuc.edu
+kamerlo@comcast.net
+kamila.bendyk@yahoo.com
+kaminskitodd@yahoo.com
+kaml214@aol.com
+kandjtaggart@gmail.com
+kaplmom@aol.com
+kar0312@aol.com
+kar03akr04@yahoo.com
+karenanne626@aol.com
+karenannroland@aol.com
+karenbrines@charter.net
+karencolvill@comcast.net
+karen.gilbert@sympatico.ca
+karengustafson@charter.net
+karen@heiserfamily.net
+karenkbu@sbcglobal.net
+karenkritz@hotmail.com
+karen@lindylazar.com
+karenlistwan@aol.com
+karenmikejones@aol.com
+karenpierce@charter.net
+karen_reinhardt@hotmail.com
+karetom2@comcast.net
+kariroutledge@wlcsd.org
+karlisa@wowway.com
+karlotafun@aol.com
+karonjack16@comcast.net
+karstenfun@hotmail.com
+karwp@aol.com
+kasteenwyk@charter.net
+kat829@comcast.net
+katecurk@yahoo.com
+katherinemcginnis@hotmail.com
+kathietown@aol.com
+Kathleen.beda@ey.com
+kathleen@colefamilylaw.com
+kathleen.kerch@spcorp.com
+kathleen@plumspring.com
+KathRyan@aol.com
+kathyapartridge@aol.com
+kathyapartridge@aol.com
+kathy_devries@hotmail.com
+kathy_mcdonald@yahoo.com
+kathy.miller@jcisd.org
+kathys711@aol.com
+kathy.shupe@ymp.gov
+kathyw6378@yahoo.com
+kathyzeck@yahoo.com
+katiemccrary1@aol.com
+katieminello@yahoo.ca
+kayolth@aol.com
+kaz791@aol.com
+kb2697@att.com
+k banddow@dow.com
+kbatia@gmail.com
+kbbartuch@sbcglobal.net
+kbbj2000@hotmail.com
+kbender@chartermi.net
+kbind@comcast.net
+k.brant@coldwellbanker.com
+kbretz@phm.k12.in.us
+kbumstead@homesteadrealtorsinc.com
+kburkhardt@datastat.com
+kc49golfer@yahoo.com
+kcabmadison@peoplepc.com
+kcadwell_kma@yahoo.com
+kcarr143223@comcast.net
+kcaulkins68@gmail.com
+kcdcslmc@hotmail.com
+kcesario@mhc.net
+kckreft@yahoo.com
+kcm.detroit@comcast.net
+kcook10@comcast.net
+kcwin45@yahoo.com
+kcycholl@aol.com
+kdanowski@msn.com
+kdeloys@comcast.net
+kdemski@comcast.net
+kdetrude@dslindiana.net
+kdettloff@lear.com
+kdgnkid@aol.com
+kdjonas@charter.net
+kdminanov@comcast.net
+kdomad@aol.com
+kdrinkwater3@yahoo.com
+kearly@chartermi.net
+kearn1@bellnet.ca
+keenaplr@aol.com
+kefirst@dow.com
+keiden@comcast.net
+keis95i@me.com
+keithk@crosswindsus.com
+keith.michelle.redder@gmail.com
+keithrickerman@bellsouth.net
+kel267@hotmail.com
+kelbuckley@hotmail.com
+kellehermd@yahoo.com
+kelli.cain@bissell.com
+kelly.bagnall@amseco.com
+kelly.beyer@hp.com
+kelly.frakes.ccb2@statefarm.com
+kellygawron@gmail.com
+kellyhem@woh.rr.com
+kellyjean1969@hotmail.com
+kellyo@chartermi.net
+kellys@hvc.rr.com
+kelpro12@yahoo.com
+kemclean@dow.com
+ken@completeco.com
+kendemps@comcast.net
+kenealydonna@sbcglobal.net
+kenfalat@comcast.net
+kenfine@aol.com
+kengallen@wowway.com
+kengeisler@comcast.net
+kenmclaughlin@yahoo.com
+kenn32@comcast.net
+kenneth.merritt@ceflawyers.com
+kennypga@aol.com
+kenretire@att.net
+kent3207@gmail.com
+kent3236@gmail.com
+kentjohannsen@comcast.net
+kentlisa6061@sbcglobal.net
+kent.wise@sun.com
+kenyoung2000@hotmail.com
+Keokuk94@yahoo.com
+kerryTv8@yahoo.com
+kerryzinger@comcast.net
+kerschke@aol.com
+keryan@chartermi.net
+kevbo@kevbo.us
+kevin_a_rice@msn.com
+kevinbapi@aol.com
+kevine2721@aol.com
+kevinf@seagateplastics.com
+kevin.hodgins@comcast.net
+kevin.knight@safholland.com
+kevin@ptwoody.com
+Kevin.wolfram@ameritox.com
+kewlkat2020@hotmail.com
+keyesjen@aol.com
+kfarstvedt@comcast.net
+kflaska@dmms.com
+kfzielinski@aol.com
+kgawron@ford.com
+kgh1651@comcast.net
+kgilbert102@sbcglobal.net
+kgiuliani2@att.net
+kgoetzman2662@charter.net
+kgrabowski@wowway.com
+KGrabowski@wowway.com
+kgree0429@aol.com
+kgreener@gloryusa.com
+kgriffiths@cch.org
+khahn@pentastaraviation.com
+khallberg5@gmail.com
+khallett77@yahoo.com
+Kheiters@bloomfieldtwp.org
+khemphill7@yahoo.com
+khmaclean42@att.net
+khoover99@yahoo.com
+khultink@aol.com
+khunter120@live.com
+kiawags@mac.com
+kickbxgayle@bex.net
+kimballl_48917@yahoo.com
+kimberlylouis@mac.com
+kimgurt@hotmail.com
+kimmiegraham@yahoo.com
+kimoff@hcis.net
+kimpossible914@yahoo.com
+kim@reptileindustries.com
+kimslim1960@yahoo.com
+kimtykosky@yahoo.com
+kim.weaver@tenneco-automotive.com
+kindmom54@aol.com
+kingqbbq@aol.com
+Kingsley3@comcast.net
+kipandkats@aol.com
+kirkherman@aol.com
+kirklolson@msn.com
+Kirklolson@msn.com
+kirwanje@aol.com
+kitty_901@comcast.net
+kjbouwman@stmarysofmichigan.org
+kjdlewis@comcast.net
+kjkeegan@comerica.com
+kjmkmc@earthlink.net
+kjnelson2@aol.com
+kjohncris@comcast.net
+kjonesrep@comcast.net
+kjostes@charter.net
+kjseryak@hotmail.com
+kjvilona@comcast.net
+kjzera@comcast.net
+kkapelanski@yahoo.com
+kkapera@comcast.net
+kkenn84208@aol.com
+kking.spc@gmail.com
+kkohutod@comcast.net
+kkooima@hickorytech.net
+kkott@dspaceinc.com
+klaethem@aol.com
+klclub217@aol.com
+kldruyor@yahoo.com
+kleinoj@msn.com
+klemke@att.net
+klg48348@aol.com
+KLG6675@SBCGLOBAL.NET
+klinea@wabash.edu
+kl.lam@sympatico.ca
+klpebbs@aol.com
+klrowe@comcast.net
+klsucher@aol.com
+kltesnow@aol.com
+klwillman@yahoo.com
+klykken@gmail.com
+kmac76@shaw.ca
+kmach@wayne.edu
+k.macisaac@yahoo.com
+kmaxf85@yahoo.com
+kmazany@yahoo.com
+kmcphail@xcelco.on.ca
+kmdeline@dow.com
+kmerchak@peoplepc.com
+kmiller997@aol.com
+kmisch@columbus.rr.com
+kmlomas@sbcglobal.net
+kmshaug6@gmail.com
+kmswan@med.umich.edu
+kmt613@msn.com
+kmurph1125@aol.com
+kmyakamovich@hotmail.com
+knanda64@hotmail.com
+knappkin@ameritech.net
+knightshockey22@gmail.com
+knrplus3@comcast.net
+kobylakflox@yahoo.com
+kocenasek@co.genesee.mi.us
+KochCraigMI@aol.com
+koester315@comcast.net
+koetsjo@gmail.com
+kokeefe2316@comcast.net
+kolpin1@mchsi.com
+kopsh@rogers.com
+koritnid@ipfw.edu
+koromkevitch@insightbb.com
+kosachuk6@ameritech.net
+kosick123@msn.com
+KosinL01@wsdmi.org
+kostepp@umich.edu
+kovac.john@gmail.com
+kozi1@mnsi.net
+kpacifico@comcast.net
+kpage52@hotmail.com
+kpater1@hotmail.com
+kpetoskey111@comcast.net
+kpetrena@wideopenwest.com
+kpmaher11@aol.com
+kpmoesta@aol.com
+kproctor99@comcast.net
+kprogers@att.net
+kpsmith01@comcast.net
+kraetzer1988@sbcglobal.net
+krajicekamber@yahoo.com
+kramers@olivetschools.org
+krashmore@msn.com
+krecknagel@comcast.net
+kreiswirth@msn.com
+kressinmj@yahoo.com
+kriddle8593@wowway.com
+krinel@umich.edu
+krispy40@aol.com
+kriss@nhtt.com
+krisswieringa@gmail.com
+kristenfarrar98@yahoo.com
+kristenkeeg@hotmail.com
+kristennichols@comcast.net
+kristensen@comcast.net
+kristihatch@yahoo.com
+kristine13@msn.com
+kristineww@aol.com
+kristi@strategicmail.com
+kristofik@email.com
+kroeder33@comcast.net
+kroggent@umflint.edu
+kroyer@wowway.com
+krthomas1@hotmail.com
+krusfamily@comcast.net
+krzickel@charter.net
+ksdnchilcott@aol.com
+kshannon@ameritech.net
+kshawmi@comcast.net
+ksladewski@bcbsm.com
+ksmcmahan@aol.com
+ksmith2@kraft.com
+ksmshe@aol.com
+ksnjohn@chartermi.net
+ksoronen@yahoo.com
+kspaulding@transmatic.com
+kspillane@incat.com
+kstencel@aol.com
+ksullivan2004@yahoo.com
+ksummers@psedlaw.com
+ksurgical@ameritech.net
+kswolfram@charter.net
+ksyum@hotmail.com
+kszusz@hotmail.com
+ktrudeau@charterinternet.com
+ktthompson@persona.ca
+ktufnell@proassurance.com
+kturnowchyk@sbcglobal.net
+Kubejos@chrobinson.com
+kuchinic@aol.com
+kuenbird@yahoo.com.hk
+kukla13@hotmail.com
+kummerh@bellsouth.net
+kurb987@comcast.net
+kurtange@sbcglobal.net
+kurtfilips@wowway.com
+kurt.tesnow@gm.com
+kuschj@pepperlaw.com
+kuypermr@alliancecom.net
+kvanstri@grcs.org
+kvantine@in-formstudio.com
+kvdw@comcast.net
+kveryser@charterinternet.con
+kviaanko@sbdglobal.net
+kviazanko@sbcglobal.net
+kvoparil@hotmail.com
+kwilkie2000@yahoo.com
+kwpbrentwood@gmail.com
+kyates@wowway.com
+kyesungind@yahoo.co.kr
+kzoosmitty@aol.com
+kzoowave@comcast.net
+labellogic@aol.com
+la_bello_vita@sbcglobal.net
+labupte@comcast.net
+lachance@hughes.net
+lacharit@edzone.net
+lacommare@hotmail.com
+ladumais@comcast.net
+ladymcmom@ameritech.net
+lafontaine5@wowway.com
+lagatza@charter.net
+laini63@aol.com
+lakebummama@yahoo.com
+lakelizards4@hotmail.com
+lamarres@adelphia.net
+landjmurray@aol.com
+lane447@comcast.net
+langendorferdavid@msn.com
+lang_m_balazer@whirlpool.com
+Langski@comcast.net
+lankrapp@hotmail.com
+lanningamber@yahoo.com
+lap825@aol.com
+laparks@wideopenwest.com
+laportedan@yahoo.com
+larc888@comcast.net
+larickard@aol.com
+larrabee_23@yahoo.com
+larry45@chartermi.net
+larry.boon.ab8t@statefarm.com
+larry@dnpe.com
+larryeinheuser@aol.com
+larry.lyng@sbcglobal.net
+las1055@hotmail.com
+lasagnakm@sbcglobal.net
+lascrsdk-bills@yahoo.com
+lashinney@yahoo.com
+lathermb@chartermi.net
+laudu@grar.com
+laup979@charter.net
+laurachaput@gmail.com
+laura@finelinecreative.com
+laurajhayes@gmail.com
+lauramakela@gmail.com
+Laura@nexesrealty.com
+laurapiwko@yahoo.com
+laura_przekop@urscorp.com
+laurasuwinski@yahoo.com
+laurawake88@hotmail.com
+laurel.tyler@att.net
+lauren.kern@comcast.net
+lauriecarter33@att.net
+laurie.hawkins@rogers.com
+laurielw@hotmail.com
+lawick@comcast.net
+lawrencewilhelm@comcast.net
+lbarry@hpsk12.net
+lberger@twmi.rr.com
+lbjk123@juno.com
+lbsable@comcast.net
+lbuckeyes@charter.net
+lcaste9020a@charter.net
+lc@creditacceptance.com
+lchipman@tds.net
+l.c.k.lesky@gmail.com
+lclarke32@cogeco.ca
+lcote@vianet.on.ca
+lcsanibel@aol.com
+ldelonghi@personainternet.com
+ldeschner222841@comcast.net
+ldickerson@comcast.net
+ldjjadams@comcast.net
+leach62@charter.net
+leah69@comcast.net
+leahtai@umich.edu
+leanneanded@hotmail.com
+lebiaje@hotmail.com
+leebenj@msn.edu
+leemar@chartermi.net
+lee_winie@yahoo.com
+leeyogasm@gmail.com
+lefevre.mike@aod.org
+lehmanfamily@charter.net
+lenasmom@sbcglobal.net
+lenjenkins1@aol.com
+leon@oribisystems.com
+lesky.lk.t@petoskeyschools.org
+lesleighmilanowski@hotmail.com
+lesleym50@hotmail.com
+leslie9591@sbcglobal.net
+leslielvaughn@comcast.net
+leslierobinsons@comcast.net
+leslie-schrier@uiowa.edu
+leslie_stoner@kellyservices.com
+lesndebi@buckeye-express.com
+lettersrbest@buckeye-express.com
+lewism@royaloakschools.com
+lewless@sbcglobal.net
+lfieb@comcast.net
+lgherweyer@netscape.net
+lgipp@sbcglobal.net
+lgkochanowski@comcast.net
+lgolder@sbcglobal.net
+lgriggs243766mi@comcast.net
+lgross213@yahoo.com
+lharma@jasnetworks.net
+lhart1707@comcast.net
+lhartwig@juno.com
+lhbulson@comcast.net
+lhenney@twmi.rr.com
+lhittler@comcast.net
+lhydedrayton@hotmail.com
+liacruciani@yahoo.com
+libby.crabb@gmail.com
+libby.irby@cw50detroit.com
+lidiardn@netvision.net.il
+likics@yahoo.com
+liliff@zoominternet.net
+lillykahn@aol.com
+liltif7@wideopenwest.com
+limercier@mail.widener.edu
+linda_buczynski@yahoo.com
+linda.e.johnson@us.pwc.com
+linda_fleming51@yahoo.com
+linda.krause@jtmarshinc.com
+lindamoses36@yahoo.com
+lindarainville@persona.ca
+lindashallman@comcast.net
+linda_woj@godivachoc.com
+lindermanmark@yahoo.com
+lindsay_erickson@yahoo.com
+lindseynicole2102@hotmail.com
+linnae.elmore@gmail.com
+linnielou@comcast.net
+lisa1323@msn.com
+lisaabbey@charter.net
+lisabott@sbcglobal.net
+lisaetjohn@me.com
+lisa.goetz@verizon.com
+lisagrieb@wowway.com
+lisakuch@ctravelc.com
+lisamoore5@att.net
+lisarudnick@chartermi.net
+lisa.sarkisian@mdiworldwide.com
+lisasimmons6789@yahoo.com.au
+lisav_1213@yahoo.com
+lisavitale@comcast.net
+Lisa.yamin@gm.com
+list12@hotmail.com
+littlefishinmi@aol.com
+littlejimsandy@aol.com
+littleredwing24@comcast.net
+liveseyfamily@comcast.net
+liwymi_1972@hotmail.com
+lizannepappas@sbcglobal.net
+liz@lizsomerville.com
+lizr0406@yahoo.com
+lizroach@charter.net
+lizvasher@sbcglobal.net
+ljbanks1012@hotmail.com
+ljbetty@comcast.net
+ljcuddeback@aol.com
+ljd1104@sbcglobal.net
+ljforkin@wowway.com
+ljmcnally@shaw.ca
+ljodonnell@wideopenwest.com
+ljujube@comcast.net
+lkelly@tacworldwide.com
+lkent329@aol.com
+lkr9647@aol.com
+lkrapp@hrc.com
+llamb1@charter.net
+llloy@loyhartley.com
+llnash18@aol.com
+lloyddean@sympatico.ca
+Lloyd@flotronicsinc.com
+lmanship@indy.rr.com
+lmarchin@donerus.com
+l.marcy@att.net
+lmartin12@columbus.rr.com
+lmeroz@aol.com
+lmj-mt@hanmail.net
+lmkildahl64@aol.com
+lmlawlor@gcfd.org
+lmmccardell@comcast.net
+lmorrison@gbhs.on.ca
+lmpgriggs@aol.com
+lmr@comcast.net
+lms1102956@sbcglobal.net
+lmstone@comerica.com
+lmveurink@gmail.com
+lmw54729@aol.com
+lneiderq@gmail.com
+lnor63@aol.com
+lnw@iserv.net
+lobos00g@gmail.com
+locs00@yahoo.com
+logan-k@solve.net
+Londonfam@aol.com
+lonkatz@comcast.net
+lonnyshots@yahoo.com
+lonrai@rogers.com
+lookmack@hotmail.com
+lopez773@yahoo.com
+loraleigh44@hotmail.com
+loria2@hotmail.com
+LORIASHEA@SBCGLOBAL.NET
+lorijott@sbcglobal.net
+lori.marchel@bcdtravel.com
+lorim@ci.royal-oak.mi.us
+lori.mcqueen@jus.gov.on.ca
+loripage1@hotmail.com
+lori.popis@gm.com
+lorirx@comcast.net
+Lori.tepastte@gmail.com
+lorraine.dugoff@uchsc.edu
+lorrierrn@sbcglobal.net
+lotus15@embarqmail.com
+lougars@netzero.net
+louii@hallacy.org
+louisearpin@me.com
+louwhitemd@aol.com
+lovells@mi.gov
+loveshawb@netscape.net
+lovetasha@comcast.net
+loweryhaynak@yahoo.com
+Lpetterle@boothamerican.com
+lpg7@msn.com
+lpgasman1075@hotmail.com
+lpharoah@ameritech.net
+lplischke@bcbsm.com
+lpotter@egrps.org
+lpozolo@sbcglobal.net
+lprocida3@comcast.net
+lpyykkonen@wowway.com
+lrbruce1001@sbcglobal.net
+lrmazur@yahoo.com
+lrollins@chartermi.net
+lrubin1217@aol.com
+lsbarbour@aol.com
+lscohn@sbcglobal.net
+lsg823@aol.com
+lskrueger@comcast.net
+lsmith@rocksolidservices.com
+lsmith@rocksolidservices.com
+lsosnowski@yahoo.com
+lspeedo@yahoo.com
+lsquatrito@comcast.net
+lsrice0@uky.edu
+LStem1685@aol.com
+lsutton@hrblock.com
+ltdamone@comcast.net
+lthomson@columbus.rr.com
+ltmariner@comcast.net
+ltoenjes@comcast.net
+ltouma@comcast.net
+ltwallin@charter.net
+lucasblois@yahoo.ca
+luciana_antonelli@yahoo.com
+luciansr@hotmail.com
+ludwiglink@yahoo.com
+luedtke_2307@hotmail.com
+lulu_48116@yahoo.com
+lumbardh@msu.edu
+lumberstud@gmail.com
+lundbergs@acd.net
+lupil@wowway.com
+luris@me.com
+luv2scuba@wowway.com
+luv2skitr@yahoo.com
+LUVABOYDSBEAR@HOTMAIL.COM
+luvtolaugh123@yahoo.com
+lvandenbussche@comcast.net
+lvanhouzen@aol.com
+lvbuza@kalcounty.com
+lwastrauckas@aol.com
+lweber@pennlife.com
+lwismer@chartermi.net
+lwolf@easternoil.com
+lwolowich@shaw.ca
+lwood.77@comcast.net
+lwood@ci.birmingham.mi.us
+lwpolik@hotmail.com
+lwurstner@brownrigg.com
+lyalman@comcast.net
+lyndbear@aol.com
+lynellb@traversemotors.com
+lynettesqueaky@comcast.net
+lynnanddon@comcast.net
+lynncarbo@aol.com
+lynndel@hotmail.com
+lynne.kennedy@att.net
+lynnemartin@cablespeed.com
+lynn.kennedy@eds.com
+lynnmcleod@rogers.com
+lynnreesjones@yahoo.com
+lynnroell@yahoo.com
+lynnzapple@hotmail.com
+lzasuwa@comcast.net
+m1496adams@gmail.com
+M1992L@aol.com
+m1jv4@comcast.net
+m3lamm@yahoo.com
+maassamos@msn.com
+mabistodeau@msn.com
+macintyreltd@aol.com
+mac_kcmo@yahoo.com
+mackinawad@aol.com
+mackybaby2@hotmail.com
+maclaggan@sympatico.ca
+maddox6@aol.com
+maddria@gmail.com.com
+madel@verizon.net
+magraham@newsguy.com
+maguile8@ford.com
+maha4@fsuimail.ferris.edu
+mahendrick@msn.com
+mahrle.e@netzero.com
+mail4gls@gmail.com
+mail@jsmithattorney.com
+mainsts@sympatico.ca
+maizeanz@aol.com
+majaboro@comcast.net
+malzahns@comcast.net
+mamakatmg@yahoo.com
+mamaraldo@sbcglobal.net
+mamazwad@aol.com
+mambocat007@comcast.net
+mamcilroymd@aol.com
+mamie.yates@gm.com
+mamoo705@aol.com
+mandella@comcast.net
+mandi_klamerus@yahoo.com
+mandjdep@aol.com
+mandjwalter@provide.net
+mandm5748@comcast.net
+mandyohrt@hotmail.com
+mapacarbs@aol.com
+maple1832@comcast.net
+maplelawn@myclearwave.net
+maprentice@aol.com
+ma_q@yahoo.com
+mar51354@aol.com
+mara@cpw.net
+maralberts@deloitte.com
+marcella.ruscio@mac.com
+marcel@prodigy.net
+marciajean@brktel.on.ca
+marcia@lambton.on.ca
+marcjulieb@yahoo.com
+marcobev@comcast.net
+marc@sindbadsdetroit.com
+marcus.laytham@louisvilleky.gov
+marcyfisher@earthlink.net
+mareddy@travispointe.com
+margaretbr20@hotmail.com
+margaretcallaghan766@msn.com
+margbrain@hotmail.com
+margiewilso@gmail.com
+margretmancia@yahoo.com
+margueritejt@hotmail.com
+maria1207@aol.com
+marieallard@att.net
+marie.e.watson@gm.com
+marienilson@aol.com
+marilyngilin@hotmail.com
+marilyn.hall@co.bell.tx.us
+marisa.boston@gmail.com
+marjoriesiegel@gmail.com
+mark_5248846@yahoo.com
+mark911@aol.com
+markbanbury@hotmail.com
+markbowslinger@prodigy.net
+mark@donhoerrandsons.com
+markedman58@yahoo.com
+mark.haase@stocksupply.com
+mark-karen@comcast.net
+mark.levine@ipaper.com
+markopel@comcast.net
+markrbl@hotmail.com
+marksarafa@comcast.net
+mark_seski@ml.com
+mark.shelly.coleman@comcast.net
+mark@speedysites.net
+markt@bcmac.com
+mark@thehagertys.org
+mark@whitted.com
+markzwygart@yahoo.ca
+marlail@aol.com
+marleyj@sbcglobal.net
+marlo_58@hotmail.com
+marpaw10@aol.com
+marrobin@umflint.edu
+marsdena@hotmail.com
+marshafranke@gmail.com
+marshalljd@comcast.net
+marshawrenn@wowway.com
+martigra68@hotmail.com
+martinbabcoak1@gmail.com
+martinbabcock000@gmail.com
+martinbabcock261@gmail.com
+martingorno123@hotmail.com
+martycastle@hotmail.com
+martymryan8@hotmail.com
+martyniak@comcast.net
+mary5120@comcast.net
+maryannhayden@hotmail.com
+maryba@sbcglobal.net
+marybester@comcast.net
+mary_beth_bullen@ajg.com
+marycastorri@comcast.net
+mary_e_wade@yahoo.com
+maryfmora@comcast.net
+marykurt@bex.net
+mary_k_wilkinson@yahoo.com
+marymcelyea@gmail.com
+marymoir@sbcglobal.net
+maryolex@yahoo.com
+maryparsons77@comcast.net
+maryt710@aol.com
+mary.thornton@gm.com
+mary_vdb@hotmail.com
+maspacher@woh.rr.com
+mastermaier@hotmail.com
+mattbogdan27@yahoo.com
+matteresa@aol.com
+matt_fam@hotmail.com
+matt@h4smi.com
+matthewlarosa@sbcglobal.net
+Matthew.Stusick@Xerox.com
+mattholt1980@yahoo.com
+mattmardell@yahoo.com
+matt@metzgertrucking.com
+mattrobinson37@hotmail.com
+matts2243@aol.com
+mattshep@comcast.net
+mattsinke@hotmail.com
+mattsmithomatic@gmail.com
+matt-susannah@chartermi.net
+mattthecopierguy@gmail.com
+matt.vandlen@pfizer.com
+mauratoppe@wowway.com
+maureenthomas123@hotmail.com
+maverickandgoose@verizon.net
+mavisdc@ameritech.net
+max4dogs@aol.com
+maxie820@aol.com
+maxig88@att.net
+maxwellph@comcast.net
+maxxp21@sbcglobal.net
+maya329@comcast.net
+mayles@sbcglobal.net
+maynards.06@gmail.com
+mb3561@sbcglobal.net
+mbcroft@gmail.com
+m.bedell@sbcglobal.net
+mbelc1959@yahoo.com
+mbfabits@hotmail.com
+mbiggs206@yahoo.com
+mbird68835@aol.com
+mbkinsella@comcast.net
+mbkrater@yahoo.com
+MBNICH@aol.com
+mbollan3207@wowway.com
+mbonhard@aol.com
+mboothe@lakecountypress.com
+mboster@cinci.rr.com
+mbowman4@insight.rr.com
+mbthomas21@yahoo.com
+mbuck@us.ibm.com
+mbuszek@wideopenwest.com
+mbyma@juno.com
+mcaponi79@yahoo.com
+mcatlin@futureeng.com
+mcbarry@chartermi.net
+mcbeths@dteenergy.com
+Mcconnell46788@frontier.com
+mccordbmwm3@yahoo.com
+mccullough6@comcast.net
+mcdanielpack@charter.net
+mcdonaldlinda@msn.com
+mcdtenn@aol.com
+mcfhome@comcast.net
+mcgees@accesstoledo.com
+mcgill2002@gmail.com
+mcgilteach@aol.com
+mchomic@hotmail.com
+mckeowns@voyager.net
+mclainadam@yahoo.com
+mclaujd@verizon.net
+mclc1333@comcast.net
+mclean8@comcast.net
+mcmalnor@chartermi.net
+mcnab@comcast.net
+mcnally@chartermi.net
+mcnoles@wowway.com
+mcnowotarski@bex.net
+mcoates@novi.k12.mi.us
+mcolleenbennett@hotmail.com
+mcox@galaxyc.us
+mcquillan_carol@yahoo.com
+mcrowley@greatlakesind.com
+mcruhala@msn.com
+mcsigkirkland@charterinternet.com
+mctaggartstone@yahoo.com
+mcthorrez@comcast.net
+mctrois@shaw.ca
+mczarniecki@ameritech.net
+mdagostino@knology.net
+mdalian@sbcglobal.net
+mdbraggs@sympatico.ca
+mdeegan123@sbcglobal.net
+mdfische@oakland.edu
+mdgrant@comcast.net
+mdifi1104@aol.com
+mdiggs@mtco.com
+mdkrx73@yahoo.com
+mdlinderman@gmail.com
+mdmustard@aol.com
+mdoor@lettinga.com
+mdornan@ci.wixom.mi.us
+m.driest@comcast.net
+meadorktpg1@netscape.net
+meadsara@msu.edu
+meashby@comcast.net
+meathsmith@yahoo.com
+mebkenny@msn.com
+mechreid1@aol.com
+meclaypool@wow.com
+meetama@aol.com
+megjim23@bellsouth.net
+megmaddeb@netzero.com
+mehowison@dow.com
+MeijerJP@MSN.com
+MeijerSylvia@Hotmail.com
+melanie@melaniebowen.com
+melawd@aol.com
+melbock@hotmail.com
+melhosler@hotmail.com
+melinda.kozulis@comcast.net
+melissa_brockway@yahoo.com
+melissa.hammett@citizensbank.com
+melissaj73@comcast.net
+melodeewillson@gmail.com
+melrose@att.com
+mendywebb@hotmail.com
+mengus_vang@hotmail.com
+menichols@comcast.net
+mercedw@aol.com
+mercina3@dex.net
+merk.bear@jbtool.com
+MerylWay48054@yahoo.com
+meschaller@dow.com
+mestasek@cablespeed.com
+METhut@aol.com
+metzger.4@hotmail.com
+metzljm@aol.com
+mevans9@yahoo.com
+meyoung00@comcast.net
+mfbreen1@yahoo.com
+mfhinz@gmail.com
+mfraley3@woh.rr.com
+mfschlesinger@yahoo.com
+mfunato@yamaha.com
+mfw@mechanova.com
+mga874@comcast.net
+mgauk@comcast.net
+mgauthier59@comcast.net
+mgerber@rogers.com
+mg_neumayr@yahoo.com
+m_goblue51@yahoo.com
+mgonyon@hotmail.com
+mgopierce@wowway.com
+mgray5@woh.rr.com
+mgreene@cicchicago.com
+mgrobards@aol.com
+mgtomaszewski@yahoo.com
+mhandley@wideopenwest.com
+mhantman@aol.com
+mhecker101@comcast.net
+mhegel_98@yahoo.com
+mherna92@comcast.net
+mhgualdoni@yahoo.com
+mholdfam@netins.net
+mhood@eup.k12.mi.us
+mhouser@apolloexpressinc.com
+miacopel@yahoo.com
+micbruhar@comcast.net
+michael.chumbley@hotmail.com
+michaeldiegel@comcast.net
+michael.j.smith@gm.com
+michele_pirrone@hotmail.com
+michella_r@hotmail.com
+michelle_moran@comcast.net
+michelleosb@gmail.com
+michelleroyer@comcast.net
+michellerwolfe@comcast.net
+michelle.t.fisher@gm.com
+michelle@yoyostudios.com
+michgray@comcast.net
+michlegal@sbcglobal.net
+michwill01@comcast.net
+mickeywaw@charter.net
+mick.story@jackson.com
+midler2@aol.com
+midwestce@hotmail.com
+mikeandbethnanzer@yahoo.com
+mikeandsuedecker@gmail.com
+mike_barbie@hotmail.com
+mikebloom22@cogeco.ca
+mike.dekoning@kingstreetrading.com
+mikefirefightermedic@yahoo.com
+mike@freedmangoldberg.com
+mike@garneragency.com
+mike@gmandsons.com
+mike.harper@sympatico.ca
+mikehiggy@juno.com
+mikeh@pagelithoinc.com
+mikejacobs@comcast.net
+mikejd4@comcast.net
+mikejennfrighetto@yahoo.com
+mikejweber@yahoo.com
+mikekeys@rogers.com
+mikelisalin@aol.com
+mikelogan@synergy-env.com
+mikentlc@yahoo.com
+mikeorwig@cavtel.net
+mikeski46@comcast.net
+Mike@skmmarketing.com
+Mike@tourconnection.com
+mikol@bex.net
+mikol@buckeye-express.com
+millertimeranch@yahoo.com
+millmed@iserv.net
+millsgang@shaw.ca
+miltkailis@me.com
+minanov@comcast.net
+mindymay@hotmail.com
+minnasung@gmail.com
+mischjen@yahoo.com
+mishenks@comcast.net
+misses5e@yahoo.com
+missyang82@hotmail.com
+missy.root@compuware.com
+missytimpaige@yahoo.com
+mistephans@sbcglobal.net
+mitchell36@ameritech.net
+Mitster@aol.com
+mivol@sbcglobal.net
+miz16@sbcglobal.net
+mj523@comcast.net
+mjbell@bbbmi.com
+mjeguitar@ameritech.net
+mj_french@hotmail.com
+mjgandham@hotmail.com
+mjhaist@wowway.com
+mjkotwick@aol.com
+mjlalonde@aol.com
+mjmalone@umich.edu
+mjnhorn@hotmail.com
+mjoseph@crawfordgrp.com
+mj.paquette@att.net
+mjq@fnwusers.com
+mjrowley10@comcast.net
+mjsail@comcast.net
+mjsanborn@dcmi.net
+mjsanborn@tc3net.com
+mjschlaff@aim.com
+mjschultz357@charter.net
+mjtaylor1228@comcast.net
+mjungwir@yahoo.com
+mjurek01@yahoo.com
+MJUREWI@GMAIL.COM
+mjwestbrook@comcast.net
+mjzickel@charter.net
+mkaat@comcast.net
+mkane13@aol.com
+mkaravite@comcast.net
+mkavaleski@meemic.com
+mkeeyn@aol.com
+mkehlenbeck@delfield.com
+mkillian@comcast.net
+mkkirish@aol.com
+mkllprice@gmail.com
+mkmcalister@gmail.com
+mkmeynjn@aol.com
+mknezek@hotmail.com
+mkrone@new.rr.com
+mkuciemba1@gmail.com
+mkw003@wowway.com
+mkzollner@comcast.net
+mlabadie@charter.net
+mlabardini@gmail.com
+mlabelle@wowway.com
+mlair1@aol.com
+mlalonde@expensereduction.com
+mlandschulz@ofllc.com
+mldeneszczuk@comcast.net
+mldl@wideopenwest.com
+mlduane@wideopenwest.com
+mledvina@sbcglobal.net
+mlewis2864@aol.com
+mlima@comcast.net
+mlindig@gmail.com
+mlingohoops@yahoo.com
+m_lukacik@hotmail.com
+mlv86@aol.com
+mlwslw2@aol.com
+mmack43@comcast.net
+m_mackool@yahoo.com
+mmahrle@valiantindustries.com
+mmbagates@charter.net
+mmccann@travelers.com
+mmccaughey@woh.rr.com
+m.mckenna@hotmail.com
+mmelchi@comcast.net
+mmerkel19@comcast.net
+mmerritt57@comcast.net
+mmfeahen@earthlink.net
+mmfraser@brktel.on.ca
+mmgigax@charter.net
+mmilkie@steelcase.com
+mmiller5@hfhs.org
+mmisch@aaahawk.com
+mmonette9@comcast.net
+mmorsfield@comcast.net
+mmouse101@yahoo.com
+mmozdzen@yahoo.com
+mmpugh123@yahoo.com
+mmrondo@hotmail.com
+mmtci@prodigy.net
+M.Murray1@comcast.net
+mmvan08@hotmail.com
+mnarbulu@mac.com
+mnedley01@comcast.net
+mnikitas@tds.net
+mnmckellar@mshiplaw.com
+mnusbaum@flexfab.com
+moesern@wideopenwest.com
+mohlman@rbc.org
+mojomatti@sympatico.ca
+molly_megan_emma@yahoo.com
+momluvscr@yahoo.com
+mommasmail43506@yahoo.com
+mommbs@aol.com
+mona_beydoun@hotmail.com
+moncea@cogeco.ca
+moneypit386@prodigy.net
+monika@beddingtons.com
+monklkorn@aol.com
+montaguegr@aol.com
+moonhjoh@yahoo.com
+moorjen@hotmail.com
+moosaman@comcast.net
+moose@elenas.com
+moranatslah@comcast.net
+morganbush@hotmail.com
+morlows2@wowway.com
+morozco@comcast.net
+morrillhouse@aol.com
+motorcitycolors@comcast.net
+motov@engineer.com
+mountaingremlin@comcast.net
+mpastorino@flintjournal.com
+mpatrick51@yahoo.com
+m.p.bruns@fuse.net
+mpherren@yahoo.com
+mplaethem@aol.com
+mplague@ameritech.net
+mpogoda@comcast.net
+mpquinto@comcast.net
+mprenehan@msn.com
+mprocter49@hotmail.com
+mqbaker@aol.com
+mquinnrcs@wideopenwest.com
+mra-inc@chartermi.net
+mramos52@gmail.com
+m.rant@charter.net
+MRCJM31@aol.com
+mredilla@sbcglobal.net
+mremeis@aagreen.com
+mrgs10@yahoo.com
+mrjusa@aol.com
+mrm18@comcast.net
+mrockyacres@att.net
+mroth5670@comcast.net
+mrouse-ayoub@fishmangroup.com
+mrraftery@comcast.net
+mrrdtrip7@aol.com
+mrsalyce@comcast.net
+mrscherschel@yahoo.com
+mrsjas305@sbcglobal.net
+mruddy10@yahoo.com
+mruiter@netzero.net
+mr.vanvorhis@yahoo.com
+mryder@rogers.com
+msalgolf@sbcglobal.net
+msapp@bortocpa.com
+msboehnlein@sbcglobal.net
+msd3563@aol.com
+msgolions@yahoo.com
+msharma1111@yahoo.com
+mshort34@comcast.net
+mshuttleworth1965@hotmail.com
+msjanborn@dcmi.net
+mslotwinski@genchem.com
+msmarthafl@aol.com
+msmogor@comcast.net
+msteinhilb@comcast.net
+msugirly@hotmail.com
+msugnet@sbcglobal.net
+msuraci@msn.com
+mswalker@kwcom.net
+m.sweeney@wowway.com
+mtacross@yahoo.com
+mtaft02@comcast.net
+mtb123@comcast.net
+mteckerle@prodigy.net
+mtheile@co.genesee.mi.us
+mtpasek@yahoo.com
+mtrainor2@charter.net
+mtripp@ameritech.net
+mtsklindy@yahoo.com
+mtt_simons@yahoo.com
+mturner810@aol.com
+mufaddalk@gmail.com
+murphman51@hotmail.com
+murphy785@aol.com
+murrayc9@msu.edu
+murrayjil@gmail.com
+mush11@comcast.net
+mv12251@hotmail.com
+mvanderlaan1@hotmail.com
+mveneri@comcast.net
+mvfulton@hotmail.com
+mvincentini@hotmail.com
+mviviano@viviano.com
+mwalsh@hap.org
+mwdoran@sbcglobal.net
+mwehby@tacworldwide.com
+mweidenbenner@comcast.net
+mweindorf@datastat.com
+mwiegand81@yahoo.com
+mwilkinson6@yahoo.com
+mwolf10@charter.net
+mwwheato@hotmail.com
+mx-mom@voyager.net
+my4boys_4@yahoo.com
+My_Charleyboy@yahoo.com
+mykolenk@umich.edu
+myla.lindstrom@yahoo.com
+myoung@berkley.k12.mi.us
+mystery_912@hotmail.com
+mzajac@att.net
+MZawacki@twmi.rr.com
+mzure@aol.com
+nadettemj@bigfoot.com
+nadiuha82@mail.ru
+nadolnyjenna@yahoo.com
+nagyc@atlastechnologies.com
+najatlafave@comcast.net
+nald810@comcast.net
+nanakafy@adelphia.net
+nancyapeterson4@aol.com
+nancybert@shaw.ca
+nancy_burch@hotmail.com
+nancycohrs@wowway.com
+nancy.crawford@kla-tencor.com
+nancygf@aol.com
+nancylewandowski@comcast.net
+nancylpartridge@aol.com
+nancy.monterusso@nationalcity.com
+nancymulder@hotmail.com
+nancy.pozo@nationalcity.com
+nancy_sergeant@sbcglobal.net
+nancy@vannoord.net
+nancyvanoyen@hotmail.com
+nanno2024@hotmail.com
+nantzw@bronsonhg.org
+nataliaodish@yahoo.com
+natalie_heger@yahoo.com
+nater1285@aol.com
+nathan.kyle07@gmail.com
+nbdpierce@aol.com
+nbgeckler@cummins.com
+nbncsnow@sbcglobal.net
+nbshippy@sbcglobal.net
+nbugli@sbcglobal.net
+nbutkovich@yahoo.com
+ncn46@aol.com
+ncobe@alphacomm.net
+ncolameco@sympatico.ca
+ndclubmanager@comcast.net
+ndmaloof@comcast.net
+ndrosso@gmail.com
+nealnickerson@comcast.net
+nealstone123@gmail.com
+ned1213@comcast.net
+nedadams@hotmail.com
+ned@specialtygroup.com
+neejur@yahoo.com
+nellecarter54@yahoo.com
+nemeth.jeff@gmail.com
+nenashaw@hughes.net
+netmom3@juno.com
+neubauer@butzel.com
+neufamily1999@yahoo.com
+newall@aol.com
+newcomb@michiweb.com
+newdr99@yahoo.com
+newf130@gmail.com
+newilson6406@att.net
+newryed@gmail.com
+Nfaught@hrc-engr.com
+ngarrison@cinci.rr.com
+ngiebink@umich.edu
+ngkadolph@aol.com
+ngrady08@gmail.com
+ngross8262@aol.com
+nh01478@hotmail.com
+nhendry@comcast.net
+nherringshaw@comcast.net
+nichols48335@yahoo.com
+nichols_jbe@yahoo.com
+nick834@comcast.net
+nickpiunti@comcast.net
+Nick@realestatewebmasters.com
+nickroopas@yahoo.com
+nick.tomoff@gmail.com
+nicoleautogrill@sbcglobal.net
+nicolekelly1@sbcglobal.net
+nikgjakovari@yahoo.com
+nikki@troutcreek.com
+nina@investmentreo.com
+ninapicco@hotmail.com
+njdaniel@sbcglobal.net
+njdavis1@yahoo.com
+njkaneris@sbcglobal.net
+njordan@ccrtc.com
+njotersen@verizon.net
+njslav@watchtv.net
+njstem@bright.net
+nkgolden@comcast.net
+nkimball@mmbjlaw.com
+nkubal@sbcglobal.net
+nlambert@twp.independence.mi.us
+nlhulbert@charter.net
+NList@chs-mi.com
+nlplynn@bellnet.ca
+nlstern@ameritech.net
+nlwalker6@aol.com
+nm3djs@comcast.net
+nmarcellet@aol.com
+nmm50@yahoo.com
+nmstar@ameritech.net
+nmugrad88@comcast.net
+nmwozniak@wowway.com
+nnngrier@aol.com
+nnsmirnova@yahoo.com
+noelkott@sbcglobal.net
+nomosumma@yahoo.com
+noneej@gmail.com
+norman.orr@kkue.com
+normkar@wideopenwest.com
+norm_l_bird@comerica.com
+norris@pcs.k12.mi.us
+norson1@aol.com
+northpt1@aol.com
+notto@comcast.net
+nowakn2002@yahoo.com
+nowicki@centurytel.net
+npfink@aol.com
+nquay@umich.edu
+nquist@comcast.net
+nrhollow@charter.net
+nsanolan@aol.com
+nsergeant@cranbrook.edu
+nshumway@biggby.com
+NSK@neilskahnpc.com
+NSKPC@aol.com
+nsmith9698@yahoo.com
+nsoap1@verizon.net
+nspaniolo@aol.com
+nthompson@jvtr.com
+ntmadison@anqey.com
+nurseronnie@sbcglobal.net
+nycroyboy@aol.com
+nyesch5@hotmail.com
+nyesweb@sbcglobal.net
+nymanr@meijer.com
+nymjoy@gmail.com
+nzamiara@comcast.net
+nzinck@buckeye-express.com
+oakleaf7@sbcglobal.net
+oasis009@yahoo.com
+oasishairco@yahoo.com
+ob1and2@charter.net
+oberon1266@sbcglobal.net
+obert11@yahoo.com
+obrien@millercanfield.com
+oconnorx2@sbcglobal.net
+odiekenyon87@yahoo.com
+odshot68@yahoo.com
+oedy@adelphia.net
+office@napoleonlawn.com
+ogdengary@hotmail.com
+okray.mbc@hotmail.com
+olivepaste@hotmail.com
+olliep80@sbcglobal.net
+olmsteadsteve@aol.com
+olsenjim@aol.com
+olsonml@yahoo.com
+olyak101@yahoo.com
+omegav7@aol.com
+oneals@gmail.com
+onebowtie@gmail.com
+oneillrjo@ameritech.net
+oneofakind@wowway.com
+oneoftwo@live.com
+oneputtcj@aol.com
+only1bear@hotmail.com
+onthebeachnow48360@yahoo.com
+Opfermanj@comcast.net
+orbitx7@sbcglobal.net
+orgmiller2@gmail.com
+osockey2@comcast.net
+osworthda@yahoo.com
+otnanborg@att.net
+ozr130@yahoo.com
+p0wilso1@gmail.com
+pacartwright@thinkarbor.com
+pacellas@yahoo.com
+pachas@sbcglobal.net
+pachesney1@yahoo.com
+paddyoates@hotmail.com
+padillan@comcast.net
+Paellis20@aol.com
+pagardella@wideopenwest.com
+page_m@oakhills.hccanet.org
+pahalpin@charter.net
+paigeandmichael@comcast.net
+pai@progressiveassociates.com
+pakipp@ameritech.net
+palmich66@att.net
+pam@bardhvac.com
+pamduvallgifts@aol.com
+Pamela.Hankins@stahls.com
+pamela.rose@gm.com
+PAMMYKING8384@AOL.COM
+pamoeller@aol.com
+Pamorell2@comcast.net
+pamvlip@msn.com
+pandssouckey@nti.sympatico.ca
+Panettafamily@comcast.net
+papa.bob2@netzero.net
+paps73@hotmail.com
+parkchic@live.com
+parkerdirtcycle@sbcglobal.net
+parker-rick@hotmail.com
+parmstrong62@comcast.net
+parr_c@hotmail.com
+parris_apt@yahoo.com
+pat5lane@aol.com
+pat92900@yahoo.com
+patangquinn@comcast.net
+patawal@comcast.net
+pat.barazsu@sbcglobal.net
+pat.d@wintersteiger.com
+patjoarnold@aol.com
+patknirk@aol.com
+patlriggs@comcast.net
+patoonya@yahoo.com
+patotoole11319@aol.com
+patricegage@hotmail.com
+patriciastroker@sbcglobal.net
+patrick.doyle@lpl.com
+patrick@mmgtv.com
+patricknortoni2@gmail.com
+patrickwitt@comcast.net
+pattimommy@aol.com
+patton1193@aol.com
+patty11932@sbcglobal.net
+patyamin@yahoo.com
+paulaharris@juf.org
+paulajohnson@ontargetliving.com
+paulamleach@hotmail.com
+paulaperfect@roadrunner.com
+paulasummers@charter.net
+paul.beitz@cbre.com
+paulette.miernicke@canadianbearings.com
+paul_g_dufault@comerica.com
+paul@homesbywellman.com
+pauline.lajoie@omnicare.com
+paulkulik11@comcast.net
+paulmorrison1@sympatico.ca
+paulpajot@yahoo.com
+paulshaf@windstream.net
+paul_styles@ameritech.net
+paultwa@charter.net
+paus205@aol.com
+paynepj@bellsouth.net
+pbarton@ncresa.org
+pbecker@umich.edu
+pbenedic@umich.edu
+pbkenyon@comcast.net
+pbmyers45068@yahoo.com
+pbrugger11@comcast.net
+pbulgarelli@yahoo.com
+pcavanagh@assante.com
+pccormier@gmail.com
+pcfoxhouse@comcast.net
+pcmcdonagh@att.net
+pcornell@deloitte.com
+pcs@svsu.edu
+pd_angela@hotmail.com
+pdarin@comcast.net
+pdemaris@comcast.net
+pdoherty@morris-dohertypc.com
+pdooley@locl.net
+pdq@i-is.com
+pdriedgr@mnsi.net
+pdtamt@hotmail.com
+pdufault@twmi.rr.com
+peakmc@yahoo.com
+pearlrosew@hotmail.com
+peg1172@comcast.net
+peggyhutcheson@comcast.net
+peggy_k@hotmail.com
+peggy@peggymorrow.com
+peggy@schummersskishop.com
+peghollingsworth@yahoo.com
+pennykiss@hotmail.com
+pennywilley@comcast.net
+penrodr@gdls.com
+pep078@yahoo.com
+perimeterllc@aol.com
+perini@maximcompany.com
+perlbrooks@charter.net
+perodw@michigan.gov
+persetto4@cogeco.ca
+peso08@charter.net
+pete.karsten@baker.edu
+peterand3@msn.com
+peterd234@yahoo.com
+peter_frye@sbcglobal.net
+peter.klimek@mti.ca
+peterpiper@shaw.ca
+PeterRuicci@hotmail.com
+petersb4@msu.edu
+peterskg@sbcglobal.net
+petestulipbug@yahoo.com
+petho.thomas@con-way.com
+petriken@sbcglobal.net
+pfrising@hotmail.com
+pfthomas1@yahoo.com
+pfurrugia@twmi.rr.com
+pgeshel@hotmail.com
+pgrammatico@earthlink.net
+pgriddell@msn.com
+PGrigsby3338@yahoo.com
+pgswifty@yahoo.com
+phagerman@diplomatpharmacy.com
+pharma1valpo@yahoo.com
+phayes25@comcast.net
+phbilles@comcast.net
+phfavero@msn.com
+philg160@hotmail.com
+philg1@comcast.net
+philgarcia01@gmail.com
+philgarcia02@gmail.com
+philip.labelle@marriott.com
+philjody@comcast.net
+phillip.crane021@sympatico.ca
+phoying@hhbonline.net
+phughes@voyager.net
+phyllis@beavertile.com
+phylv@att.net
+pianoman1679@hotmail.com
+piper3@peoplepc.com
+pipers0511@comcast.net
+piriechiro@sbcglobal.net
+pitre@comcast.net
+pizenson@cinci.rr.com
+pj60140@yahoo.com
+pjakubik@comcast.net
+pjames@transunion.com
+pjburns@bex.net
+pjcavanaugh@yahoo.com
+pjdushane@ameritech.net
+pjguthat@hotmail.com
+pjhark@msn.com
+pjharvey59@hotmail.com
+pjhumphrey80@hotmail.com
+PJJLCAD@aol.com
+pjkaempfer@aol.com
+pjlj99@aol.com
+pjnalley@chartermi.net
+pjn@seritis.com
+pjohns3867@comcast.net
+pjohnson@fosterswift.com
+pjoiner@ruf.org
+pjpj15@aol.com
+pjwatson@umich.edu
+pkadesch@comcast.net
+pkallgren@prestolitewire.com
+pkc906@aol.com
+pkerich@att.net
+pkmurrell@aol.com
+pknoy@comcast.net
+pko1@charter.net
+pkolowich@aol.com
+pkpelfrey@comcast.net
+pkyle@lakeorion.k12.mi.us
+plajoie10@aol.com
+plamarche@blonde-little.com
+plamen@ratchev.com
+plchouinard@aol.com
+pleasehelp990@gmail.com
+pledwards@lighthouse.net
+plehlke@aol.com
+plh04rome@yahoo.com
+plhoelscher@juno.com
+plnoll@yahoo.com
+plodzeen@netscape.net
+plucas72@aol.com
+PLVaughn@aol.com
+p.mackinnon@sympatico.ca
+pmceneany1@aol.com
+pmclaypool@hotmail.com
+pmerckx@charter.net
+PMHankins@gmail.com
+pmiles@twmi.rr.com
+pnprpket@aol.com
+pobmsu@yahoo.com
+pod4@comcast.net
+poirier3780@hotmail.com
+Poiriey@outlook.com
+pokermarv@sbcglobal.net
+pokorskij@yahoo.com
+polderdd@meijer.com
+polly.anderson@aurora.org
+pollywog08@hotmail.com
+polovicks@sbcglobal.net
+pondk@sbcglobal.net
+pontenure@sbcglobal.net
+portnoy@epi.umn.edu
+ppadesky@gmail.com
+ppalguta@woh.rr.com
+ppatel@globaleprocure.com
+ppd12ham@netscape.net
+ppeifer@cogeco.ca
+pporea1@buckeye-express.com
+pprsul@msn.com
+prcrutch23@comcast.net
+prdtrbk@sbcglobal.net
+precision_dwalker@yahoo.com
+prestonmichelle@hotmail.com
+prettykitty682@yahoo.com
+prevensn@yahoo.com
+pricel@firestoneindustrial.com
+prieveley@cogeco.ca
+priorn@juno.com
+profftu@hotmail.com
+prosttim@yahoo.com
+prspc@aol.com
+PSAROLI@YAHOO.COM
+psellenraad@sbcglobal.net
+pshaeffam@aol.com
+pshaffst@aol.com
+p.stoll@bex.net
+pstone_foo@yahoo.com
+psu1972@sbcglobal.net
+psymsu@hotmail.com
+pthomps1@yahoo.com
+ptsherlock@aol.com
+ptspower@yahoo.com
+pujo22@gmail.com
+pupandponylover@aol.com
+purdue_boiler97@yahoo.com
+putneyw@hotmail.com
+p.vberg@att.net
+p_walsh@sbcglobal.net
+pwasc2000@aol.com
+pwhitecar1@yahoo.com
+pwilson72@yahoo.com
+p.wilson@charter.net
+pwsimmons313@yahoo.com
+pytels@comcast.net
+qbecks@hotmail.com
+qman46@att.net
+QUECHO@gmail.com
+queenjoan1@juno.com
+quibby23@comcast.net
+quix@wowway.com
+R1000yzf@hotmail.com
+r1soave@msn.com
+r2r3@aol.com
+raavery@comcast.net
+racapollice@yahoo.com
+rachelle2311@gmail.com
+rachelle.beale@comcast.net
+rachelmreid@hotmail.com
+racinjitter@aol.com
+racy90@hotmail.com
+raelgin@cox.net
+rafaeltorre@hotmail.com
+rafferty44@aol.com
+rafoltz@hotmail.com
+rahhalter@aol.com
+raineyd@meijer.com
+rajashreenat@hotmail.com
+rajcarpenter@msn.com
+rajusadiq@aol.com
+rald711@yahoo.com
+rallyback@comcast.net
+ralph0307@aol.com
+ralphhess@bellnet.ca
+r.a.macinnis@shaw.ca
+ramonelliot003@gmail.com
+ramosdental@sbcglobal.net
+ramr55@aol.com
+rana_adou@yahoo.com
+Randall8790-2006@sbcglobal.net
+randallstark@hotmail.com
+randdcellars@aol.com
+r.andj.minello@sympatico.ca
+random_pja@yahoo.com
+Randydpearce@yahoo.com
+randy@galvcast.net
+RandyLPepper@eaton.com
+randymcarthur@navigatorpg.com
+randyvanh@msn.com
+ransell1@visteon.com
+rapidsgrand@yahoo.com
+rarssr@aol.com
+rashmona@yahoo.com
+rasmith17@yahoo.com
+ratrombley@comcast.net
+raw918@comcast.net
+raydalrymple@comcast.net
+raymond.hauck@nebulascorp.com
+raymond.mmje@gmail.com
+raynman219@gmail.com
+razsorbet@aol.com
+rb4owat@wsdmi.org
+rbaines@mpcu.org
+rbainter@newmarcorp.com
+rbaranski@yahoo.com
+rberas@donerus.com
+rblazoff@yahoo.com
+Rbloc3@aol.com
+rbm1006@aol.com
+rbojck@aol.com
+r.bokram@us.ionbond.com
+rbragaw@bragawpr.com
+rbreece88@hotmail.com
+rbrite@wowway.com
+rbrown9@cogeco.ca
+rbryant156@aol.com
+rbutler7@cogeco.ca
+rbyrne@sha.net
+rcbnet@earthlink.net
+rclark9@indy.rr.com
+rcojocari@cogeco.ca
+rconrad@bright.net
+rcoopcal@aol.com
+rcounsman@thurswell.com
+rcshores@comcast.net
+rcwilliams@sbcglobal.net
+rdefrain@hrc-engr.com
+rdeobis@juno.com
+rdkcs@aol.com
+rdnejm@aol.com
+rdswain@comcast.net
+rduffy3@sbcglobal.net
+readcr@comcast.net
+Reaganauts@aol.com
+realesttam@aol.com
+reasoner@compasswa.com
+rebeccalanders@yahoo.com
+rebeccapillion@sbcglobal.net
+rebekah56@charter.net
+rebelwab@columbus.rr.com
+rebvan100@aol.com
+redbadger4@cox.net
+redstealth32@wowway.com
+redwing19@gmail.com
+Reedet1@yahoo.com
+reedteam@chartermi.net
+regnier39@atc-enviro.com
+reidv8@aol.com
+rek@kirksauto.com
+relund@charter.net
+reneechristen@aol.com
+reneeharrison@comcast.net
+renga.rajan@hotmail.com
+rengleha@itape.com
+rennyf@umich.edu
+ret08@comcast.net
+rexandjulie@nctc.com
+rfanone@comcast.net
+rfaught@emmco.com
+rfblazeroffice@sbcglobal.net
+rfinch007@aol.com
+rflinn@korthaseflinn.com
+rfluker206@aol.com
+rfort@att.net
+rgarywinters@zoomtown.com
+rgbernstein
+rgbrowers@yahoo.com
+rgerych@att.net
+rgesquiere@comcast.net
+rgmeisel@sbcglobal.net
+rgowan@randmcnally.com
+rgreve7939@aol.com
+rgrlrd@aol.com
+rgsclabassi@aol.com
+rgunsell@hotmail.com
+rgwgo@comcast.net
+rhalonen@comcast.net
+rhett_a_barnes@yahoo.com
+r.hillary@hotmail.com
+rhmcontractors@gmail.com
+rhofmeyer@chartermi.net
+rhondagreg87@aol.com
+rhondamorin12@yahoo.com
+rhrogala@att.net
+rhuber@firstii.com
+rhuetters@aol.com
+rhuth.eshb@hobbs-black.com
+richard1161@sbcglobal.net
+richard.archuleta@comcast.net
+richard.mcmullen@wmich.edu
+richard.n.hovsepian@flagstar.com
+richard@primericagroupone.com
+richardsonk_59@hotmail.com
+richard.storch@hp.com
+richborgetti@sbcglobal.net
+rich.dubois.l8hb@statefarm.com
+richmallino@yahoo.com
+richr@det.citation.net
+RICHROPA@GMAIL.COM
+rich.royer@compuware.com
+rick@amanick.com
+rickangelawillis@comcast.net
+rick.belleau@hotmail.com
+rick@careyelectric.com
+rick@danberry.com
+rick@envirodevelopmentsolutions.com
+rick.huser@thomson.net
+rick@jarzembowski.com
+rickjen@xcelco.on.ca
+rickseymour44@comcast.net
+rickthedogtrainer@gmail.com
+Rickvenner@gmail.com
+Rickyacarlson@westbristol.com
+rickyd@cogeco.ca
+rickynelsen@yahoo.com
+ric@nat6enterprises.com
+ricsly@aol.com
+rigneykj@aol.com
+riley@byron.k12.mi.us
+rimmsouth@yahoo.com
+rinscho@comcast.net
+risselba@hotmail.com
+Ristinkay@sbcglobal.net
+ritad949@aol.com
+ritasmythe7@att.net
+rita.thomas@comcast.net
+ritatopouzian@hotmail.com
+RJ31L48@aol.com
+RJanderwski@comcast.net
+rjcoppol@zoominternet.net
+rjdamon1967@yahoo.com
+rjfrankowski@yahoo.com
+rjin15@yahoo.com
+rjkwhite@verizon.net
+rjmaleszyk@wowway.com
+rjntina2@yahoo.com
+rjones110@cox.net
+rjsharbor@nc.rr.com
+rjvamv@comcast.net
+rk711@comcast.net
+rke511@yahoo.com
+rkelly@narmco.com
+r.kenglish71@yahoo.com
+rkvgolfs@aol.com
+rlcpa@hotmail.com
+rldame@yahoo.com
+rlds36@msn.com
+rlenard4834@wowway.com
+rlhill@wideopenwest.com
+rlindsey1@cogeco.ca
+rll2204@aol.com
+rlramirez@comerica.com
+RLRChelsea@aol.com
+rlstorer@dow.com
+r.luckhardt@accellfitness.com
+rlwagner99@comcast.net
+rmanceau@hotmail.com
+rmartyniak1@comcast.net
+rmaruk@scionsteel.com
+rmarz@onemain.com
+rmchuds@aol.com
+rmcintosh@co.adams.in.us
+rmfahrer@yahoo.com
+rmills48@sbcglobal.net
+rmistor@wideopenwest.com
+rmoroso@shaw.ca
+rmschlick@aol.com
+rmsgregory@optonline.net
+r.musch@dowcorning.com
+rmyers@noneman.com
+rmyns@hotmail.com
+rndrea@aol.com
+rnimps@wcoil.com
+rnnickerson@comcast.net
+roar1971@comcast.net
+roarmenges@aol.com
+Rob9877@aol.com
+robbarb@aol.com
+robb@baeind.com
+rob.debertoli@city.elliotlake.on.ca
+robert.campbell@watsonwyatt.com
+robert.eger1@gmail.com
+robertf@myself.com
+robert.heighes@emich.edu
+robertimhoff@sbcglobal.net
+robert.powell@kohler.com
+robertringenberg@comcast.net
+robert.r.perkins@pfizer.com
+robertsonedshell@aol.com
+robfazio@comcast.net
+rob.fuller@shaw.ca
+robindelaney@comcast.net
+robin.gallagher@yahoo.com
+robinpartlo@gmail.com
+robis1ca@cmich.edu
+robolson@comcast.net
+robrm@pga.com
+rocker918@gmail.com
+rocoko@comcast.net
+roderinsurance@acd.net
+rodesh@aol.com
+rod.filcek@dana.com
+rodlisah@comcast.net
+rodneygerth@hotmail.com
+roger48640@chartermi.net
+rogermdooley@yahoo.com
+roger.quagliano@quebecorworld.com
+rogersj@msu.edu
+rogerwkohn@aol.com
+rogsailer@charter.net
+rojobeery@aol.com
+rollsj@comcast.net
+rolmaster7@charter.net
+rolson@comcast.net
+romabug@hotmail.com
+roman5@wowway.com
+romashukla@hotmail.com
+ron952@hotmail.com
+ronald_winters@dell.com
+ronbertrand30@hotmail.com
+ron_boisclair@hotmail.com
+ronbrant@umich.edu
+ron.hayes@jus.gov.on.ca
+ronjoschrubba@yahoo.com
+ronquinlan@yahoo.com
+ronronowicki@msn.com
+ronsumel@btc-bci.com
+ron_yokum@yahoo.com
+rooderic@hotmail.com
+roofdr2347@aol.com
+roperd@gvsu.edu
+r_orler@hotmail.com
+rosecity1@comcast.net
+roselld@mindspring.com
+rosen@catholicweb.com
+rosey4@aol.com
+rosie1515@sbcglobal.net
+rosiemary@msn.com
+rossfamily75@yahoo.com
+routlek@walledlake.k12.mi.us
+roxanne@avci.net
+roxanneflaska@comcast.net
+roxie.mcumber@gmail.com
+roy.klein@chase.com
+royw@zoominternet.net
+roz@safesolutionsinc.com
+rpartaka@comcast.net
+rpda@hbci.com
+rperuzzi@ford.com
+rpetey26@hotmail.com
+rpetiprin@comcast.net
+rphitch@ameritech.net
+rpkys@aol.com
+rpmichal@aol.com
+rprovine@hotmail.com
+rpx2@comcast.net
+rquack@sbcglobal.net
+rraade@ewgi.net
+rracic@sympatico.ca
+rrconstruction05@sbcglobal.net
+rreese@umich.edu
+rrf606@comcast.net
+rrice55@wowway.com
+rroberge@pptc.gc.ca
+rroelofs777@yahoo.com
+rrorah@netexp.com
+rrrobien@hotmail.com
+rrubin8045@aol.com
+rrudloff@comcast.net
+r.russ@comcast.net
+rrvaughn@comcast.net
+rrzepecki@yahoo.com
+rsamanich@aol.com
+rsanorm@aol.com
+rservojr260445mi@comcast.net
+rsflood2112@comcast.net
+rsimon101@hotmail.com
+rsmiley3@woh.rr.com
+rsmith0047@xplornet.com
+rsmoffat55@hotmail.com
+rsmythe7@comcast.net
+rsstauffer@hotmail.com
+rst90@comcast.net
+rstacy@trilla.com
+rstjohn@chartermi.net
+rstruble@iowatelecom.net
+rsuchara@comcast.net
+rtg2years@yahoo.com
+rtpcarrier4@att.net
+rtptash@yahoo.com
+rubberneckinlife@gmail.com
+rubia702000@yahoo.com
+rudolphshorter@att.net
+runbone@sbcglobal.net
+runner4180@comcast.net
+runninfine1@juno.com
+Runwus4@aol.com
+rusnern@hotmail.com
+russ_n_sue@yahoo.com
+russsmith@comcast.net
+russwatson9193360@hotmail.com
+rusty@marymaxim.com
+ruthann113000@yahoo.com
+ruthbbraun@gmail.com
+rvandje@comcast.net
+rvdw@comcast.net
+rwallace@chartermi.net
+rwbought@smig.net
+rweibel@waw.misd.net
+rwelper@comcast.net
+rwender@wenderandco.com
+rwendling@tkns.net
+rwhitney@dillin.com
+rwhughes@voyager.net
+rwjohnson@aaamichigan.com
+ryanhallberg@comcast.net
+ryan.miller3@usbank.com
+ryanperkins160@hotmail.com
+ryantracht@hotmail.com
+rye1949@msn.com
+Ryrabaker@aol.com
+r_zaleski@hotmail.com
+s06.sbender@wittenberg.edu
+sabenton@comcast.net
+sabrina.reilly@ncoa.org
+saddie721@comcast.net
+saenzl@walledlake.k12.mi.us
+sail1boat@hotmail.com
+sakkink@lcc.edu
+sales@gibbsmachinery.com
+sales@spikelawrence.com
+sal@hardwoodsolutions.com
+salinejuli@aol.com
+samanthabrighteyes@hotmail.com
+samltd2@hotmail.com
+sammom2@wowway.com
+samosnowitz@bex.net
+sanaqvi51@hotmail.com
+sanderson157@insightbb.com
+sandraa@resortdata.com
+sandra-reier@coldwellbanker.ca
+sandraross@wideopenwest.com
+sandsleepman@gmail.com
+sandvb@frontier.com
+sandy.a.wolf@gm.com
+sandybarnes1@yahoo.com
+sandyfleet@sbcglobal.net
+sandysmail@comcast.net
+sandyvictor10@gmail.com
+sangart@ameritech.net
+sansoterraDMSDN@aol.com
+santorma@comcast.net
+sanwerner@comcast.net
+saprill@comcast.net
+sara@doyledetroit.com
+sarah.cox21@yahoo.com
+sarahhaynesheath@gmail.com
+sarahkjen@hotmail.com
+sarahwiese@gmail.com
+sarge@sargentstitle.com
+sartz@comcast.net
+sashi_arthi@yahoo.com
+satkcat@sbcglobal.net
+saultgirl@yahoo.com
+sawdon5c@aol.com
+sayarbama1@msn.com
+sazane@magellanhealth.com
+sb91581@aol.com
+sbagdade@aol.com
+sbalchin@cablespeed.com
+sbenefield@allstate.com
+sbenvenu@dmc.org
+sbeslock@bloomfieldtwp.org
+sblack01@comcast.net
+sbrovont@hotmail.com
+sbsan@charter.net
+sbsteinberg@comcast.net
+sbt@charterinternet.com
+sburns@mpro.org
+scannon1554@hotmail.com
+scarletn@oakgov.com
+scensley@aol.com
+schaberg@i-c.net
+schads@earthlink.net
+schafdawg37@yahoo.com
+schafermom5@yahoo.com
+schalla@choiceonemail.com
+schalter@comcast.net
+schdt597@cs.com
+schefferly@acd.net
+schillerhome@comcast.net
+schimmingm@aol.com
+Schoahs@shaw.ca
+schoen14@comcast.net
+schrotie@charter.net
+schuler.mant@comcast.net
+schw21@aol.com
+schweizer5@comcast.net
+sci419@twmi.rr.com
+sciaramita@aol.com
+sckim_home@hotmail.com
+sclarren@comcast.net
+sclay@chartermi.net
+sclaye@ameritech.net
+scohn@donerus.com
+sconway@suburbancollection.com
+scooter37@chartermi.net
+scotemi@comcast.net
+scott654@comcast.net
+scott.bania@detroitk12.org
+scottdianewilks@aol.com
+scottfairty@yahoo.com
+scott@geoproductsinc.com
+scottgriswold@sympatico.ca
+scottheidij@sbcglobal.net
+scottjensen427@gmail.com
+scottjoldersma@sbcglobal.net
+scott.main@comcast.net
+scotts26@sbcglobal.net
+scott.s.cory@gm.com
+scott.shefman@freg.com
+scott.vince@cdsonline.com
+scrapbook030@yahoo.com
+scswatts@hotmail.com
+sczegus2@att.net
+sdailey11@comcast.net
+sdalga@comcast.net
+sdaudlin@wolverineoil.com
+sdeptula@us.ibm.com
+sdidion@verizon.net
+sdimilia@charter.net
+sdimoski@tmgsports.net
+sditullio@nyc.rr.com
+sdkallen@comcast.net
+sdknoff@aol.com
+sdleq@sbcglobal.net
+sdmeiste@hotmail.com
+sdrake303@comcast.net
+sd_sleight@yahoo.com
+sdwainz@yahoo.com
+s_dykas@yahoo.com
+seachele@ameritech.net
+seadrift@cinci.rr.com
+seantdonnelly@hotmail.com
+sedillon3@yahoo.com
+seejulierun@gmail.com
+seenile@comcast.net
+seh630@yahoo.com
+seisenbeis@pglr.com
+selykins@embarqmail.com
+sengelhart@tds.net
+seo.sales.traffic@gmail.com
+seowook@earthlink.net
+sep@h2law.com
+seprice@gmail.com
+serge.devolder@gmail.com
+sergedevolder@gmail.com
+serhome007@yahoo.com
+sestey@dykema.com
+sewcrazy06@comcast.net
+sewooster@hotmail.com
+sfarwell22@aol.com
+sfgeyer@woh.rr.com
+sfghandhi@yahoo.com
+sfinniss@yahoo.com
+sfisher@techgroupinc.com
+sflechsig@mackadmin.com
+sfraley@danis.com
+sfrankers@att.net
+sgallagher@stbkil.com
+sg@eclipsecapitalgroup.com
+sgeorge2@wowway.com
+sgford@sbcglobal.net
+sgloss@somersetent.com
+sgolbiw@sbcglobal.net
+sgormely61@aol.com
+sgoss@judge.com
+sgshoha@gmail.com
+sgslavov@yahoo.com
+shaaron.hogan@sorin-na.com
+shabnamk2003@yahoo.com
+shafershuffle@gmail.com
+shaller8@hotmail.com
+shana.suris@sbcglobal.net
+shanemac_444@hotmail.com
+shannonpackan@gmail.com
+shannonparis@hotmail.com
+shariandscottmoser@comcast.net
+shari@beekalt.com
+sharic2006@yahoo.com
+sharon.denham@plantemoran.com
+sharongc@brktel.on.ca
+sharonjaeckle@comcast.net
+sharon@kanyafamily.com
+sharon.koscik@osumc.edu
+sharonlfowler@bellsouth.net
+sharonoftroy@yahoo.com
+sharons@umich.edu
+sharonyee@sympatico.ca
+sharslip@aol.com
+shashultz@yahoo.com
+shawdave1@yahoo.com
+shawn.gaidis@gmail.com
+shaw.rhonda@gmail.com
+shbaker@wowway.com
+shbarber77@hotmail.com
+sheepacres@gmail.com
+sheila.joki@citigroup.com
+Sheilam4@sbcglobal.net
+sheila.whelan@sbcglobal.net
+shelleykj@aol.com
+shelleyrenae@comcast.net
+shellogan@sbcglobal.net
+shellybattershell@yahoo.com
+shellycorky@hotmail.com
+shel.vantassel@gmail.com
+shep-4@comcast.net
+sherbot15@lycos.com
+sherbowm@co.oakland.mi.us
+shergordon@aol.com
+sherri.fetters@sbcglobal.net
+sherrymueller@wowway.com
+sherry_taubitz@yahoo.com
+shersen@mchsi.com
+shevy98@hotmail.com
+shigeki_arimoto@hi-lex.com
+shirley@korb-toy.com
+shkim@hatci.com
+shopaholic24seven@gmail.com
+shopperpe@att.net
+shortj@plainfieldchartertwp.org
+showman67@yahoo.com
+shrekvader@gmail.com
+shubbell@chartermi.net
+shunter@amwaygrand.com
+shurst2003@yahoo.com
+shzrogers@aol.com
+sian.hewitt@nissanofwindsor.com
+siannaco@nycap.rr.com
+sideburnsie@yahoo.com
+sie1213@hotmail.com
+sierads1@msu.edu
+sietzcl@aol.com
+sillycourt81@aol.com
+simardhouse@comcast.net
+simmerdwn@aol.com
+simone1988@aol.com
+simonstein@comcast.net
+sistercarey@aol.com
+sitacompton@att.net
+sixcoe@aol.com
+sixschmitz@sbcglobal.net
+sixtimesadad@aol.com
+sjkale@ameritech.net
+sjkuehner@comcast.net
+sjonge04@hotmail.com
+sjpshera@aol.com
+sjsharkey@comcast.net
+sjswan@cmsenergy.com
+skblaze@comcast.net
+skdrjones@sbcglobal.net
+skeetrgolf@hotmail.com
+skemmerling@calldcc.com
+skendrick@sbcglobal.net
+skibumm56@yahoo.com
+skibumsfour@aol.com
+skidogsc@netzero.net
+Skierbuddies@aol.com
+skileversee@hotmail.com
+skiman10@juno.com
+skinner@msu.edu
+Skinner@msu.edu
+skipliz@adelphia.net
+skipper380@aol.com
+skis46@comcast.net
+skisoo@hotmail.com
+sklanseck@yahoo.com
+skmaniaci@yahoo.com
+skomendera@aol.com
+skooima@sio.midco.net
+skooly@msn.com
+skoshar@aol.com
+skraymon@sbcglobal.net
+skron@comcast.net
+skuypers@comcast.net
+sky_ski_blue@yahoo.com
+slanda45@yahoo.com
+slavicgal@yahoo.com
+slavin@oakland.edu
+slb@oaklandcountycu.com
+sleathers@wideopenwest.com
+sledski1@aol.com
+sledzinski@aol.com
+slewis6842@aol.com
+sleynzon@twmi.rr.com
+slison@dow.com
+slklein@hughes.net
+SLKLEIN@HUGHES.NET
+slklein@netzero.net
+SLKLEIN@NETZERO.NET
+slmlayman@hotmail.com
+slocumagency@nomadinton.net
+sloptop@sbcglobal.net
+sls007401@charter.net
+slscdp@aol.com
+slyjul_6973@yahoo.com
+slynnejohnston@mail.com
+smaat@charter.net
+smakim@comcast.net
+smalleys4@comcast.net
+smannnard@yahoo.com
+smasih4@hotmail.com
+smcki48214@aol.com
+smcnab@comcast.net
+smeachum@schupan.com
+smebius@comcast.net
+smeyer65@yahoo.com
+smgriffin3@excite.com
+smgriffin6@yahoo.com
+smh48094@yahoo.com
+SMILAN@AMERISURE.COM
+smiscavish@marcusmillichap.com
+smithfamily36@ameritech.net
+smithjwfam@yahoo.com
+smithpeg@me.com
+smittyc50@hotmail.com
+smkad@yahoo.com
+smkuo2@yahoo.com
+smlarsen1@juno.com
+smrobert@rogers.com
+smsinkovitz@yahoo.com
+smw4639@gmail.com
+smythfive@aol.com
+snbksutton@msn.com
+sneddy1@ejourney.com
+snganton@att.net
+snieman512@msn.com
+SNILE@AOL.COM
+snk1355@msn.com
+snods99@hotmail.com
+snofz@yahoo.com
+snooks15@aol.com
+snowmandown@yahoo.com
+snowmap@aol.com
+snowmassey@aol.com
+snpoppy@fuse.net
+snuggy1967@yahoo.com
+soccermomdmk@aol.com
+socljerker@aol.com
+soilsteve@yahoo.com
+solivitacoopers@cfl.rr.com
+soneil@kpmg.ca
+songwei_zhang@yahoo.com
+sonlit7@hotmail.com
+sonnycherry@mac.com
+Sonnycherry@mac.com
+sosnowitz@buckeye-express.com
+sovelmj@umich.edu
+sovis@msu.edu
+sozimek@lightingsupply.com
+spanglera10@comcast.net
+spank_79@hotmail.com
+sparkyb@email.com
+spartan440@msn.com
+spartanbj@comcast.net
+spartans11@prodigy.net
+spartans1fan@aol.com
+spartans48309@wowway.com
+spartie06@yahoo.com
+SpartyMax@comcast.net
+spashman7@yahoo.com
+spearritt@sbcglobal.net
+spence1003@aol.com
+spencers11@charter.net
+spetersen@ingmarmed.com
+speweike@msn.com
+spfoser@earthlink.net
+spheisler@ciaccess.com
+spiceman1@wowway.com
+SPietka@aol.com
+spk970@aol.com
+spliff13@msn.com
+Spliff13@sbcglobal.net
+spolen@pol.net
+spollesch@bppattorneys.com
+spongebob9498@aol.com
+spookymaier@comcast.net
+sportute@comcast.net
+s_proksch@yahoo.com
+spsendelbach@hotmail.com
+spsnancyrn@aol.com
+SPYDERWEBB4771@YAHOO.COM
+spydrwomyn2@msn.com
+srb39@yahoo.com
+srdreez@gmail.com
+srdriesenga@charter.net
+sremenapp@hotmail.com
+sriebe@austin.rr.com
+srlbushmanjr@msn.com
+srobell@med.wayne.edu
+srsiemers@aepriverops.com
+srusgo@aol.com
+ssaku@aol.com
+ssartori@comcast.net
+ssbassett@ligtel.com
+ssbassett@localnet.com
+SSCochran@dow.com
+ssemrou@milwpc.com
+sshcpa@comcast.net
+sslip@att.net
+ssmaynard@hotmail.com
+ssmith@lesmith.com
+ssolys@comcast.net
+ssong_79@hotmail.com
+ssoo44@yahoo.com
+ssookkiiee@gmail.com
+sspringer@scslakeview-k12.com
+ssteffe@yahoo.com
+sstoner@lipsonneilson.com
+stableinut@aol.com
+stacey.a.smith@comcast.net
+staceybaker@campbelldodge.com
+staceybasa@yahoo.com
+stacielyn33@att.net
+stacybabb2@gmail.com
+stacystrabbing@yahoo.com
+stahlemhs@ameritech.net
+stangedom@comcast.net
+stanjensen@speednetllc.com
+stank5486@aol.com
+stasch5445@comcast.net
+state79@msn.com
+statewideron@charter.net
+stav5@aol.com
+steady_4@sympatico.ca
+steelheadr64@aol.com
+steenpat@comcast.net
+stefan_g_g@yahoo.com
+steinmetz313@aol.com
+steph0385@yahoo.com
+stephaniebednarz@live.com
+stephanmorgan@sbcglobal.net
+steve2247@sbcglobal.net
+steve3010@hotmail.com
+steveandisabel@comcast.net
+stevebessette@comcast.net
+stevedow@comcast.net
+stevegz02@yahoo.com
+stevek@deckernut.com
+steve@kzooevents.com
+stevelins@aol.com
+steve.macdonald@archom.com
+steve@maintservices.com
+stevemarcial@hotmail.com
+stevemary@suddenlink.net
+steven_davis1958@att.net
+steven.moerner@pioneer-usa.com
+stevennagel323@hotmail.com
+stevens82003@yahoo.com
+stevenskim@gmail.com
+stevepasbjerg@wowway.com
+steve.polidori@hap.com
+stevepronger@ymail.com
+steveraymond001@comcast.net
+steveshy@hotmail.com
+steve@tritecseal.com
+steveway48054@yahoo.com
+steve.willkom@ixetic.com
+stevezinberg@rogers.com
+stevie_j61@yahoo.com
+stewartcarpetcleaning@gmail.com
+stfsobi@aol.com
+sth051692@comcast.net
+sthiel@airadv.net
+still2503@ameritech.net
+stjudepohlman@juno.com
+stkac@comcast.net
+stmtrinka@earthlink.net
+stocktonbond@comcast.net
+stomkovi@comcast.net
+ston@cbpu.com
+stonewolberg@yahoo.com
+stowebl@hotmail.com
+stretch@rcn.com
+strobel@juno.com
+strongtalk@comcast.net
+stronks@ciaccess.com
+stsauer@plastridge.com
+stu16beth@yahoo.com
+stuart.forsyth@homebanc.com
+stumpvb@yahoo.com
+Sturtzcms@comcast.net
+stygles@comcast.net
+sublimejen6@yahoo.com
+sueadel@comcast.net
+sueanndykman@gmail.com
+suebauer@sympatico.ca
+sue_davis34@yahoo.com
+suednewman@hotmail.com
+sue.duncan@charter.net
+suee866@aol.com
+sue@g-m-d.com
+suehaack@sbcglobal.net
+suehg@comcast.net
+suejohnson12345@yahoo.com
+suemack123@comcast.net
+suemongrue@chartermi.net
+sueneil9486@gmail.com
+sue.neyens@comcast.net
+sueone@wowway.com
+sue.perlin@plantemoran.com
+suesail@juno.com
+sueto@sbcglobal.net
+sugawa@iace-usa.com
+suiter@ugs.com
+sullijos@yahoo.com
+sullisus@comcast.net
+sullivan316@att.net
+sullivancity@msn.com
+sumnerd@westottawa.net
+Sumtinez@msn.com
+sunnn13@yahoo.com
+sunny.warm123@yahoo.com
+Supamonk@aol.com
+superdan777@gmail.com
+supib@aol.com
+surbania@comcast.net
+surferdak49@netscape.net
+surgesy@hotmail.com
+susanbartush@sbcglobal.net
+susanbresser@msn.com
+susancoates@msn.com
+susan@galloupguitars.com
+susanling16@yahoo.com
+susanne.bourque@trane.com
+susannystrom@gmail.com
+susanroger329@yahoo.com
+susan.schuster@nationalcity.com
+susantaormino@aol.com
+susiecorsetti@hotmail.com
+Susiegepp@yahoo.com
+susiehamblingpeterson@verizon.net
+susiemarie9@gmail.com
+susieturek@yahoo.com
+susitalo@seedstrategy.com
+suzannelschmidt@charter.net
+suzanne.pullman@moen.com
+suzaries@hotmail.com
+suzee1976@comcast.net
+suzi222@aol.com
+suzpighin@aol.com
+svandoornik@mmpc.com
+svandyken@vdminc.com
+svdboer@gmail.com
+Svelzenhaner@comcast.net
+svmcbain@earthlink.net
+svoss@vossins.com
+SvTimothy@aol.com
+sw00@aol.com
+swalterarbor23@hotmail.com
+swalther6@cs.com
+swansonrobert@att.net
+swart@kalamazoo.net
+swartzy2k@hotmail.com
+sweetbriar4@yahoo.com
+sweetlandmj@aol.com
+swilliston102@hotmail.com
+swilson112@cogeco.ca
+swolfe@lowis-gellen.com
+swtarz@comcast.net
+sykoman@comcast.net
+sylviasumner@comcast.net
+syuhasz@sbcglobal.net
+szalewicz@wowway.com
+szikherman@yahoo.com
+szlaga@sbcglobal.net
+t1up4tim@yahoo.com
+t9664gm@yahoo.com
+taa911@aol.com
+Tab5534@yahoo.com
+taca@watchtv.net
+tad94@comcast.net
+tadavis@chartermi.net
+tajosef@umich.edu
+tajovi@tri.com
+tak0880@comcast.net
+taketurns@charter.net
+talabadie@hotmail.com
+talarson4@cs.com
+tamaralgood@att.net
+tamera.duffield@gpschools.org
+tami.leffingwell@raymondjames.com
+Tammy@AdventureNORTH.net
+tammy.fayson@yahoo.com
+tammy.suiter@jpmchase.com
+taniatlw@hotmail.com
+taradrury@hotmail.com
+targettrng@aol.com
+tarlac4@aol.com
+tasyd2@comcast.net
+tatankasquirrel@hotmail.com
+tatianastevens@yahoo.com
+tawilliams@adesa.com
+tawo40@yahoo.com
+taylorj77@comcast.net
+taylorp@comcast.net
+taz1004@sbcglobal.net
+tb105@aol.com
+tbailey@comcast.net
+tbaileymd@yahoo.com
+tbakran@altelco.net
+tbarnes@cfl.rr.com
+tbarr35223@aol.com
+tbazany1293@charter.net
+tbeaumont1@cogeco.ca
+tbelleau@sjgh.ca
+tbenton@wolves.com
+tbondale@charter.net
+tbridge@emich.edu
+tburk@wwnet.net
+tcanderson3@comcast.net
+tcdavis@cablespeed.com
+tcguttman@hotmail.com
+tclark@pgatourhq.com
+tcmcf4@yahoo.com
+tconstand@comcast.net
+tcontrucci@wowway.com
+tcritter@msn.com
+tcrystal2543@charter.net
+tcurr45@vzw.blackberry.net
+tdavis@wilbursmith.com
+tddchildress@yahoo.com
+tddzan@aol.com
+tdelang@wideopenwest.com
+tdhour@yahoo.com
+tdifbrat@comcast.net
+tdkearly@mtu.edu
+tdlarson@comcast.net
+tdmacintyre@hdp.com
+tdogden@comerica.com
+te1251@msn.com
+tealroe@charter.net
+teamteel@charter.net
+teckerle@prodigy.net
+teddybear1209@hotmail.com
+Ted_Salna@yahoo.com
+tedvmccarthy@yahoo.com
+teewaun@aol.com
+teholmes@comcast.net
+t_ekpe@yahoo.com
+telcen@wowway.com
+tellenday@charter.net
+telloyd@comcast.net
+temmerich@schupan.com
+tenadameron@comcast.net
+tenbuschii@hotmail.com
+teri.carroll@comcast.net
+terimorton@gmail.com
+terri4msu@comcast.net
+terrimfarrell@yahoo.com
+TERRISILVERMAN@VERIZON.NET
+terry140055@yahoo.com
+Terrybooth6@aol.com
+terry.j.pickard@abc.com
+terryriga@hotmail.com
+terry_van_dyke@hotmail.com
+terry.weiler@spectrum-health.org
+terryzr1@yahoo.com
+teschke87@hotmail.com
+test@gaslightmedia.com
+tewoidat@yahoo.com
+t_fabits@yahoo.com
+tfdae122@yahoo.com
+tfralick@oiles.com
+t_geisler@msn.com
+tgrady@cablers.com
+tgrieb@wowway.com
+thaase@ndindustries.com
+tharris1ma@aol.com
+the4kings@comcast.net
+the5stros@yahoo.com
+thebarnetts@comcast.net
+thechallas@mac.com
+thecowger6@aol.com
+thedagman2@yahoo.com
+the-deters@excite.com
+thegauches@comcast.net
+thehamann5@wowway.com
+thehudocks@msn.com
+the_huntz@hotmail.com
+thekajman@aol.com
+thekavanaghs@yahoo.com
+theknobbys@yahoo.com
+themacadoos@aol.com
+themacintyres@gmail.com
+the_milanos@comcast.net
+thenig@aol.com
+therachel@gmail.com
+theramax@aol.com
+theresa978@gmail.com
+theresa.dombrow@stjohn.org
+theresa.kidwell@insightbb.com
+theresasharpe@comcast.net
+theresa.yoder@yahoo.com
+therese.chambers@gmail.com
+therozgowskis@juno.com
+therrig@comcast.net
+the@salvagegroups.com
+theskismith@copper.net
+theskysthelimit42@yahoo.com
+thestockmans@roadrunner.com
+thewalshes@twmi.rr.com
+thewps@ameritech.net
+thill@vironintl.com
+think_again@comcast.net
+thisgirls@chartermi.net
+thk30@yahoo.com
+thomas.b1693@sbcglobal.net
+Thomasbl@cooley.edu
+thomas_d_cox@yahoo.co.uk
+thomasfamily.mail@verizon.net
+thomas.hilborn@gmail.com
+thomas.m.siwajek@jci.com
+thomas.renno@gm.com
+thomas.smith1119@sbcglobal.net
+thomsmary@hotmail.com
+thomson603@yahoo.com
+thundersnowking@hotmail.com
+thunnicutt@hoveycompanies.com
+thuringers@comcast.net
+thvt1970@gmail.com
+tigger77@sprintmail.com
+tighe6@comcast.net
+tillthen@sbcglobal.net
+timdutcher@michonline.net
+timgandkathyj@charter.net
+timhain@charter.net
+timjarz@yahoo.com
+tim.manley@att.net
+timmissler@yahoo.com
+tim.morgan@mindspring.com
+timothy.deneau@comaupico.com
+timsullivan312@msn.com
+tim@timothyjmckenna.com
+tina@healthdecisions.com
+tinamkonke@hotmail.com
+tinoble@alumni.uwaterloo.ca
+tirpak@oakland.edu
+tjavorka@ecommunity.com
+tjbrown1966@ejourney.com
+tjegan@comcast.net
+tjgriffey@columbus.rr.com
+tjjezewski@att.net
+TJKissane@dow.com
+tjoseph@aptechnologies.com
+tjsgoblue@aol.com
+tjstrong@pgatourhq.com
+tkahl@rossiassociates.com
+tkeuten@hotmail.com
+tkhas@verizon.net
+tkilgore@hillsdaleschools.org
+tkimbro@e-bbk.com
+tknix@comcast.net
+tknyboer@verizon.net
+tkofler@fuse.net
+tkokales@sbcglobal.net
+tkoperski@appliedimaging.com
+t.koshar@hotmail.com
+tkrueg2@comcast.net
+tkueffne@walbro.com
+tlaban@earthlink.net
+tlanchor@msn.com
+tlbeaudry@sbcglobal.net
+tlbrown@tir.com
+tlewis3@hfhs.org
+tlgrove@dow.com
+tlinenger@highlandparkbaptist.com
+tlipovsky@comcast.net
+tlist@hotmail.com
+tlkenrick@ameritech.net
+tll1007@yahoo.com
+tlnute@aol.com
+Tlopiccolo@bcbsm.com
+tmal104083@aol.com
+tmarasco@ford.com
+tmccjr@yahoo.com
+tmcintire@indy.rr.com
+tmhitch@aol.com
+t.mianecki@comcast.net
+tmlagalo@dow.com
+tmlagalo@dow.com
+tmodaffare@ser-us.com
+tmonforton99@comcast.net
+tmorin@southgateprocess.com
+tms52901@yahoo.com
+tmueller1@cogeco.ca
+tmulready@gagemotormall.com
+tmundt3@comcast.net
+Tnelson@dataconstructs.com
+tnexpress3@aol.com
+tnttrouble@msn.com
+tobesdrums@yahoo.com
+toby.monforton@danahertool.com
+toddd@lammersheating.com
+toddralph@comcast.net
+toddtrues@yahoo.com
+todkimhag@yahoo.com
+toetheline@msn.com
+tomandmary5@sbcglobal.net
+tomandrew@comcast.net
+tomandsharyn@aol.com
+tomcon1@accesstoledo.com
+tom.doerflinger@abnamro.com
+tom.doerflinger@bankofamerica.com
+tomfoster@comcast.net
+tomfredericks@cablespeed.com
+tom.gearhart@nmfn.com
+tom@grimesassociates.com
+tomita_okazaki@yahoo.co.jp
+tomkato@charter.net
+tomkato@charter.net
+tommaher07@comcast.net
+tom.misener@verizon.net
+tommyshins@hotmail.com
+tomnewcomb@hotmail.com
+tom.nienhaus@live.com
+tompark@parkinsurance.com
+tom@postbars.com
+tom@relativeways.com
+tomtwo2@bellsouth.net
+tomygrl564@aol.com
+tonieowens2000@hotmail.com
+tonyf@ferlitoconstruction.com
+tony.herman@pioneer.com
+Toosie115@aol.com
+tops4less@yahoo.com
+torfanos@cyberz.net
+torlowsky@detroitchassis.com
+toughworld28@aol.com
+tpahapill@rogers.com
+Tpaul447@aol.com
+tpaws80778@aol.com
+tpccorp@sbcglobal.net
+tpdykstra@yahoo.com
+tpickornik@ameritech.net
+tpmariner@hotmail.com
+tpritcha@consolidated.net
+traceyantoniades@gmail.com
+tracispringer@hotmail.com
+tracy63@comcast.net
+tracyd@peoplepc.com
+tracyf2386@aol.com
+traders@salvagegroups.com
+trailrite@sbcglobal.net
+trajter@yahoo.com
+tram_nguyen@ml.com
+transcribermom3@charter.net
+tratts@comcast.net
+traumadog91@yahoo.com
+travelwb1@aol.com
+travis_harringtonw@yahoo.com
+TRAVIS.RANSOM@YAHOO.COM
+trberndt@yahoo.com
+tr.collins@comcast.net
+treberb@michigan.gov
+treelords@aol.com
+treescape@hotmail.com
+trekceles@hotmail.com
+tremonti5@att.net
+trew3@comcast.net
+trhalsey@comcast.net
+tribowles@yahoo.com
+trick@toronto.ca
+trig50@yahoo.com
+trini1999@hotmail.com
+trisha@cablespeed.com
+trishfinch@yahoo.com
+trish.minadeo@motion-ind.com
+trkins@adelphia.net
+troopie39@yahoo.com
+tross@supersteeltreating.com
+trout3683@aol.com
+troutcreek@vdgrijn.com
+TrumbleV@aol.com
+tschue@sbcglobal.net
+tsday96@aol.com
+tsheila@hotmail.com
+tshepherd@mikesmithlaw.com
+tsickon@comcast.net
+tsilvestro@cogeco.ca
+tslewandowski@wowway.com
+tsmith@jtv.tv
+tsmonicatti@monicattichrysler.com
+tsoser2@aol.com
+tsrosa@aol.com
+tsteer@sbcglobal.net
+ttackett@goughinc.com
+ttaliaferro@comcast.net
+t.t.best@att.net
+ttdanko@hotmail.com
+ttl76@aol.com
+ttodd@galloup.com
+TTomita@advics-na.com
+tturner325@comcast.net
+tucker01@stjohn.org
+tulikivi@msn.com
+turkewycz@sbcglobal.net
+turkuscr@comcast.net
+turners@manitoulin.net
+tveeser@hotmail.com
+twatt1@att.net
+tweethep@comcast.net
+twegmann@southslope.net
+twhite243115mi@comcast.net
+twhite243115MI@comcast.net
+twilcor@gmail.com
+twinsplussone@hotmail.com
+twinterburn@hotmail.com
+twizzle900@aol.com
+twolski@hotmail.com
+tworbeach@hotmail.com
+twsierra74@comcast.net
+tylerp@comcast.net
+type2u@comcast.net
+ucicchello@shaw.ca
+ugomom@aol.com
+uh60bh@hotmail.com
+ulizb@yahoo.ca
+umthebest30@charter.net
+unaboyd@sbcglobal.net
+upnative@lighthouse.net
+upnorfus@i-star.com
+uppercapsd@aol.com
+upusedtobe@aol.com
+ursulathomas@juno.com
+usbowmans@cox.net
+userj7798@aol.com
+ushewey@yahoo.com
+uverma@yahoo.com
+uwosteve@hotmail.com
+vahl222@hotmail.com
+val725@hotmail.com
+valerie.carpenter@eds.com
+vallarltv@aol.com
+valtt@aol.com
+vanderbr@wwwinc.com
+vanessacruz7@gmail.com
+vanetten@umich.edu
+vanlake4@comcast.net
+vanlunen@nrcan.gc.ca
+vanrynl@gvsu.edu
+vansad@earthlink.net
+vanslab@sbcglobal.net
+vaughnjulie@yahoo.com
+vbalcom@rc.edu
+vbfd30@comcast.net
+vcschimizzi@comcast.net
+veliofski@hotmail.com
+velleman@umich.edu
+velvajean3@aol.com
+vemuri48@yahoo.com
+venturejim@msn.com
+versteeg@sentex.net
+vfilek@lssu.edu
+vgetner@pappasfinancial.com
+vicelsy@comcast.net
+victoriag@juno.com
+vicupdate@earthlink.net
+vikmali@yahoo.com
+villi@comcast.net
+virtuoz1981@yahoo.com
+visionsoptical@hotmail.com
+visionworks@chartermi.net
+vitowas2000@yahoo.com
+vkayh@aol.com
+vkdmoore@sbcglobal.net
+vllawlor@sympatico.ca
+vmpelton@hotmail.com
+vneville@techteam.com
+VPavone245@aol.com
+v.pierik@idealtech.us
+vpoczik@yahoo.com
+vpontious@aol.com
+vpopov01@comcast.net
+vqueen@twmi.rr.com
+vraecontrucci@wowway.com
+vraimond@ford.com
+vringger@yahoo.com
+vringler@cox-applicators.com
+vrodrix@comcast.net
+vshanahan16@hotmail.com
+vsordyl@comcast.net
+vstrien@qtm.net
+vterry72@msn.com
+vtrampus@comcast.net
+vwditto@adelphia.net
+wagonsct@comcast.net
+wakley5@yahoo.com
+walkersoccer@msn.com
+wallacesue80@hotmail.com
+wallerdg@hotmail.com
+walsh78@aol.com
+walter2063@sbcglobal.net
+wanschyi@msu.edu
+waraksa1@comcast.net
+warnere@bronsonhg.org
+warnerejw@triton.net
+warnermart@aol.com
+waronkers@gmail.com
+warren.abbs@nationalcity.com
+warrenjimwarren@aol.com
+warznie@sbcglobal.net
+washgardner@juno.com
+wattn@indiana.edu
+wbenford@gmail.com
+wbrinker@umich.edu
+wbrooks7@xcelco.ca
+wbyrne38@sbcglobal.net
+wcukrowski@hotmail.com
+wdavis@beckmanlawson.com
+wdesana@buckeye-express.com
+w.dowling@comcast.net
+WDSchafer@dow.com
+weatherman995@gmail.com
+weber7of7@comcast.net
+webid@sbcglobal.net
+wehegeles@yahoo.com
+weissbt@comcast.net
+wenandwill@aol.com
+wendyannschmidt9@comcast.net
+wendy_baker36@yahoo.com
+WendyJ@banksupplies.com
+Wendyjuback@yahoo.com
+wendylkr@aol.com
+wenzler@comcast.net
+wgcompton@comcast.net
+wgeik@kallashenk.com
+wgrundei4779@wowway.com
+wgyure@yahoo.com
+wheatgerm@sbcglobal.net
+wheiob@hotmail.com
+whipper@sympatico.ca
+white1mj@cmich.edu
+whitea3@hotmail.com
+whitely6@sympatico.ca
+wholden5@yahoo.com
+whudupg112@yahoo.com
+wichlinmtw@msn.com
+wiggkk@aol.com
+wiglikow@umich.edu
+wigs38@hotmail.com
+wilczynl@saline.k12.mi.us
+wilimor@shaw.ca
+wilkin42@msu.edu
+wilkin97@yahoo.com
+willensdeb@aol.com
+william.boas@raymondjames.com
+william.bull@comcast.net
+williamcarras@comcast.net
+william.piontkowski3@ge.com
+willietillie@aol.com
+willj6@comcast.net
+wilsonpullum@cablespeed.com
+wjdarr@earthlink.net
+wjlamb@sbcglobal.net
+wjvmov@att.net
+wkushler@comcast.net
+wling@whling.com
+wlnicholls@yahoo.com
+wlogan@dykema.com
+wmaryelle@yahoo.com
+wmelton@accretivesolutions.com
+wmfb19@aol.com
+wmlarmoody@aol.com
+wmprojieck@fuse.net
+wnburk@chartermi.net
+wojtek_91@yahoo.com
+wolfclan4@juno.com
+wolfek@cablespeed.com
+wolinb@aol.com
+wolowil@adsb.on.ca
+wolschendorf@fev-et.com
+wolsch@wowway.com
+woodkara@yahoo.com
+Wood.vicki@det.sysco.com
+workinstr@yahoo.com
+worksfile@aol.com
+wostrom2@aol.com
+wpickornik@ameritech.net
+wpk46@aol.com
+wpotter@lifetimeplanning.com
+wrepair@aol.com
+wrhopper@yahoo.com
+wrichus48178@aol.com
+wrightm@oakwood.org
+wrmason@royaloak.net
+WRodenbe@dps.k12.oh.us
+wroemer@bex.net
+wroennecke@msn.com
+wromatz@live.com
+wrozek@earthlink.net
+wrrechmd@pol.net
+wrsjas@chartermi.net
+wsc1119@aol.com
+wsfog531@comcast.net
+wshroeger@aol.com
+wsollnn@comcast.net
+wsomm@i2k.net
+wsorenson@earthlink.net
+wswilson40@aol.com
+wtjsnowmass@yahoo.com
+wvanzege@gmail.com
+wwaugh@earthlink.net
+wwlacombe@wideopenwest.com
+wyacullo@aol.com
+wymack@yahoo.com
+xdavidstrobelx@aol.com
+xmarylandgirlx5@yahoo.com
+yayasfenton@yahoo.com
+yconnelly@comcast.net
+yellowdog1397@comcast.net
+yesnyder@yahoo.com
+yfrysh@gmail.com
+yhopp@provide.net
+ykshino1@aol.com
+ymorris@hotmail.com
+yo-freddie@juno.com
+yoonbaep@hotmail.com
+yoonhuh@umich.edu
+yordan2@aol.com
+yosadhara@aol.com
+youngsha63@gmail.com
+yountssa@muohio.edu
+yramani@gmail.com
+yunlugu@yahoo.com
+yvonnebob20@hotmail.com
+z629@aol.com
+zachdog1@covad.net
+zapataj@michigan.gov
+zas2@hotmail.com
+zburger1211@gmail.com
+zdub_23@yahoo.com
+zebell@umich.edu
+zelenak4@netzero.net
+zenico1@yahoo.com
+zimco01@yahoo.com
+zimplus2@sbcglobal.net
+zimprint@yahoo.com
+zmcsmc1@hotmail.com
+zochesca@yahoo.com
+zyumail@yahoo.com
+zzkops@yahoo.com
\ No newline at end of file
index 01f089c..010872e 100755 (executable)
-<?php
-require_once '../../setup.phtml';
-require_once 'contact_setup.inc';
-
-
-switch ($Command) {
-
-case "Update":// {{{
-    $location = "emails.php";
-    $dbh = Toolkit_Database::getInstance();
-    $id       = filter_input(INPUT_POST, 'id', FILTER_SANITIZE_NUMBER_INT);
-    if (!$id) {
-        break;
-    }
-    
-    $sql = "
-    UPDATE news_response 
-       SET subject = :subject,
-           response = :response,
-                  last_update = current_date
-     WHERE id = :id";
-    $update = $dbh->prepare($sql);
-    $update->bindParam(
-        ':subject',
-        stripslashes($subject),
-        PDO::PARAM_STR
-    );
-    $update->bindParam(
-        ':response',
-        stripslashes($response),
-        PDO::PARAM_STR
-    );
-    $update->bindParam(
-        ':id',
-        $id,
-        PDO::PARAM_INT
-    );
-    $update->execute();
-       break;// }}}
-
-case "Insert":// {{{
-    $dbh = Toolkit_Database::getInstance();
-    $sql = "
-    INSERT INTO news_response
-               (last_update,subject,response)
-               VALUES 
-    (current_date,:subject,:response)";
-    $insert = $dbh->prepare($sql);
-    $insert->bindParam(
-        ':subject',
-        stripslashes($subject),
-        PDO::PARAM_STR
-    );
-    $insert->bindParam(
-        ':response',
-        stripslashes($response),
-        PDO::PARAM_STR
-    );
-    $insert->execute();
-       $location = "emails.php"; 
-
-       break;// }}}
-
-case "Cancel":// {{{
-       $location = "emails.php"; 
-       break;// }}}
-
-case "Delete":// {{{
-    $query = "
-    DELETE FROM news_response 
-    WHERE id = $id;";
-    $DB->db_exec( $query );
-    $location = "emails.php"; 
-       break;// }}}
-
-default:// {{{
-       GLM_TOOLBOX::html_error("incorrect value for Command",1);
-       break;// }}}
-}
-
-header("Location: $location");
-?>
+<?php\r
+require_once '../../setup.phtml';\r
+require_once 'contact_setup.inc';\r
+# include_once("../graphics.lib" );\r
+\r
+    switch($Command) {\r
+\r
+    case "Update":\r
+\r
+        $dbd = db_connect();\r
+\r
+        if(!$dbd) html_error(DB_ERROR_MSG,1);\r
+\r
+        if( $coupon == '' ) $coupon = 'none';\r
+        if( $image == '' ) $image = 'none';\r
+        if( $image2== '' ) $image2= 'none';\r
+        if( $image3== '' ) $image3= 'none';\r
+\r
+\r
+         if ($coupon == 'none' || $delcoupon == 'TRUE')\r
+            $coupon_upload = 'FALSE';\r
+         else\r
+            $coupon_upload = 'TRUE';\r
+\r
+        if ($image == 'none' || $delimage == 'TRUE')\r
+            $img_upload = 'FALSE';\r
+         else\r
+            $img_upload = 'TRUE';\r
+\r
+        if ($image2 == 'none' || $delimage2 == 'TRUE')\r
+            $img_upload2 = 'FALSE';\r
+         else\r
+            $img_upload2 = 'TRUE';\r
+\r
+        if ($image3 == 'none' || $delimage3 == 'TRUE')\r
+            $img_upload3 = 'FALSE';\r
+         else\r
+            $img_upload3 = 'TRUE';\r
+\r
+        // **Coupon**\r
+\r
+         if ($coupon_upload == 'TRUE')\r
+         {\r
+            $coupon_upload_array = img_upload($coupon,$coupon_name,BASE . "images/");\r
+            img_resize($coupon_upload_array[1],RESIZED_PATH."/$coupon_upload_array[0]",'a', "320");\r
+            img_resize($coupon_upload_array[1],MIDSIZED_PATH."/$coupon_upload_array[0]",'a',"180");\r
+            img_resize($coupon_upload_array[1],THUMB_PATH."/$coupon_upload_array[0]",'a',"90");\r
+            $coupon_name = $coupon_upload_array[0];\r
+\r
+            if($oldcoupon != '')\r
+            {\r
+                @unlink(IMAGE_PATH."/$oldcoupon");\r
+                @unlink(RESIZED_PATH."/$oldcoupon");\r
+                @unlink(MIDSIZED_PATH."/$oldcoupon");\r
+                @unlink(THUMB_PATH."/$oldcoupon");\r
+            }\r
+           }\r
+           elseif ($coupon_upload == 'FALSE')\r
+           {\r
+              if($delcoupon == 'TRUE')\r
+              {\r
+                @unlink(IMAGE_PATH."/$oldcoupon");\r
+                @unlink(RESIZED_PATH."/$oldcoupon");\r
+                @unlink(MIDSIZED_PATH."/$oldcoupon");\r
+                @unlink(THUMB_PATH."/$oldcoupon");\r
+                $coupon_name = '';\r
+              }\r
+              else\r
+              {\r
+                $coupon_name = $oldcoupon;\r
+              }\r
+           }\r
+\r
+          // **IMAGE ONE**\r
+\r
+         if ($img_upload == 'TRUE')\r
+         {\r
+            $image_upload_array = img_upload($image,$image_name,BASE . "images/");\r
+            img_resize($image_upload_array[1],RESIZED_PATH."/$image_upload_array[0]",'a', "320");\r
+            img_resize($image_upload_array[1],MIDSIZED_PATH."/$image_upload_array[0]",'a',"180");\r
+            img_resize($image_upload_array[1],THUMB_PATH."/$image_upload_array[0]",'a',"90");\r
+            $image_name = $image_upload_array[0];\r
+\r
+            if($oldimage != '')\r
+            {\r
+                @unlink(IMAGE_PATH."/$oldimage");\r
+                @unlink(RESIZED_PATH."/$oldimage");\r
+                @unlink(MIDSIZED_PATH."/$oldimage");\r
+                @unlink(THUMB_PATH."/$oldimage");\r
+            }\r
+           }\r
+           elseif ($img_upload == 'FALSE')\r
+           {\r
+              if($delimage == 'TRUE')\r
+              {\r
+                @unlink(IMAGE_PATH."/$oldimage");\r
+                @unlink(RESIZED_PATH."/$oldimage");\r
+                @unlink(MIDSIZED_PATH."/$oldimage");\r
+                @unlink(THUMB_PATH."/$oldimage");\r
+                $image_name = '';\r
+              }\r
+              else\r
+              {\r
+                $image_name = $oldimage;\r
+              }\r
+           }\r
+\r
+         // ***IMAGE TWO***\r
+\r
+         if ($img_upload2 == 'TRUE')\r
+         {\r
+            $image_upload_array2 = img_upload($image2,$image2_name,BASE . "images/");\r
+            img_resize($image_upload_array2[1],RESIZED_PATH."/$image_upload_array2[0]",'a', "320");\r
+            img_resize($image_upload_array2[1],MIDSIZED_PATH."/$image_upload_array2[0]",'a',"180");\r
+            img_resize($image_upload_array2[1],THUMB_PATH."/$image_upload_array2[0]",'a',"90");\r
+            $image2_name = $image_upload_array2[0];\r
+\r
+            if($oldimage2 != '')\r
+            {\r
+                @unlink(IMAGE_PATH."/$oldimage2");\r
+                @unlink(RESIZED_PATH."/$oldimage2");\r
+                @unlink(MIDSIZED_PATH."/$oldimage2");\r
+                @unlink(THUMB_PATH."/$oldimage2");\r
+            }\r
+           }\r
+           elseif ($img_upload2 == 'FALSE')\r
+           {\r
+              if($delimage2 == 'TRUE')\r
+              {\r
+                @unlink(IMAGE_PATH."/$oldimage2");\r
+                @unlink(RESIZED_PATH."/$oldimage2");\r
+                @unlink(MIDSIZED_PATH."/$oldimage2");\r
+                @unlink(THUMB_PATH."/$oldimage2");\r
+                $image2_name = '';\r
+              }\r
+              else\r
+              {\r
+                $image2_name = $oldimage2;\r
+              }\r
+           }\r
+\r
+\r
+         // ***IMAGE THREE***\r
+\r
+         if ($img_upload3 == 'TRUE')\r
+         {\r
+            $image_upload_array3 = img_upload($image3,$image3_name,BASE . "images/");\r
+            img_resize($image_upload_array3[1],RESIZED_PATH."/$image_upload_array3[0]",'a', "320");\r
+            img_resize($image_upload_array3[1],MIDSIZED_PATH."/$image_upload_array3[0]",'a',"180");\r
+            img_resize($image_upload_array3[1],THUMB_PATH."/$image_upload_array3[0]",'a',"90");\r
+            $image3_name = $image_upload_array3[0];\r
+\r
+            if($oldimage3 != '')\r
+            {\r
+                @unlink(IMAGE_PATH."/$oldimage3");\r
+                @unlink(RESIZED_PATH."/$oldimage3");\r
+                @unlink(MIDSIZED_PATH."/$oldimage3");\r
+                @unlink(THUMB_PATH."/$oldimage3");\r
+            }\r
+           }\r
+           elseif ($img_upload3 == 'FALSE')\r
+           {\r
+              if($delimage3 == 'TRUE')\r
+              {\r
+                @unlink(IMAGE_PATH."/$oldimage3");\r
+                @unlink(RESIZED_PATH."/$oldimage3");\r
+                @unlink(MIDSIZED_PATH."/$oldimage3");\r
+                @unlink(THUMB_PATH."/$oldimage3");\r
+                $image3_name = '';\r
+              }\r
+              else\r
+              {\r
+                $image3_name = $oldimage3;\r
+              }\r
+           }\r
+\r
+\r
+          http_strip($coupon_link);\r
+          http_strip($image_link);\r
+          http_strip($image2_link);\r
+          http_strip($image3_link);\r
+        $qs = "UPDATE   news_response\r
+               SET      subject     = '$subject',\r
+                        response    = '$response',\r
+                        coupon      = '$coupon_name',\r
+                        coupon_link = '$coupon_link',\r
+                        image       = '$image_name',\r
+                        image_link  = '$image_link',\r
+                        image2      = '$image2_name',\r
+                        image2_link = '$image2_link',\r
+                        image3      = '$image3_name',\r
+                        image3_link = '$image3_link'\r
+               WHERE    id          = $id";\r
+\r
+        if(!db_exec($dbd,$qs)) html_error("failed ->".$qs,1);\r
+\r
+\r
+    break;\r
+\r
+    case "Insert":\r
+        $dbd = db_connect();\r
+\r
+        if(!$dbd) html_error(DB_ERROR_MSG,1);\r
+\r
+        $qs = "INSERT INTO news_response\r
+                    (subject,response)\r
+               VALUES\r
+                    ('$subject','$response')";\r
+\r
+        if(!db_exec($dbd,$qs)) html_error(DB_ERROR_MSG.$qs,1);\r
+\r
+\r
+    break;\r
+\r
+    case "Cancel":\r
+    break;\r
+\r
+    default:\r
+        html_error("incorrect value for Command",1);\r
+    break;\r
+    }\r
+        $location = "view_newsletter.phtml?id=$id";\r
+\r
+header("Location: $location");\r
+?>\r
index 84b9e1b..d30e644 100755 (executable)
 <?php
 require_once '../../setup.phtml';
 require_once 'contact_setup.inc';
-$location = "list_contact.phtml?back=1&start=" . $start;
+$location = "list_contact.phtml?back=1";
 
-if (is_array($contact_type)) {
-       $contact_type = ":".implode(":",$contact_type).":";
+if( is_array( $interest ) ){
+    $interest = ':'.implode(":",$interest).':';
 }
-if (is_array($interest)) {
-       $interest = ":".implode(":",$interest).":";
-}
-GLM_TOOLBOX::http_strip($url);
+//if(is_array($interest2)){
+//$interest = "";
+//for($i=0;$i<count($interest2);$i++)
+//  {
+//  $temp = "interest_".$i;
+//  if(isset(${$temp}))
+//      $interest .= ${$temp}.":";
+//  }
+//}
+http_strip($url);
 
 $LAST = count($DB_fields)-1;
-if ($REQUEST_METHOD == "POST" || $Command == "Delete") {
-       switch ($Command) {
-       case "Delete":
-               $qs = "DELETE FROM ".TABLE."
-                          WHERE ".ID." = $id";
-
-               if (!$DB->db_auto_exec($qs)) {
-                       $ERRORS .= pg_errormessage($dbd).$qs;
-        }
-        $location .= '&Action=Contact+Deleted';
-       
-           break;
-
-       case "Cancel":
-           break;
-
-       default:
-                $ERRORS .= "incorrect value for Command";
-           break;
-       
-       }
-
-    header("Location: $location");
+if($_POST || $Command == "Delete")
+    {
+    switch($Command)
+        {
+        case "Update":
+        for($i=0;$i<count($DB_fields);$i++)
+            {
+            if($DB_fields[$i][type]=="img")
+                {
+                $tmp = $DB_fields[$i]['name'];
+                $image = $$tmp;
+                $oldimage = ${$tmp."_old"};
+                $image_name = ${$tmp."_name"};
+                if($image == "none" || $image == "")
+                    {
+                    $image_name = $oldimage;
+                    }
+                else
+                    {
+                    $image_name = process_image($image,$image_name);
+                    }
+                $delete = ${"delete".$tmp};
+                if($delete==1)
+                    {
+                    $image_name = "";
+                    @unlink(ORIGINAL_PATH."/".$oldimage);
+                    @unlink(RESIZED_PATH.$oldimage);
+                    @unlink(THUMB_PATH.$oldimage);
+                    @unlink(MIDSIZED_PATH.$oldimage);
+                    }
+                }
+            }
+        $DB_fields = array_reverse($DB_fields);
+        $qs = "UPDATE ".TABLE." SET ";
+        for($i=0;$i<count($DB_fields);$i++)
+            {
+            if($DB_fields[$i][type]=="date")
+                {
+                if($$DB_fields[$i][name] == ""){
+                    continue;
+                }
+                $qs .= $DB_fields[$i][name]." = '".$$DB_fields[$i][name]."'";
+                if($i != $LAST)
+                    $qs .= ",";
+                /*
+                $month =  $DB_fields[$i][name]."_month";
+                $day = $DB_fields[$i][name]."_day";
+                $year = $DB_fields[$i][name]."_year";
+                $date = date("Y-m-d H:i:s T",mktime(0,0,0,$$month,$$day,$$year));
+                $qs .= $DB_fields[$i][name]." = '$date'";
+                if($i != $LAST)
+                    $qs .= ",";
+                    */
+                }
+            elseif($DB_fields[$i][type]=="datetime")
+                {
+                $month =  $DB_fields[$i][name]."_month";
+                $day = $DB_fields[$i][name]."_day";
+                $year = $DB_fields[$i][name]."_year";
+                $H = $DB_fields[$i][name]."_hour";
+                $mm = $DB_fields[$i][name]."_mm";
+                if($$mm == "PM")
+                    $$H = $$H + 12;
+                $m = $DB_fields[$i][name]."_min";
+                $date = date("Y-m-d",mktime($$H,$$m,0,$$month,$$day,$$year));
+                if($date = "1969-12-31")
+                    $date = date("Y-m-d");
+                $qs .= $DB_fields[$i][name]." = '$date'";
+                if($i != $LAST)
+                    $qs .= ",";
+                }
+            elseif($DB_fields[$i][type]=="array_drop")
+                {
+                if($$DB_fields[$i][name] == "")
+                    $qs .= $DB_fields[$i][name]." = NULL";
+                else
+                    $qs .= $DB_fields[$i][name]." = '".$$DB_fields[$i][name]."'";
+                if($i != $LAST)
+                    $qs .= ",";
+                }
+            elseif($DB_fields[$i][name]!=ID)
+                {
+                if($DB_fields[$i][type]=="img")
+                    {
+                    $qs .= $DB_fields[$i][name]." = '".$image_name."'";
+                    if($i != $LAST)
+                        $qs .= ",";
+                    }
+                elseif($DB_fields[$i][type]=="static")
+                    {
+                    }
+                elseif($DB_fields[$i][type]=="password")
+                    {
+                    if(($password && $password2) && ($password == $password2))
+                        {
+                        $qs .= $DB_fields[$i][name]." = '".$$DB_fields[$i][name]."'";
+                        if($i != $LAST)
+                            $qs .= ",";
+                        }
+                    }
+                else
+                    {
+                    $qs .= $DB_fields[$i][name]." = '".$$DB_fields[$i][name]."'";
+                    if($i != $LAST)
+                        $qs .= ",";
+                    }
+                }
+            else
+                {
+                $qs = substr($qs,0,strlen($qs)-1);
+                $qs .= " WHERE ".$DB_fields[$i][name]." = ".$$DB_fields[$i][name];
+                }
+            }
+        $DB_fields = array_reverse($DB_fields);
+        if(!db_auto_exec($qs))
+            $ERRORS .= pg_errormessage($dbd).$qs;
+
+    break;
+
+    case "Insert":
+        $create_date = date("m-d-Y");
+        for($i=0;$i<count($DB_fields);$i++)
+            {
+            if($DB_fields[$i][type]=="img")
+                {
+                $tmp = $DB_fields[$i]['name'];
+                $image = $$tmp;
+                $image_name = ${$tmp."_name"};
+                if($image == "none" || $image == "")
+                    {
+                    $image_name = $oldimage;
+                    }
+                else
+                    {
+                    $image_name = process_image($image,$image_name);
+                    }
+                }
+            }
+        $tmp = "";
+        $tmp_value = "";
+        for($i=0;$i<count($DB_fields);$i++)
+            {
+            if($DB_fields[$i][name]!=ID)
+                {
+                if($DB_fields[$i][type]!="static")
+                    {
+                    $tmp .= $DB_fields[$i][name];
+                    $tmp .= ",";
+                    }
+                }
+            }
+        for($i=0;$i<count($DB_fields);$i++)
+            {
+            if($DB_fields[$i][type]=="date")
+                {
+                $month =  $DB_fields[$i][name]."_month";
+                $day = $DB_fields[$i][name]."_day";
+                $year = $DB_fields[$i][name]."_year";
+                $date = date("Y-m-d",mktime(0,0,0,$$month,$$day,$$year));
+                if($date = "1969-12-31")
+                    $date = date("Y-m-d");
+                $tmp_value .= "'$date'";
+                $tmp_value .= ",";
+                }
+            elseif($DB_fields[$i][type]=="static")
+                {
+                }
+            elseif($DB_fields[$i][type]=="datetime")
+                {
+                $month =  $DB_fields[$i][name]."_month";
+                $day = $DB_fields[$i][name]."_day";
+                $year = $DB_fields[$i][name]."_year";
+                $H = $DB_fields[$i][name]."_hour";
+                $mm = $DB_fields[$i][name]."_mm";
+                if($$mm == "PM")
+                    $$H = $$H + 12;
+                $m = $DB_fields[$i][name]."_min";
+                $date = date("Y-m-d H:i:s T",mktime($$H,$$m,0,$$month,$$day,$$year));
+                $tmp_value .= "'$date'";
+                $tmp_value .= ",";
+                }
+            elseif($DB_fields[$i][type]=="array_drop")
+                {
+                if($$DB_fields[$i][name] == "")
+                    {
+                    $tmp_value .= "NULL";
+                    $tmp_value .= ",";
+                    }
+                else
+                    {
+                    $tmp_value .= $$DB_fields[$i][name];
+                    $tmp_value .= ",";
+                    }
+                }
+            elseif($DB_fields[$i][type]=="img")
+                {
+                $tmp_value .= "'".$image_name."'";
+                $tmp_value .= ",";
+                }
+            elseif($DB_fields[$i][name]!=ID)
+                {
+                $tmp_value .= "'".$$DB_fields[$i][name]."'";
+                $tmp_value .= ",";
+                }
+            }
+        // check for all blanks
+        $tmp_blank = str_replace("'","",$tmp_value);
+        $tmp_blank = str_replace(",","",$tmp_blank);
+        if($tmp_blank)
+            {
+            $qs = "INSERT INTO ".TABLE."
+                        (".ID.", $tmp create_date)
+                   VALUES
+                        (nextval('".SEQUENCE."'), $tmp_value '$create_date')";
+//echo $qs;
+            if(!db_auto_exec($qs))
+                $ERRORS .= pg_errormessage($dbd).$qs;
+            }
+    break;
+
+    case "Delete":
+        $qs = "DELETE FROM ".TABLE."
+               WHERE ".ID." = $id";
+
+        if(!db_auto_exec($qs))
+            $ERRORS .= pg_errormessage($dbd).$qs;
+
+    break;
+
+    case "Cancel":
+    break;
+
+    default:
+         $ERRORS .= "incorrect value for Command";
+    break;
+
+    }
+
+header("Location: $location");
 }
 ?>
old mode 100755 (executable)
new mode 100644 (file)
index 4d75d05..c8838b8
 <?php
-include "../../setup.phtml";
-include "contact_setup.inc";
-switch ($Command) {
-case "Move":
-    $qs = "select pos,id from contact_inq where id = $id";
-    if (!$result = $DB->db_exec($qs)) {
-        GLM_TOOLBOX::html_error(DB_ERROR_MSG.$qs, 0);
+require_once '../../setup.phtml';
+require_once 'contact_setup.inc';
+$conn =& db_connect();
+if(!$conn)
+    {
+        echo "No Database connection";
     }
-    $data = $DB->db_fetch_array($result, 0, PGSQL_ASSOC);
-    $pos = $data['pos'];
-    if ($newpos < $pos) {
-        $qs = "select id,pos from contact_inq where pos < $pos and pos >= $newpos and groupid = $groupid order by pos";
-        if(!$res = $DB->db_exec($qs)) {
-            GLM_TOOLBOX::html_error(DB_ERROR_MSG.$qs, 0);
+if($image == "none" || $image == "")
+    {
+        $image_name = $oldimage;
+    }
+else
+    {
+        $image_name = process_image($image,$image_name);
+        @unlink(ORIGINAL_PATH."/".$oldimage);
+        @unlink(RESIZED_PATH.$oldimage);
+        @unlink(THUMB_PATH.$oldimage);
+        @unlink(MIDSIZED_PATH.$oldimage);
+
+    }
+if($deleteimage == "1")
+    {
+        $image_name = "";
+
+        @unlink(ORIGINAL_PATH."/".$oldimage);
+        @unlink(RESIZED_PATH.$oldimage);
+        @unlink(THUMB_PATH.$oldimage);
+        @unlink(MIDSIZED_PATH.$oldimage);
+    }
+
+switch($Command)
+    {
+        case "Move":
+            $qs = "SELECT   pos,id
+            FROM    contact_inq
+            WHERE   id = $id";
+
+        if(!$result = db_exec($conn,$qs))
+        {
+            html_error(DB_ERROR_MSG.$qs,0);
         }
-        $counter = ($newpos + 1);
-        $totalNum = $DB->db_numrows($res);
-        for ($i = 0;$i < $totalNum; $i++) {
-            $res_data = $DB->db_fetch_array($res, $i, PGSQL_ASSOC);
-            $res_id = $res_data['id'];
-            $res_pos = $res_data['pos'];
-            $qs = "update contact_inq set pos = $counter where id = $res_id";
-            if (!$DB->db_exec($qs)) {
-                GLM_TOOLBOX::html_error(DB_ERROR_MSG.$qs, 0);
+
+        $data = db_fetch_array($result,0,PGSQL_ASSOC);
+        $pos = $data['pos'];
+
+        if($newpos < $pos)
+        {
+            $qs = "SELECT   id,pos
+                FROM    contact_inq
+                WHERE   pos < $pos
+                AND         pos >= $newpos
+                ORDER BY pos";
+
+            if(!$res = db_exec($conn,$qs))
+            {
+                html_error(DB_ERROR_MSG.$qs,0);
             }
-            $counter++;
-        }
-    } else {
-        $qs = "select pos,id from contact_inq where pos > $pos and pos <= $newpos and groupid = $groupid order by pos";
-        if (!$res = $DB->db_exec($qs)) {
-            GLM_TOOLBOX::html_error(DB_ERROR_MSG.$qs, 0);
-        }
-        $counter = ($pos);
-        $totalNum = $DB->db_numrows($res);
-        for ( $i = 0; $i < $totalNum; $i++) {
-            $res_data = $DB->db_fetch_array($res, $i, PGSQL_ASSOC);
-            $res_id = $res_data['id'];
-            $res_pos = $res_data['pos'];
-            $qs = "update contact_inq set pos = $counter where id = $res_id";
-            if (!$DB->db_exec($qs)) {
-                GLM_TOOLBOX::html_error(DB_ERROR_MSG.$qs, 0);
+
+            $counter = ($newpos + 1);
+            for($i=0;$i<db_numrows($res);$i++)
+            {
+                $res_data = db_fetch_array($res,$i,PGSQL_ASSOC);
+                $res_id = $res_data['id'];
+                $res_pos = $res_data['pos'];
+                $qs = "UPDATE   contact_inq
+                    SET         pos = $counter
+                    WHERE   id = $res_id";
+
+                if(!db_exec($conn,$qs))
+                {
+                    html_error(DB_ERROR_MSG.$qs,0);
+                }
+                $counter++;
             }
-            $counter++;
         }
-    }
-    $qs = "update contact_inq set pos = $newpos where id = $id";
-    if (!$DB->db_exec($qs)) {
-        GLM_TOOLBOX::html_error(DB_ERROR_MSG.$qs, 0);
-    }
-    break;
-
-case "Edit":
-    if ($_POST['new_group']) {
-        $query = "select id from inq_group where name = '".$_POST['new_group']."'";
-        if ($newData = $DB->db_auto_get_data($query)) {
-            // already exists use the id returned
-            $groupid = $newData[0]['id'];
-        } else {
-            $query = "
-            INSERT INTO inq_group
-            (name)
-            VALUES
-            ('{$_POST['new_group']}')
-            RETURNING id";
-            if ($newData = $DB->db_auto_get_data($query)) {
-                $groupid = $newData[0]['id'];
+        else
+        {
+            $qs = "SELECT   pos,id
+                FROM    contact_inq
+                WHERE   pos > $pos
+                AND         pos <= $newpos
+                ORDER BY pos";
+
+            if(!$res = db_exec($conn,$qs))
+            {
+                html_error(DB_ERROR_MSG.$qs,0);
             }
-        }
-    }
-    $qs = "update contact_inq set header = '$header',image = '$image_name',description = '$description',groupid = $groupid where id = $id;";
-    $DB->db_exec($qs);
-    break;
-
-case "Add":
-    if ($_POST['new_group']) {
-        $query = "select id from inq_group where name = '".$_POST['new_group']."'";
-        if ($newData = $DB->db_auto_get_data($query)) {
-            // already exists use the id returned
-            $groupid = $newData[0]['id'];
-        } else {
-            $query = "
-            INSERT INTO inq_group
-            (name)
-            VALUES
-            ('{$_POST['new_group']}')
-            RETURNING id";
-            if ($newData = $DB->db_auto_get_data($query)) {
-                $groupid = $newData[0]['id'];
+
+            $counter = ($pos);
+            for($i=0;$i<db_numrows($res);$i++)
+            {
+                $res_data = db_fetch_array($res,$i,PGSQL_ASSOC);
+                $res_id = $res_data['id'];
+                $res_pos = $res_data['pos'];
+                $qs = "UPDATE   contact_inq
+                    SET         pos = $counter
+                    WHERE   id = $res_id";
+
+                if(!db_exec($conn,$qs))
+                {
+                    html_error(DB_ERROR_MSG.$qs,0);
+                }
+                $counter++;
             }
         }
-    }
-    $qs = "select MAX(pos) as maxpos from contact_inq where groupid = $groupid";
-    $res = $DB->db_exec($qs);
-    $row = $DB->db_fetch_array($res,0,PGSQL_ASSOC);
-    $nextpos = $row[maxpos];
-    $nextpos++;
-    $qs = "insert into contact_inq (header,description,image,pos,groupid) values ('$header','$description','$image_name',$nextpos,$groupid);";
-    $DB->db_exec($qs);
-    break;
-
-case "Delete":
-    $qs = "delete from contact_inq where id = $id";
-    $DB->db_exec($qs);
-    if ($_REQUEST['old_groupid']) {
-       $qs = "select pos,id from contact_inq where pos > $oldpos and groupid = $old_groupid order by pos";
-        $res = $DB->db_exec($qs);
+        $qs = "UPDATE   contact_inq
+            SET         pos = $newpos
+            WHERE   id = $id";
+
+        if(!db_exec($conn,$qs))
+        {
+            html_error(DB_ERROR_MSG.$qs,0);
+        }
+        break;
+
+        case "Edit":
+            $qs = "UPDATE   contact_inq
+            SET         header = '$header',
+        image = '$image_name',
+        description = '$description'
+            WHERE   id = $id;";
+
+        //echo $qs;
+        pg_Exec($conn,$qs);
+        break;
+
+        case "Add":
+            $qs = "SELECT   MAX(pos) as maxpos
+            FROM    contact_inq";
+
+        $res = db_exec($conn,$qs);
+        $row = db_fetch_array($res,0,PGSQL_ASSOC);
+        $nextpos = $row[maxpos];
+        $nextpos++;
+        $qs = "INSERT
+            INTO    contact_inq
+            (header,description,image,pos)
+            VALUES  ('$header','$description','$image_name',$nextpos);";
+
+        pg_exec($conn,$qs);
+        break;
+
+        case "Delete":
+            $qs = "DELETE
+            FROM    contact_inq
+            WHERE   id = $id";
+
+        pg_Exec($conn,$qs);
+        @unlink(ORIGINAL_PATH."/".$oldimage);
+        @unlink(RESIZED_PATH.$oldimage);
+        @unlink(THUMB_PATH.$oldimage);
+        @unlink(MIDSIZED_PATH.$oldimage);
+
+        $qs = "SELECT   pos,id
+            FROM    contact_inq
+            WHERE   pos > $oldpos
+            ORDER BY pos";
+
+        $res2 = db_exec($conn,$qs);
         $oldcatid_counter = $oldpos;
-        $totalNum = $DB->db_numrows($res);
-        for ($i = 0; $i < $totalNum; $i++) {
-            $row = $DB->db_fetch_array($res, $i, PGSQL_ASSOC);
-            $qs = "update contact_inq set pos = $oldcatid_counter where id = $row[id]";
+        for($i=0;$i<db_numrows($res2);$i++)
+        {
+            $row2 = db_fetch_array($res2,$i,PGSQL_ASSOC);
+            $qs = "UPDATE   contact_inq
+                SET         pos = $oldcatid_counter
+                WHERE   id = $row2[id]";
         }
-        $DB->db_exec($qs); 
+        db_exec($conn,$qs);
+
+        break;
     }
-    break;
-}
 header("Location: contact_inquiry.phtml");
+?>
index 1c13387..1368ac1 100755 (executable)
@@ -2,21 +2,28 @@
 require_once '../../setup.phtml';
 require_once 'contact_setup.inc';
 define("STYLE","main.css");
-if ($_REQUEST['id'] == '') {
-    $_REQUEST['id'] = 1;
-}
+if($id == '')
+$id = 1;
+top("AutoReponse for Newsletter", HELP_BASE."response.phtml?key=edit+section");
+?>
+
+<?
 
-GLM_TOOLBOX::top("AutoReponse for Newsletter", HELP_BASE."response.phtml?key=edit+section");
-GLM_TOOLBOX::html_nav_table($nav,$navWidth);   
+html_nav_table($nav,3);
 
-echo'<iframe src="preview.phtml?id='.$_REQUEST['id'].'"
+echo'
+<iframe src="preview.phtml"
 width="780" height="480"
 align="center">
 </iframe>
 
+
   </td>
 </tr>
 </table>';
 
-GLM_TOOLBOX::footer();
+footer();
 ?>
+
+
+
diff --git a/static/170.phtml b/static/170.phtml
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/static/304.phtml b/static/304.phtml
new file mode 100644 (file)
index 0000000..25c09f1
--- /dev/null
@@ -0,0 +1,10 @@
+<?php
+$cf = new Toolkit_Contacts_ENews(
+    Toolkit_Database::getInstance(),
+    'contact_form',
+    'post',
+    BASE_URL . 'index.php?catid=304'
+);
+$cf->configureForm();
+$cf->useCaptcha(true);
+echo $cf->toHtml();
diff --git a/static/32.phtml b/static/32.phtml
new file mode 100755 (executable)
index 0000000..20864af
--- /dev/null
@@ -0,0 +1,10 @@
+<?php
+$cf = new Toolkit_Contacts_ContactUs(
+    Toolkit_Database::getInstance(),
+    'contact_form',
+    'post',
+    BASE_URL . 'index.php?catid=32'
+);
+$cf->configureForm();
+$cf->useCaptcha(true);
+echo $cf->toHtml();
diff --git a/static/4.phtml b/static/4.phtml
new file mode 100755 (executable)
index 0000000..e69de29
diff --git a/static/405.phtml b/static/405.phtml
new file mode 100755 (executable)
index 0000000..a019efa
--- /dev/null
@@ -0,0 +1,12 @@
+<?php
+if ($catid = filter_var($_REQUEST['catid'], FILTER_VALIDATE_INT)) {
+    $cf = new Toolkit_Contacts_GolfPackageForm(
+        Toolkit_Database::getInstance(),
+        'contact_form',
+        'post',
+        BASE_URL . 'index.php?catid=' . $catid
+    );
+    $cf->configureForm();
+    $cf->useCaptcha(true);
+    echo $cf->toHtml();
+}
diff --git a/static/406.phtml b/static/406.phtml
new file mode 100644 (file)
index 0000000..9572419
--- /dev/null
@@ -0,0 +1,3 @@
+<?php
+$googleMap = new Toolkit_Maps_Map();
+echo $googleMap->toHtml();
\ No newline at end of file
diff --git a/static/414.phtml b/static/414.phtml
new file mode 100644 (file)
index 0000000..c7265ad
--- /dev/null
@@ -0,0 +1,4 @@
+<?php
+$googleMap = new Toolkit_Maps_Map();
+$googleMap->setGoogleMapScript('gMap-activities.js');
+echo $googleMap->toHtml();
\ No newline at end of file
index 2304126..64da82e 100755 (executable)
@@ -9,7 +9,6 @@
 <![endif]-->
 <link rel="shortcut icon" href="/favicon.ico?v=1.1">
 <link rel="stylesheet" href="styles.css"/>
-<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
 <link rel="stylesheet" href="fancybox/jquery.fancybox.css"/>
 {styles:h}
 {topScripts:h}
             </div><!--/#home_video_wrapper-->
             <div id="content">
                 <div id="toolbox">
-                    <div id="category">
-                        <h2>"Experience" Trout Creek Condominiums - Make us your New Tradition</h2>
-                        <p>Beautiful views of northern Michigan countryside, pools, on-site hiking trails and stocked fishing ponds are just a few reasons that you will want to spend your vacation with us.</p>
-                        <p>Our central location is perfect when you are visiting northern Michigan. Trout Creek is just a short 10 minute drive to the beautiful lakeside resort town of Harbor Springs, 20 to the Gaslight Shopping District in Petoskey and just 25 minutes to Mackinaw City/Mackinac Island. Sandy beaches, championship golf courses, boating and kayaking are just moments away.</p>
-                        <p>During the winter months...again...our location is perfect for skiers, snowboarders and snowmobilers. We are just 1/2 mile to the Nubs Nob Ski Resort and although we are next door we offer a FREE Shuttle to and from Nubs on winter weekends. We are also located across from Boyne Highlands Ski Resort. Together they offer the best skiing in the Midwest!</p>
-                    </div>
-                    <div class="listing">
-                        <h2>A Condo Vacation has so much more to offer than a hotel!</h2>
-                        <ul>
-                            <li>We only have a 2-3 night minimum (depending on the time of year).</li>
-                            <li>All Trout Creek Condos offer full kitchens, central air, washer & dryer, Cable TV, Fireplace & Jetted Tubs.</li>
-                            <li>Most condos offer internet and free long distance.</li>
-                            <li>On-site amenities include pools, hot tubs, fishing ponds, tennis courts & more.</li>
-                            <li>The cost of renting a condo is such a great value</li>
-                            <li>A Condo offers a living room/dining room and space to spread out & relax</li>
-                        </ul>
-                    </div>
+                    {toolboxContent:h}
                 </div><!--/#toolbox-->
             </div><!--/#content-->
             <div id="footer">
@@ -118,4 +101,4 @@ $(document).ready(function() {
 </script>
 {bottomScripts:h}
 </body>
-</html>
\ No newline at end of file
+</html>